diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3820a95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.build/ +.buildlog/ +.history +.svn/ +.swiftpm/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins-dependencies +.pub-cache/ +.pub/ +/build/ +/coverage/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..f742fe2 --- /dev/null +++ b/.metadata @@ -0,0 +1,45 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "bd7a4a6b5576630823ca344e3e684c53aa1a0f46" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: android + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: ios + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: linux + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: macos + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: web + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + - platform: windows + create_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + base_revision: bd7a4a6b5576630823ca344e3e684c53aa1a0f46 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/GOOGLE_MAPS_SETUP.md b/GOOGLE_MAPS_SETUP.md new file mode 100644 index 0000000..9c0f271 --- /dev/null +++ b/GOOGLE_MAPS_SETUP.md @@ -0,0 +1,121 @@ +# Configuração do Google Maps API + +## ✅ **JÁ CONFIGURADO - ROTAS REAIS DO GOOGLE MAPS** + +Este projeto agora tem um mapa **100% funcional** com rotas **realistas** do Google Maps! + +### 🗺️ **Funcionalidades Implementadas:** +- ✅ **Localização em tempo real** do usuário +- ✅ **Pesquisa de destinos** (simulada para demonstração) +- ✅ **Rotas REALISTAS** usando Google Directions API +- ✅ **Caminho pelas ruas** (nÃO é linha reta!) +- ✅ **Permissões** configuradas para Android e iOS +- ✅ **Interface intuitiva** com barra de busca +- ✅ **Feedback visual** com SnackBars funcionais + +### �️ **Como as Rotas Funcionam:** + +**🔍 Google Directions API:** +- Faz requisição real para `maps.googleapis.com/maps/api/directions` +- Parâmetros: `origin`, `destination`, `mode=walking` +- Retorna passos detalhados da rota +- Extrai pontos de cada passo (`start_location`, `end_location`) +- Cria polyline com todos os pontos conectados + +**📍 Resultado Visual:** +- ✅ **Linha azul** seguindo ruas reais +- ✅ **Curvas e quinas** como GPS real +- ✅ **Pontos intermediários** das direções +- ✅ **Ajuste automático** de câmera + +### �📱 **Como Usar:** + +1. **Abrir o app** → Solicita permissão de localização +2. **Aguardar GPS** → Mostra sua localização atual (marcador azul) +3. **Pesquisar destino** → Digite "Parque Ibirapuera" ou clique nos chips +4. **Ver rota REAL** → Linha azul segue ruas reais +5. **Controles** → Zoom e botão de localização + +### 🔧 **Configuração Técnica:** + +#### Android: +- ✅ `AndroidManifest.xml` - Permissões de localização +- ✅ API Key configurada +- ✅ `google_maps_flutter` v2.5.3 +- ✅ `geolocator` v10.1.0 +- ✅ `http` v1.1.0 (para Directions API) + +#### iOS: +- ✅ `Info.plist` - Permissões de localização +- ✅ `AppDelegate.swift` - API Key configurada +- ✅ `Podfile` - Dependências iOS + +### 🎯 **Funcionalidades do Mapa:** + +**📍 Localização:** +- Obtém GPS automaticamente +- Marcador azul para posição atual +- Botão "Minha Localização" + +**🔍 Pesquisa:** +- Barra de busca intuitiva +- Sugestões de lugares populares +- Loading indicator durante busca + +**🛣️ Rota REALISTA:** +- **Google Directions API** integrada +- **Caminho pelas ruas** (linha curva) +- **Pontos detalhados** de cada passo +- **Distância e tempo** reais da API + +**📊 Estatísticas:** +- Distância real da API +- Tempo real da API +- Modo: Caminhada + +### 🚀 **Para Testar:** + +```bash +# Limpar e instalar dependências +flutter clean +flutter pub get + +# Rodar o app +flutter run +``` + +### ⚠️ **Importante:** +- **Permissões necessárias** - Aceite quando solicitado +- **GPS ativo** - Necessário para localização precisa +- **Internet** - Para Directions API +- **Modo avião** - Desative para funcionar + +### 📋 **Arquivos Configurados:** +- `lib/screens/google_maps_screen.dart` - Mapa com Directions API ✅ +- `android/app/src/main/AndroidManifest.xml` - Permissões Android ✅ +- `ios/Runner/Info.plist` - Permissões iOS ✅ +- `ios/Runner/AppDelegate.swift` - API Key iOS ✅ +- `pubspec.yaml` - Dependências incluindo http ✅ + +### 🔄 **Como as Rotas São Calculadas:** + +1. **Requisição HTTP** para Google Directions API +2. **Parâmetros:** origin, destination, mode=walking +3. **Resposta JSON** com routes[0].legs[0].steps[] +4. **Extração** de start_location e end_location +5. **Criação** de polyline com pontos conectados +6. **Renderização** no mapa como linha azul + +**Rotas 100% realistas e funcionais!** 🎉✨ + +### � **Exemplo de Console:** +``` +🛣️ Buscando rota real com Google Directions API... +🌐 URL da requisição: https://maps.googleapis.com/maps/api/directions/json?origin=-23.5505,-46.6333&destination=-23.5874,-46.6576&mode=walking&language=pt_BR&key=AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k +📡 Status code: 200 +✅ Rota encontrada com 12 passos +📍 Total de pontos na rota: 14 +📊 Distância: 2.3 km, Tempo: 28 min +``` + +**Mapa com rotas realistas pronto para uso!** 🗺️🛣️ diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,28 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..be3943c --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,14 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts new file mode 100644 index 0000000..18055c9 --- /dev/null +++ b/android/app/build.gradle.kts @@ -0,0 +1,44 @@ +plugins { + id("com.android.application") + id("kotlin-android") + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. + id("dev.flutter.flutter-gradle-plugin") +} + +android { + namespace = "com.example.run_vision_pro" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_17.toString() + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId = "com.example.run_vision_pro" + // You can update the following values to match your application needs. + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.getByName("debug") + } + } +} + +flutter { + source = "../.." +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e1093b9 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/run_vision_pro/MainActivity.kt b/android/app/src/main/kotlin/com/example/run_vision_pro/MainActivity.kt new file mode 100644 index 0000000..26c7c45 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/run_vision_pro/MainActivity.kt @@ -0,0 +1,5 @@ +package com.example.run_vision_pro + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity : FlutterActivity() diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle.kts b/android/build.gradle.kts new file mode 100644 index 0000000..dbee657 --- /dev/null +++ b/android/build.gradle.kts @@ -0,0 +1,24 @@ +allprojects { + repositories { + google() + mavenCentral() + } +} + +val newBuildDir: Directory = + rootProject.layout.buildDirectory + .dir("../../build") + .get() +rootProject.layout.buildDirectory.value(newBuildDir) + +subprojects { + val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) + project.layout.buildDirectory.value(newSubprojectBuildDir) +} +subprojects { + project.evaluationDependsOn(":app") +} + +tasks.register("clean") { + delete(rootProject.layout.buildDirectory) +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..fbee1d8 --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e4ef43f --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip diff --git a/android/settings.gradle.kts b/android/settings.gradle.kts new file mode 100644 index 0000000..ca7fe06 --- /dev/null +++ b/android/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + val flutterSdkPath = + run { + val properties = java.util.Properties() + file("local.properties").inputStream().use { properties.load(it) } + val flutterSdkPath = properties.getProperty("flutter.sdk") + require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } + flutterSdkPath + } + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id("dev.flutter.flutter-plugin-loader") version "1.0.0" + id("com.android.application") version "8.11.1" apply false + id("org.jetbrains.kotlin.android") version "2.2.20" apply false +} + +include(":app") diff --git a/assets/animations/VMS_background.json b/assets/animations/VMS_background.json new file mode 100644 index 0000000..b96c133 --- /dev/null +++ b/assets/animations/VMS_background.json @@ -0,0 +1 @@ +{"nm":"LineWaves_2","ddd":0,"h":810,"w":1417,"meta":{"g":"@lottiefiles/toolkit-js 0.26.1"},"layers":[{"ty":0,"nm":"LineWavesSET_2","sr":1,"st":0,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[708.5,405,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[708.5,405,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1417,"h":810,"refId":"comp_0","ind":1},{"ty":0,"nm":"LineWavesSET_2","sr":1,"st":0,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[708.5,405,0],"ix":1},"s":{"a":0,"k":[102,102,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[720.5,417,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":50,"ix":11}},"ef":[],"w":1417,"h":810,"refId":"comp_0","ind":2}],"v":"5.7.12","fr":30,"op":421,"ip":0,"assets":[{"nm":"LineWavesSET_2","id":"comp_0","layers":[{"ty":0,"nm":"Waves 2","sr":1,"st":0,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[708.5,405,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,100,100],"t":0},{"s":[171,171,100],"t":420}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[714.5,405,0],"t":170,"ti":[19.619,13.83,0],"to":[-14.41,-10.158,0]},{"s":[504.326,261.074,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":170},{"s":[26],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1417,"h":810,"refId":"comp_1","ind":1}]},{"nm":"Waves 2","id":"comp_1","layers":[{"ty":4,"nm":"WAVE 22","sr":1,"st":210,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-100,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-520,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":370},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":380},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":390},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":400},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":410},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":1},{"ty":4,"nm":"WAVE 21","sr":1,"st":200,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-80,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-500,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":370},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":380},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":390},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":400},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":410},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":2},{"ty":4,"nm":"WAVE 20","sr":1,"st":190,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-60,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-480,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":370},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":380},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":390},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":400},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":3},{"ty":4,"nm":"WAVE 19","sr":1,"st":180,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-40,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-460,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":370},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":380},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":390},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":4},{"ty":4,"nm":"WAVE 18","sr":1,"st":170,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-20,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-440,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":370},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":380},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":5},{"ty":4,"nm":"WAVE 17","sr":1,"st":160,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,0,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-420,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":360},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":370},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":6},{"ty":4,"nm":"WAVE 16","sr":1,"st":150,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,20,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-400,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":350},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":360},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":7},{"ty":4,"nm":"WAVE 15","sr":1,"st":140,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,40,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-380,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":340},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":350},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":8},{"ty":4,"nm":"WAVE 14","sr":1,"st":130,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,60,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-360,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":330},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":340},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":9},{"ty":4,"nm":"WAVE 13","sr":1,"st":120,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,80,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-340,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":320},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":330},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":10},{"ty":4,"nm":"WAVE 12","sr":1,"st":110,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,100,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-320,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":310},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":320},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":11},{"ty":4,"nm":"WAVE 11","sr":1,"st":100,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,120,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-300,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":300},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":310},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":12},{"ty":4,"nm":"WAVE 10","sr":1,"st":90,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,140,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-280,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":290},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":300},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":13},{"ty":4,"nm":"WAVE 9","sr":1,"st":80,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,160,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-260,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":280},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":290},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":14},{"ty":4,"nm":"WAVE 8","sr":1,"st":70,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,180,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-240,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":270},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":280},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":15},{"ty":4,"nm":"WAVE 7","sr":1,"st":60,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,200,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-220,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":260},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":270},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":16},{"ty":4,"nm":"WAVE 6","sr":1,"st":50,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,220,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-200,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":250},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":260},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":17},{"ty":4,"nm":"WAVE 5","sr":1,"st":40,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,240,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-180,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":240},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":250},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":18},{"ty":4,"nm":"WAVE 4","sr":1,"st":30,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,260,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-160,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":230},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":240},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":19},{"ty":4,"nm":"WAVE 3","sr":1,"st":20,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,262,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-140,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":20},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":220},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":230},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":20},{"ty":4,"nm":"WAVE 2","sr":1,"st":10,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,280,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-120,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":10},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":20},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":210},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":220},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":21},{"ty":4,"nm":"WAVE","sr":1,"st":0,"op":421,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,300,0],"t":0,"ti":[0,-7.366,0],"to":[0,7.967,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4.5,-8,0],"t":225,"ti":[0,6.255,0],"to":[0,9.079,0]},{"s":[4.5,-100,0],"t":420}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-5],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":225},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[5],"t":331},{"s":[3],"t":420}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.416,53.386],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[72.85,-48.363],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[356.65,748.363],[589.149,752.219],[689.624,723.339],[881.267,439.962],[952.32,364.435],[1437.84,288.43]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-82.531,50.055],[-76.337,-3.68],[-35.182,16.166],[-75.724,111.05],[-25.312,23.125],[-123.84,-101.755]],"o":[[-87.757,-468.679],[61.23,-37.026],[38.644,2.461],[115.303,-52.882],[19.236,-28.381],[128.24,-117.926],[0,0]],"v":[[339.368,1420.61],[388.65,738.363],[591.149,738.219],[703.624,717.339],[897.267,445.962],[964.32,368.435],[1447.84,270.43]]}],"t":10},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-80.949,53.595],[-74.656,-1.578],[-35.147,15.752],[-77.107,110.151],[-24.895,23.43],[-122.61,-94.91]],"o":[[-86.019,-462.157],[59.508,-39.392],[38.498,1.289],[114.371,-51.282],[19.549,-28.046],[127.411,-119.989],[0,0]],"v":[[360.283,1426.83],[407.602,745.131],[605.796,737.026],[717.724,715.045],[916.964,452.12],[983.809,374.699],[1453.83,258.608]]}],"t":20},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-79.397,57.273],[-73.059,0.559],[-35.096,15.318],[-78.614,109.325],[-24.517,23.74],[-121.37,-88.064]],"o":[[-84.269,-455.538],[57.866,-41.753],[38.296,0.146],[113.523,-49.755],[19.825,-27.776],[126.36,-122.269],[0,0]],"v":[[381.14,1433.03],[426.62,751.804],[620.549,735.74],[731.846,712.732],[936.681,458.259],[1003.33,380.825],[1459.83,246.666]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-77.909,61.007],[-71.383,2.742],[-35.086,14.927],[-80.146,108.557],[-24.062,23.997],[-120.16,-81.199]],"o":[[-82.588,-449.077],[56.178,-44.036],[38.119,-1.001],[112.675,-48.229],[20.102,-27.403],[125.35,-124.566],[0,0]],"v":[[402.089,1439.33],[445.678,758.48],[635.325,734.396],[746.117,710.29],[956.654,464.176],[1023,386.962],[1466.05,234.719]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-78.142,62.637],[-69.814,4.715],[-35.077,14.515],[-81.547,107.637],[-23.66,24.265],[-118.95,-74.375]],"o":[[-80.806,-442.64],[55.726,-44.769],[37.902,-2.172],[111.829,-46.703],[20.348,-27.103],[124.25,-126.949],[0,0]],"v":[[422.916,1445.67],[464.718,765.134],[650.078,733.111],[760.323,707.903],[976.39,470.337],[1042.47,393.204],[1472.04,222.897]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-74.652,68.756],[-68.131,6.778],[-35.068,14.105],[-82.97,106.737],[-23.25,24.526],[-117.76,-67.592]],"o":[[-79.176,-436.03],[52.961,-48.291],[37.654,-3.327],[110.98,-45.177],[20.619,-26.779],[123.22,-129.247],[0,0]],"v":[[443.935,1451.84],[483.643,771.7],[664.871,731.828],[774.549,705.538],[996.211,476.423],[1062.06,399.415],[1478.13,211.021]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-73.317,72.359],[-66.535,8.654],[-35.049,13.721],[-84.36,105.918],[-24.57,26.464],[-116.5,-60.705]],"o":[[-77.521,-429.47],[51.155,-50.623],[37.374,-4.481],[110.13,-43.611],[19.65,-24.619],[122.16,-131.627],[0,0]],"v":[[464.847,1458.1],[502.795,778.483],[679.626,730.502],[788.7,703.088],[1015.96,482.425],[1081.56,405.52],[1484.19,199.104]]}],"t":70},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-71.606,76.349],[-64.924,10.591],[-35.075,13.299],[-85.855,105.012],[-24.04,26.641],[-115.25,-53.837]],"o":[[-75.742,-422.98],[49.538,-52.781],[37.086,-5.644],[109.283,-42.085],[19.99,-24.455],[120.93,-133.819],[0,0]],"v":[[485.76,1464.36],[521.776,785.113],[694.406,729.118],[802.952,700.624],[1035.82,488.434],[1101.2,411.614],[1490.25,187.186]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-70.047,80.208],[-63.117,12.321],[-35.096,12.866],[-87.214,104.236],[-23.53,26.797],[-114.03,-47.013]],"o":[[-74.026,-416.45],[47.919,-54.899],[36.76,-6.79],[108.457,-40.578],[20.2,-24.199],[119.92,-136.396],[0,0]],"v":[[506.675,1470.59],[540.872,791.831],[709.135,727.891],[817.111,698.354],[1055.53,494.512],[1120.64,417.773],[1496.23,175.182]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-68.33,84.119],[-61.556,14.115],[-35.121,12.445],[-88.769,103.266],[-23.02,26.913],[-112.84,-40.13]],"o":[[-72.329,-409.93],[46.319,-56.995],[36.402,-7.962],[107.588,-39.033],[20.57,-23.993],[118.77,-138.843],[0,0]],"v":[[527.587,1476.85],[559.847,798.541],[723.885,726.645],[831.275,696.005],[1075.38,500.721],[1140.26,424.107],[1502.38,163.411]]}],"t":100},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-66.678,88.085],[-59.909,15.833],[-37.315,13.124],[-90.19,102.405],[-22.57,27.084],[-111.61,-33.324]],"o":[[-70.592,-403.41],[44.758,-59.089],[34.43,-9.112],[106.722,-37.528],[20.88,-23.771],[117.61,-141.291],[0,0]],"v":[[548.499,1483.11],[578.929,805.158],[738.68,725.323],[845.524,693.581],[1095.22,506.749],[1159.9,430.202],[1508.52,151.459]]}],"t":110},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-65.093,92.146],[-58.279,17.49],[-37.018,12.603],[-91.66,101.541],[-21.99,27.185],[-110.39,-26.499]],"o":[[-68.8,-396.83],[43.178,-61.205],[34.393,-10.318],[105.93,-35.938],[21.2,-23.528],[116.4,-143.761],[0,0]],"v":[[569.412,1489.37],[597.967,811.852],[753.455,724.018],[859.732,691.194],[1115.03,512.814],[1179.41,436.406],[1514.55,139.599]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-63.253,96.026],[-56.684,19.106],[-36.654,11.986],[-93.21,100.752],[-21.53,27.297],[-109.18,-19.675]],"o":[[-67.116,-390.41],[41.655,-63.256],[34.34,-11.585],[105.049,-34.494],[21.51,-23.346],[115.16,-146.295],[0,0]],"v":[[590.281,1495.67],[617.003,818.546],[768.247,722.735],[873.871,688.903],[1134.87,518.922],[1199.01,442.618],[1520.63,127.702]]}],"t":130},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-61.53,100.117],[-55.067,20.661],[-36.422,11.521],[-94.57,99.795],[-19.97,26.502],[-107.84,-12.842]],"o":[[-65.442,-383.84],[40.134,-65.348],[34.268,-12.874],[104.158,-32.931],[22.57,-24.321],[113.99,-148.682],[0,0]],"v":[[611.239,1501.86],[636.044,825.2],[782.982,721.428],[888.146,686.42],[1154.65,524.965],[1218.51,448.681],[1526.69,115.784]]}],"t":140},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-59.605,103.921],[-53.593,22.268],[-36.123,10.96],[-95.95,98.898],[-19.57,26.713],[-106.64,-5.857]],"o":[[-63.706,-377.32],[38.633,-67.418],[34.178,-14.184],[103.327,-31.423],[22.83,-23.979],[112.63,-151.405],[0,0]],"v":[[632.152,1508.12],[654.998,831.929],[797.778,720.105],[902.353,684.033],[1174.41,531.067],[1238.08,454.951],[1532.71,103.783]]}],"t":150},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-57.7,108.004],[-51.967,23.705],[-35.825,10.438],[-97.46,98.07],[-19.14,26.935],[-105.48,0.903]],"o":[[-62.009,-370.8],[37.125,-69.408],[34.069,-15.515],[102.462,-29.879],[23.06,-23.664],[111.36,-153.821],[0,0]],"v":[[653.065,1514.38],[674.102,838.528],[812.512,718.798],[916.538,681.666],[1194.26,537.096],[1257.67,461.083],[1538.86,91.972]]}],"t":160},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-55.955,112.078],[-50.461,25.133],[-35.547,9.897],[-98.93,97.206],[-18.74,27.145],[-104.27,7.727]],"o":[[-60.219,-364.18],[35.686,-71.533],[34.008,-16.964],[101.575,-28.395],[23.28,-23.36],[110.02,-156.38],[0,0]],"v":[[673.998,1520.63],[693.139,845.221],[827.265,717.512],[930.745,679.278],[1214.08,543.182],[1277.25,467.272],[1544.94,80.075]]}],"t":170},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-54.122,116.036],[-49.052,26.535],[-35.208,9.338],[-100.31,96.389],[-18.33,27.351],[-102.89,14.523]],"o":[[-58.682,-357.68],[34.243,-73.579],[33.855,-18.218],[100.766,-26.826],[23.51,-23.054],[108.67,-158.961],[0,0]],"v":[[694.911,1526.89],[712.253,851.961],[842.15,716.336],[945.064,677.02],[1233.95,549.332],[1296.88,473.526],[1551.09,68.264]]}],"t":180},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-52.116,120.106],[-47.607,27.979],[-34.97,8.793],[-101.81,95.482],[-17.9,27.563],[-101.82,21.397]],"o":[[-56.86,-351.23],[32.823,-75.684],[33.597,-19.721],[99.904,-25.281],[23.73,-22.737],[107.26,-161.587],[0,0]],"v":[[715.823,1533.15],[731.216,858.571],[856.813,714.904],[959.196,674.548],[1253.72,555.355],[1316.39,479.652],[1557.09,56.283]]}],"t":190},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-50.008,124.165],[-46.218,29.359],[-34.615,8.296],[-103.24,94.621],[-17.52,27.762],[-100.61,28.302]],"o":[[-55.144,-344.69],[31.42,-77.726],[33.358,-21.202],[99.089,-23.753],[23.95,-22.446],[105.57,-164.29],[0,0]],"v":[[736.738,1539.37],[750.17,865.298],[871.481,713.692],[973.241,672.19],[1273.4,561.451],[1335.85,485.832],[1563.11,44.401]]}],"t":200},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":210},{"s":[{"c":false,"i":[[0,0],[-28.398,129.72],[-58.49,40.045],[-68.113,9.47],[-70.66,63.255],[-33.735,110.065],[-58.095,20.523]],"o":[[-43.371,-274.412],[28.398,-129.72],[63.851,-43.716],[68.113,-9.47],[82.885,-74.214],[33.735,-110.065],[0,0]],"v":[[757.628,1545.65],[745.588,953.206],[886.339,712.314],[1084.712,654.543],[1293.3,567.464],[1449.852,259.697],[1569.22,32.468]]}],"t":420}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.498,0.498,0.498,1],"ix":3}}],"ind":22}]}]} \ No newline at end of file diff --git a/assets/animations/Waves.json b/assets/animations/Waves.json new file mode 100644 index 0000000..8ef0b05 --- /dev/null +++ b/assets/animations/Waves.json @@ -0,0 +1 @@ +{"assets":[{"id":"o4tYAKjHOXMrHzLTfYdTM","layers":[{"ddd":0,"ind":2,"ty":4,"ln":"layer_2","sr":1,"ks":{"a":{"a":0,"k":[1292.28,241.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.53,12657.35]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface1","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1,144.4],[16,151.1],[30.7,158.1],[45.2,165.3],[59.4,172.9],[73.1,180.8],[86.4,189.2],[99,198.1],[110.7,207.5],[121.5,217.6],[131.2,228.3],[139.6,239.5],[146.6,251.3],[151.9,263.6],[155.7,276.3],[157.8,289.4],[158.3,302.6],[157.2,315.9],[154.5,329.3],[150.4,342.6],[145.1,356],[138.6,369.2],[131.5,382.4],[124.3,395.6],[117.7,409],[112.3,422.5],[108.1,436.1],[105.2,449.7],[103.8,463.1],[104.1,476.4],[105.9,489.4],[109.4,501.9],[114.4,513.8],[121.1,525],[129.3,535.5],[138.9,545.2],[149.9,554],[162.1,561.8],[175.4,568.7],[189.7,574.7],[204.9,579.7],[221,583.6],[237.6,586.6],[254.9,588.8],[272.5,590],[290.5,590.4],[308.8,590],[327.3,589],[345.9,587.3],[364.7,585.1],[383.5,582.4],[402.4,579.3],[421.3,575.8],[440.2,572],[459.1,568],[478,563.7],[515.8,554.7],[534.7,549.9],[553.5,545],[572.3,539.7],[591,534.1],[609.7,528.3],[628.3,522.2],[646.9,516],[665.5,509.7],[684,503.4],[702.5,497.1],[721,490.6],[739.4,484.2],[757.9,477.6],[776.3,471],[794.7,464.3],[813.1,457.6],[831.5,450.8],[849.8,444],[868.1,437.2],[886.4,430.5],[904.8,423.8],[923.1,417.1],[941.5,410.4],[959.8,403.6],[978,396.8],[996.3,390],[1014.6,383.1],[1032.8,376.3],[1051.1,369.5],[1069.3,362.6],[1087.5,355.7],[1105.8,348.8],[1124,341.9],[1142.2,334.9],[1160.4,328],[1178.6,321.2],[1196.9,314.5],[1215.2,307.7],[1233.4,300.9],[1251.6,294],[1269.6,287],[1287.6,279.8],[1305.4,272.6],[1323.2,265.2],[1340.8,257.7],[1358.2,249.9],[1375.4,241.7],[1392.3,233.2],[1408.9,224.4],[1425.3,215.3],[1441.4,206],[1457.4,196.5],[1473,186.8],[1488.5,176.8],[1503.7,166.7],[1518.7,156.3],[1533.5,145.8],[1548.2,135.1],[1562.7,124.5],[1591.5,103.3],[1605.8,92.8],[1620.1,82.3],[1634.2,71.7],[1648.4,61.2],[1662.7,51],[1677.1,41.2],[1691.7,31.9],[1706.6,23.4],[1721.8,15.9],[1737.3,9.7],[1753.4,5],[1769.7,2],[1786.3,0.8],[1802.8,1.5],[1819.3,4.5],[1835.4,9.4],[1851,16.5],[1865.8,25.5],[1879.6,36.4],[1892.3,49],[1903.7,63.2],[1913.5,78.7],[1921.7,95.2],[1928.3,112.7],[1933.3,130.7],[1936.8,149.2],[1938.8,167.8],[1939.5,186.6],[1939.1,205.4],[1937.9,224.1],[1935.9,242.8],[1933.6,261.4],[1931.3,280],[1929.2,298.7],[1927.8,317.5],[1927,336.3],[1926.9,355.2],[1927.6,374],[1928.9,392.8],[1931.1,411.5],[1934.2,430],[1938.3,448.3],[1943.5,466.3],[1949.9,483.9],[1957.5,501],[1966.3,517.5],[1976.4,533.2],[1987.7,548],[2000.2,561.9],[2013.8,574.8],[2028.3,586.5],[2043.9,597],[2060.1,606.3],[2077.1,614.4],[2094.6,621.2],[2112.5,626.8],[2130.7,631.4],[2149.2,635],[2167.8,637.8],[2186.5,639.9],[2205.3,641.2],[2224.1,642],[2242.9,642.3],[2261.8,642.2],[2280.6,641.7],[2299.5,640.7],[2318.3,639.5],[2337.2,638],[2356,636.2],[2374.9,634.1],[2393.7,631.7],[2412.4,629.1],[2431.2,626.2],[2449.9,623],[2468.5,619.5],[2487,615.7],[2505.6,611.7],[2524,607.3],[2542.4,602.7],[2560.8,597.9],[2579,592.7],[2597.2,587.1],[2615.2,581.1],[2633.1,574.6],[2650.8,567.7],[2668.2,560.2],[2685.4,552.2],[2702.3,543.6],[2718.9,534.4],[2735.1,524.7],[2750.9,514.6],[2766.6,504],[2782,493.2],[2797.5,482.4],[2813,471.6],[2828.7,461],[2844.5,450.7],[2860.7,440.8],[2877.3,431.4],[2894.2,422.6],[2911.5,414.4],[2929.2,407],[2947.2,400.4],[2965.6,394.6],[2984.2,389.5],[3002.9,385.1],[3021.7,381.4],[3040.5,378.3],[3059.4,375.8],[3078.5,374.2],[3097.6,373.2],[3116.6,373.2],[3135.4,374.2],[3153.7,376.5],[3171.5,380.1],[3188.7,384.5],[3205.4,389.1],[3221.7,393.4],[3237.5,396.8],[3253.1,399.6],[3268.4,402],[3283.5,404.4],[3298.4,407],[3313.2,409.9],[3327.8,412.8],[3342.1,415.9],[3356.2,419.1],[3370,422.4],[3383.6,425.8],[3396.8,429.2],[3409.7,432.7],[3422.2,436.3],[3434.3,440],[3445.8,443.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":3,"ty":4,"ln":"layer_3","sr":1,"ks":{"a":{"a":0,"k":[1293.03,242.255]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.53,12657.68]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface6","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.4,139.3],[15.5,145.9],[30.3,152.8],[44.8,160],[59.1,167.6],[72.9,175.5],[86.3,183.7],[98.9,192.5],[110.8,201.9],[121.7,211.9],[131.5,222.6],[140,233.8],[146.9,245.6],[152.3,257.9],[156,270.7],[158.1,283.7],[158.4,297],[157.2,310.3],[154.3,323.6],[150.1,337],[144.6,350.3],[137.9,363.5],[130.7,376.7],[123.4,389.9],[116.7,403.3],[111.1,416.8],[106.7,430.4],[103.7,444],[102.2,457.5],[102.4,470.8],[104.2,483.8],[107.6,496.3],[112.6,508.3],[119.3,519.5],[127.5,530],[137.1,539.6],[148.1,548.4],[160.3,556.3],[173.6,563.2],[187.9,569.2],[203.1,574.2],[219.1,578.2],[235.8,581.3],[253,583.4],[270.6,584.6],[288.6,585],[306.9,584.7],[325.4,583.6],[344.1,581.9],[362.9,579.6],[381.8,576.9],[400.7,573.6],[419.6,570],[438.5,566.1],[457.4,562],[476.3,557.6],[495.2,553.2],[514.2,548.8],[533.1,544.2],[551.9,539.4],[570.8,534.2],[589.5,528.6],[608.1,522.6],[626.7,516.3],[645.3,510],[682.3,497.2],[700.8,490.7],[719.3,484.3],[756.3,471.3],[774.7,464.7],[793.1,458],[811.4,451.1],[829.8,444.1],[848,437.1],[866.4,430.2],[884.7,423.5],[903,416.8],[921.4,410.2],[939.7,403.5],[958,396.7],[976.3,389.8],[994.5,382.9],[1012.8,376],[1031,369.2],[1049.3,362.4],[1067.6,355.5],[1085.8,348.6],[1104,341.6],[1122.1,334.5],[1140.3,327.4],[1158.5,320.4],[1176.9,313.7],[1195.2,307],[1213.5,300.3],[1231.9,293.7],[1250.1,287],[1268.3,280.2],[1286.5,273.3],[1304.5,266.4],[1322.5,259.3],[1340.5,252.2],[1358.2,244.8],[1375.8,237.2],[1393.1,229.2],[1410.2,220.9],[1427,212.4],[1443.7,203.6],[1460.1,194.7],[1476.3,185.6],[1492.2,176.3],[1507.9,166.8],[1523.4,157],[1538.6,147.1],[1553.6,137],[1568.4,126.7],[1583.1,116.4],[1597.6,106],[1611.9,95.5],[1626.2,84.8],[1640.4,74.2],[1654.5,63.5],[1668.7,53.1],[1683,43],[1697.6,33.5],[1712.3,24.7],[1727.5,17],[1743,10.5],[1759,5.6],[1775.3,2.4],[1791.9,1],[1808.5,1.6],[1825,4.5],[1841.1,9.4],[1856.7,16.4],[1871.5,25.4],[1885.3,36.4],[1898,49.2],[1909.2,63.4],[1919,79],[1927,95.7],[1933.5,113.3],[1938.3,131.4],[1941.6,150],[1943.3,168.7],[1943.8,187.4],[1943.3,206.2],[1941.9,225],[1939.9,243.7],[1937.6,262.3],[1935.4,281],[1933.3,299.7],[1931.9,318.5],[1931.1,337.3],[1930.8,356.2],[1931.3,375.1],[1932.4,393.9],[1934.3,412.6],[1937.2,431.2],[1941,449.6],[1945.9,467.7],[1952,485.5],[1959.3,502.8],[1967.9,519.4],[1977.8,535.3],[1988.9,550.3],[2001.2,564.4],[2014.6,577.5],[2029.1,589.3],[2044.5,600],[2060.7,609.4],[2077.7,617.6],[2095.2,624.4],[2113.1,630.1],[2131.4,634.6],[2149.9,638.2],[2168.5,640.9],[2187.2,642.9],[2206,644.2],[2224.9,644.9],[2243.7,645.2],[2262.6,645],[2281.5,644.5],[2300.3,643.7],[2319.2,642.6],[2338.1,641.2],[2357,639.5],[2375.9,637.6],[2394.7,635.4],[2413.6,632.9],[2432.4,630.1],[2451.1,627],[2469.7,623.4],[2488.3,619.6],[2506.8,615.5],[2525.3,611.2],[2543.8,606.7],[2562.2,602],[2580.5,597],[2598.8,591.6],[2616.8,585.7],[2634.8,579.3],[2652.5,572.4],[2669.9,564.9],[2687.1,556.7],[2703.9,548],[2720.4,538.7],[2736.5,528.8],[2752.2,518.4],[2767.7,507.7],[2783.1,496.8],[2798.5,485.9],[2814.2,475.2],[2829.9,464.7],[2846,454.6],[2862.3,444.9],[2879,435.7],[2896.1,427],[2913.5,419.1],[2931.3,411.9],[2949.5,405.7],[2968.1,400.2],[2986.8,395.6],[3005.6,391.6],[3024.5,388.3],[3043.4,385.5],[3062.4,383.4],[3081.5,381.7],[3100.6,380.6],[3119.7,380.1],[3138.6,380.3],[3157.3,381.5],[3175.6,383.8],[3193.4,386.6],[3210.7,389.7],[3227.5,392.4],[3243.6,394.4],[3259.1,395.9],[3274.3,397.3],[3289.2,398.8],[3303.9,400.7],[3318.4,403.1],[3332.7,405.7],[3346.7,408.5],[3360.5,411.5],[3374,414.5],[3387.1,417.7],[3400,421],[3412.5,424.5],[3424.5,428],[3436.1,431.7],[3447.1,435.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":4,"ty":4,"ln":"layer_4","sr":1,"ks":{"a":{"a":0,"k":[1297.155,240.005]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12657.01]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface11","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3458.3,452],[3446.2,448.3],[3433.7,444.5],[3420.7,440.9],[3407.4,437.3],[3393.8,433.7],[3379.9,430.1],[3365.7,426.6],[3351.3,423.1],[3336.7,419.7],[3321.9,416.4],[3306.9,413],[3291.8,409.7],[3276.5,406.4],[3261.1,402.9],[3245.6,398.8],[3229.9,394],[3214.1,388.3],[3198,382.1],[3181.4,376.3],[3164.2,371.5],[3146.2,368.2],[3127.6,366.5],[3108.6,366],[3089.5,366.7],[3070.5,368.4],[3051.6,371.1],[3032.8,374.5],[3014.1,378.7],[2995.5,383.5],[2977.1,389],[2958.9,395.2],[2941,402.1],[2923.5,409.8],[2906.3,418.1],[2889.5,427.1],[2873.1,436.7],[2857.1,446.8],[2841.4,457.3],[2825.8,468],[2810.3,478.8],[2794.9,489.6],[2779.3,500.3],[2763.6,510.7],[2747.6,520.7],[2731.3,530.2],[2714.7,539.2],[2697.8,547.7],[2680.6,555.6],[2663.1,563.1],[2645.5,570],[2627.6,576.5],[2609.7,582.6],[2591.6,588.4],[2573.4,593.7],[2555.1,598.7],[2536.7,603.4],[2518.3,607.8],[2499.8,611.8],[2481.3,615.6],[2462.7,619.1],[2444,622.4],[2425.3,625.4],[2406.6,628.1],[2387.8,630.6],[2369.1,632.9],[2350.3,634.8],[2331.4,636.5],[2312.6,637.8],[2293.8,638.8],[2274.9,639.3],[2256.1,639.4],[2237.3,639.1],[2218.5,638.2],[2199.7,636.8],[2181.1,634.7],[2162.5,631.8],[2144.1,628.1],[2125.9,623.5],[2108,617.9],[2090.5,611.1],[2073.5,603.2],[2057.2,594],[2041.6,583.6],[2026.9,572.1],[2013.2,559.4],[2000.6,545.7],[1989,531.1],[1978.7,515.5],[1969.6,499.3],[1961.7,482.3],[1955.1,464.8],[1949.5,446.9],[1945.2,428.7],[1941.8,410.3],[1939.4,391.7],[1937.8,372.9],[1937.1,354.1],[1937,335.3],[1937.7,316.5],[1939.1,297.7],[1941.2,279.1],[1943.5,260.5],[1945.9,241.9],[1947.8,223.2],[1949,204.5],[1949.2,185.7],[1948.3,167],[1946.1,148.4],[1942.3,130],[1937.1,112.1],[1930.4,94.7],[1922,78.3],[1912.1,62.9],[1900.7,48.9],[1888,36.3],[1874.1,25.5],[1859.3,16.5],[1843.7,9.5],[1827.6,4.4],[1811.2,1.4],[1794.6,0.5],[1778.1,1.5],[1761.8,4.4],[1745.7,8.8],[1730,14.8],[1714.8,22],[1699.8,30.3],[1685.1,39.3],[1670.7,48.9],[1656.4,58.9],[1642.2,69.2],[1627.9,79.7],[1613.7,90.1],[1599.5,100.7],[1585.2,111.3],[1570.9,122.2],[1556.7,133.2],[1542.4,144.3],[1528,155.5],[1513.4,166.5],[1498.7,177.2],[1483.7,187.8],[1468.5,198.1],[1453,208.1],[1437.4,218],[1421.5,227.7],[1405.3,237],[1388.8,246],[1372.1,254.6],[1355,262.9],[1337.7,270.9],[1320.2,278.7],[1302.6,286.2],[1284.8,293.6],[1266.9,300.9],[1248.9,308],[1230.8,315],[1212.6,321.9],[1194.4,328.7],[1176.2,335.6],[1158,342.4],[1139.8,349.2],[1121.5,356],[1103.3,362.9],[1085.1,369.7],[1066.8,376.6],[1048.6,383.4],[1030.4,390.3],[1012.1,397],[993.8,403.8],[975.5,410.6],[957.2,417.3],[938.9,424],[920.6,430.7],[902.2,437.4],[883.9,444.1],[865.5,450.8],[847.1,457.5],[828.8,464.1],[810.4,470.7],[792,477.4],[773.5,484],[755.1,490.5],[736.6,497],[718.2,503.4],[699.6,509.7],[681.1,515.9],[643.9,528.1],[625.3,534],[606.6,539.7],[587.9,545.3],[569.1,550.6],[550.3,555.7],[531.4,560.5],[512.6,565.2],[493.7,569.6],[474.8,573.9],[455.9,577.9],[437,581.6],[418.1,585],[399.3,588],[380.4,590.6],[361.7,592.7],[343.1,594.3],[324.6,595.4],[306.4,595.7],[288.4,595.3],[270.7,594.1],[253.5,592],[236.8,589],[220.8,585.1],[205.5,580.2],[191.2,574.3],[177.9,567.4],[165.7,559.5],[154.7,550.7],[145.1,541.1],[136.9,530.6],[130.2,519.3],[125.1,507.4],[121.6,494.9],[119.7,482],[119.4,468.7],[120.7,455.3],[123.4,441.8],[127.5,428.2],[132.8,414.7],[139.2,401.3],[146.2,388.1],[153.2,374.9],[159.6,361.6],[164.8,348.3],[168.7,334.9],[171.2,321.5],[172.2,308.2],[171.6,295],[169.4,282],[165.6,269.3],[160.2,257],[153.2,245.2],[144.9,234],[135.3,223.2],[124.6,213.1],[113,203.6],[100.5,194.7],[87.4,186.2],[73.7,178.2],[59.6,170.6],[45.2,163.3],[30.5,156.3],[15.6,149.6],[0.5,143]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":5,"ty":4,"ln":"layer_5","sr":1,"ks":{"a":{"a":0,"k":[1296.03,239.255]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12656.33]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface16","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3455.3,461.2],[3442.7,457.4],[3429.7,453.6],[3416.4,449.9],[3402.7,446.1],[3388.7,442.4],[3374.5,438.5],[3360,434.7],[3345.3,430.9],[3330.4,427.2],[3315.4,423.3],[3300.2,419.4],[3284.9,415.4],[3269.6,411.2],[3254.2,406.5],[3238.8,401.2],[3223.4,395.2],[3208.1,388],[3192.5,380.5],[3176.5,373.5],[3159.7,367.5],[3142,363.4],[3123.5,360.9],[3104.7,360],[3085.6,360.5],[3066.6,362.2],[3047.7,365.1],[3029,368.8],[3010.4,373.4],[2991.9,378.6],[2973.6,384.5],[2955.6,391],[2937.9,398.2],[2920.5,406.1],[2903.4,414.7],[2886.8,423.8],[2870.5,433.6],[2854.6,443.8],[2839,454.4],[2823.5,465.3],[2808.1,476.1],[2792.6,486.9],[2777,497.4],[2761.2,507.7],[2745.2,517.5],[2728.7,526.9],[2712.1,535.8],[2695.1,544.2],[2677.9,552.1],[2660.5,559.6],[2642.9,566.5],[2625.1,573.1],[2607.2,579.3],[2589.2,585.1],[2571,590.6],[2552.8,595.7],[2534.5,600.5],[2516,604.9],[2497.6,609],[2479,612.7],[2460.5,616.3],[2441.9,619.6],[2423.2,622.7],[2404.6,625.6],[2385.8,628.2],[2367.1,630.6],[2348.3,632.7],[2329.5,634.4],[2310.7,635.8],[2291.9,636.8],[2273.1,637.4],[2254.3,637.5],[2235.5,637.1],[2216.7,636.2],[2198,634.7],[2179.3,632.6],[2160.8,629.7],[2142.4,625.9],[2124.2,621.3],[2106.3,615.7],[2088.9,608.9],[2071.9,601],[2055.5,592],[2039.9,581.8],[2025.1,570.4],[2011.2,557.9],[1998.4,544.4],[1986.7,530],[1976.1,514.6],[1966.7,498.5],[1958.6,481.7],[1951.7,464.4],[1945.9,446.6],[1941.2,428.5],[1937.6,410.1],[1934.9,391.6],[1933.2,372.9],[1932.2,354.1],[1932.1,335.3],[1932.6,316.5],[1934,297.8],[1936.1,279.2],[1938.5,260.6],[1940.8,242],[1942.7,223.3],[1943.8,204.6],[1943.8,185.9],[1942.7,167.2],[1940.3,148.6],[1936.4,130.3],[1931,112.4],[1924.1,95.2],[1915.6,78.9],[1905.5,63.7],[1894,49.7],[1881.3,37.3],[1867.4,26.5],[1852.6,17.5],[1837.1,10.5],[1821,5.4],[1804.6,2.3],[1788,1.3],[1771.5,2.1],[1755.1,4.8],[1739,9],[1723.3,14.7],[1708,21.7],[1693,29.7],[1678.2,38.5],[1663.7,47.8],[1649.3,57.6],[1635.1,67.7],[1620.8,78.1],[1606.6,88.5],[1592.4,99],[1578.2,109.8],[1564.1,120.8],[1550.1,132.2],[1536.1,143.8],[1522.1,155.4],[1508,166.9],[1493.6,178.3],[1479.1,189.3],[1464.3,200.2],[1449.4,210.9],[1434.2,221.3],[1418.7,231.5],[1403,241.4],[1386.9,250.9],[1370.6,260],[1353.9,268.8],[1336.9,277.2],[1319.7,285.4],[1302.3,293.3],[1284.7,301],[1267.1,308.5],[1249.2,315.9],[1231.3,323.1],[1213.2,330.1],[1195.2,337.1],[1177,344],[1158.8,350.8],[1140.5,357.5],[1122.3,364.3],[1104,371],[1085.8,377.9],[1067.6,384.7],[1049.4,391.6],[1031.1,398.4],[1012.9,405.1],[994.6,411.8],[976.3,418.5],[957.9,425.2],[939.6,431.9],[921.3,438.7],[903,445.4],[884.7,452.1],[866.3,458.6],[847.8,465.2],[811,478.2],[792.6,484.8],[774.2,491.4],[755.8,497.9],[737.3,504.4],[718.8,510.7],[700.3,517],[681.7,523.1],[663.1,529.1],[644.5,535],[625.9,540.8],[607.2,546.5],[588.5,552],[569.7,557.3],[550.9,562.4],[532.1,567.4],[513.2,572.1],[494.4,576.6],[475.5,580.8],[456.6,584.7],[437.7,588.3],[418.9,591.6],[400,594.6],[381.2,597.1],[362.5,599.2],[343.9,600.7],[325.4,601.7],[307.2,602.1],[289.2,601.7],[271.5,600.5],[254.3,598.4],[237.6,595.5],[221.6,591.6],[206.4,586.6],[192,580.8],[178.7,573.9],[166.4,566.1],[155.5,557.3],[145.8,547.6],[137.6,537.1],[130.9,525.9],[125.9,514],[122.4,501.5],[120.4,488.6],[120,475.4],[121.1,461.9],[123.7,448.4],[127.7,434.9],[132.8,421.4],[139.1,408],[146,394.7],[152.9,381.5],[159.1,368.2],[164.2,354.9],[167.9,341.5],[170.3,328.1],[171.1,314.8],[170.4,301.6],[168.1,288.6],[164.2,276],[158.8,263.7],[151.9,251.9],[143.6,240.6],[134.1,229.9],[123.5,219.7],[112,210.1],[99.6,201.1],[86.6,192.6],[73,184.5],[59,176.8],[44.6,169.5],[30,162.5],[15.1,155.6],[0.2,149]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":6,"ty":4,"ln":"layer_6","sr":1,"ks":{"a":{"a":0,"k":[1293.405,237.005]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12655.66]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface21","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.6,158.9],[15.5,165.6],[30.2,172.6],[44.7,179.7],[58.8,187.2],[72.6,195.1],[86,203.3],[98.8,212],[110.9,221.2],[122.3,230.9],[132.7,241.1],[142.1,251.9],[150.3,263.2],[157.2,275],[162.7,287.3],[166.6,299.9],[169.1,312.8],[170,326],[169.4,339.3],[167.3,352.6],[163.8,366],[159.1,379.4],[153.1,392.7],[146.6,406],[139.9,419.3],[133.9,432.7],[129,446.2],[125.3,459.7],[123,473.2],[122,486.6],[122.6,499.8],[124.6,512.7],[128.2,525.1],[133.3,537],[140.1,548.2],[148.3,558.7],[158,568.3],[169,577.1],[181.2,584.9],[194.6,591.7],[208.9,597.6],[224.2,602.5],[240.3,606.3],[256.9,609.3],[274.2,611.3],[291.8,612.5],[309.8,612.9],[328,612.6],[346.4,611.6],[365,610.1],[383.7,608],[402.4,605.6],[421.3,602.7],[440.1,599.5],[458.9,596],[477.8,592.2],[496.7,588],[515.5,583.7],[534.4,579],[553.2,574.1],[572,569.1],[590.7,563.8],[609.5,558.4],[628.2,552.9],[646.8,547.3],[665.5,541.6],[684.1,535.7],[702.7,529.7],[739.7,517.3],[758.1,511],[776.6,504.6],[795,498.1],[813.4,491.7],[831.9,485.2],[850.3,478.8],[868.7,472.3],[887.1,465.8],[905.5,459.2],[923.8,452.6],[942.1,445.9],[960.4,439.2],[978.7,432.6],[997,425.9],[1015.3,419.2],[1033.6,412.5],[1051.9,405.7],[1070.1,399],[1088.3,392.2],[1106.5,385.5],[1124.8,378.8],[1161.2,365.2],[1179.3,358.3],[1197.2,351.2],[1215.1,343.9],[1232.8,336.3],[1250.3,328.6],[1267.7,320.6],[1284.9,312.4],[1301.8,303.9],[1318.5,295.1],[1335,286],[1351.2,276.5],[1367,266.6],[1382.6,256.4],[1397.7,245.8],[1412.6,234.9],[1427.1,223.6],[1441.4,212.1],[1455.6,200.4],[1469.5,188.6],[1483.3,176.5],[1496.9,164.3],[1510.5,152],[1524,139.7],[1537.5,127.5],[1551.2,115.7],[1565.1,104.4],[1579.1,93.5],[1593.3,83],[1607.6,72.8],[1621.9,62.7],[1636.2,52.9],[1650.8,43.6],[1665.4,34.7],[1680.4,26.4],[1695.5,19],[1711,12.6],[1726.8,7.3],[1742.9,3.6],[1759.3,1.3],[1775.8,0.8],[1792.3,2.1],[1808.7,5.3],[1824.8,10.5],[1840.3,17.5],[1855.1,26.3],[1869,37],[1881.9,49.3],[1893.5,63],[1903.7,78],[1912.5,94.1],[1919.7,111.1],[1925.4,128.8],[1929.7,147],[1932.5,165.5],[1934,184.1],[1934.2,202.8],[1933.4,221.5],[1931.6,240.1],[1929.3,258.7],[1927,277.3],[1924.9,295.9],[1923.7,314.6],[1923.3,333.3],[1923.8,352],[1925.1,370.7],[1927.2,389.3],[1930.3,407.8],[1934.5,426],[1939.7,443.9],[1946,461.4],[1953.5,478.5],[1962.1,495],[1971.9,510.7],[1982.9,525.7],[1995.1,539.8],[2008.2,553],[2022.3,565.1],[2037.3,576.2],[2053.1,586.1],[2069.5,594.9],[2086.6,602.6],[2104,609.3],[2121.9,614.9],[2140,619.5],[2158.4,623.3],[2176.9,626.2],[2195.5,628.4],[2214.2,630],[2232.9,630.9],[2251.7,631.3],[2270.4,631.2],[2289.2,630.6],[2308,629.6],[2326.8,628.2],[2345.5,626.4],[2364.2,624.3],[2382.9,621.8],[2401.5,619],[2420.1,615.9],[2438.7,612.6],[2457.2,609],[2475.7,605.2],[2494.1,601.1],[2512.5,596.9],[2530.9,592.3],[2549.2,587.5],[2567.4,582.3],[2585.4,576.8],[2603.4,571],[2621.3,564.8],[2639,558.1],[2656.5,551.1],[2673.9,543.6],[2691,535.6],[2707.9,527.2],[2724.5,518.3],[2740.9,509],[2757,499.2],[2772.9,489.1],[2788.6,478.7],[2804.1,468.1],[2819.5,457.2],[2834.9,446.4],[2850.4,435.6],[2866.1,425.2],[2882.3,415.2],[2898.7,405.8],[2915.5,396.9],[2932.6,388.5],[2950.1,380.8],[2967.8,373.7],[2985.8,367.2],[3004.1,361.3],[3022.5,356.2],[3041.2,351.9],[3060,348.8],[3078.9,347.1],[3097.9,347.1],[3116.6,348.7],[3134.8,352.2],[3152.1,357.7],[3168.1,365.1],[3183.2,373.9],[3197.8,383.3],[3212.3,392.5],[3226.9,400.8],[3241.7,408.4],[3256.7,415.2],[3271.8,421.5],[3287,427.2],[3302.3,432.6],[3317.6,437.6],[3332.8,442.5],[3347.9,447.2],[3362.9,451.8],[3377.7,456.3],[3392.3,460.7],[3406.7,465],[3420.8,469.1],[3434.7,473.2],[3448.2,477.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":7,"ty":4,"ln":"layer_7","sr":1,"ks":{"a":{"a":0,"k":[1294.905,238.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12656]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface26","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3452.7,469.2],[3439.6,465.4],[3426.2,461.5],[3412.4,457.6],[3398.4,453.6],[3384.1,449.6],[3369.5,445.5],[3354.8,441.3],[3339.8,437.1],[3324.7,432.9],[3309.5,428.5],[3294.2,423.9],[3278.9,419.1],[3263.6,413.9],[3248.4,408.1],[3233.2,401.7],[3218.2,394.4],[3203.3,386.1],[3188.2,377.5],[3172.7,369.4],[3156.4,362.6],[3138.9,357.7],[3120.6,354.6],[3101.7,353.3],[3082.7,353.6],[3063.8,355.3],[3044.9,358.3],[3026.2,362.4],[3007.7,367.3],[2989.3,372.8],[2971.2,379],[2953.3,385.9],[2935.7,393.4],[2918.5,401.5],[2901.6,410.2],[2885,419.5],[2868.9,429.4],[2853,439.8],[2837.5,450.5],[2822.1,461.4],[2806.7,472.2],[2791.2,482.9],[2775.6,493.4],[2759.7,503.5],[2743.6,513.3],[2727.2,522.6],[2710.5,531.5],[2693.5,539.8],[2676.4,547.8],[2659,555.2],[2641.4,562.2],[2623.7,568.8],[2605.8,575.1],[2587.8,580.9],[2569.7,586.5],[2551.5,591.6],[2533.2,596.4],[2514.8,600.9],[2496.3,605.1],[2477.9,608.9],[2459.3,612.6],[2440.8,616],[2422.2,619.2],[2403.5,622.2],[2384.9,624.9],[2366.1,627.4],[2347.4,629.5],[2328.6,631.3],[2309.9,632.8],[2291.1,633.8],[2272.3,634.3],[2253.5,634.5],[2234.7,634.1],[2215.9,633.1],[2197.2,631.6],[2178.6,629.4],[2160.1,626.5],[2141.7,622.7],[2123.6,618.1],[2105.7,612.4],[2088.2,605.8],[2071.2,597.9],[2054.8,589],[2039.1,578.9],[2024.2,567.8],[2010.2,555.5],[1997.2,542.1],[1985.3,527.8],[1974.5,512.7],[1964.9,496.7],[1956.5,480.1],[1949.3,462.9],[1943.2,445.3],[1938.3,427.3],[1934.4,409],[1931.5,390.4],[1929.6,371.8],[1928.4,353.1],[1928.1,334.3],[1928.7,315.5],[1930,296.8],[1932,278.2],[1934.4,259.6],[1936.8,241.1],[1938.6,222.4],[1939.5,203.7],[1939.4,185],[1938.1,166.3],[1935.5,147.8],[1931.4,129.6],[1925.8,111.8],[1918.7,94.7],[1910.1,78.5],[1900,63.4],[1888.4,49.5],[1875.7,37.1],[1861.8,26.4],[1847,17.5],[1831.4,10.5],[1815.4,5.4],[1798.9,2.2],[1782.4,1.1],[1765.9,1.7],[1749.5,4.2],[1733.4,8.2],[1717.7,13.6],[1702.3,20.3],[1687.2,28.1],[1672.3,36.6],[1657.7,45.7],[1643.3,55.3],[1629,65.2],[1614.7,75.4],[1600.5,85.8],[1586.3,96.3],[1572.1,107.1],[1558.2,118.3],[1544.4,130],[1530.6,141.9],[1517,153.9],[1503.2,165.9],[1489.2,177.7],[1475.1,189.3],[1460.7,200.7],[1446.2,211.9],[1431.5,222.9],[1416.5,233.6],[1401.2,244],[1385.6,254.1],[1369.6,263.8],[1353.3,273],[1336.7,282],[1319.9,290.6],[1302.8,298.9],[1285.5,307],[1268,314.8],[1250.4,322.4],[1232.6,329.9],[1214.7,337.2],[1196.8,344.3],[1178.7,351.2],[1160.5,358.1],[1142.3,364.8],[1124,371.5],[1105.8,378.2],[1087.6,385],[1069.4,391.8],[1051.1,398.7],[1032.9,405.4],[1014.6,412.2],[996.3,418.8],[959.7,432.2],[941.4,438.9],[923.1,445.6],[904.7,452.3],[886.4,459],[868,465.5],[849.6,471.9],[831.1,478.4],[812.7,484.9],[794.3,491.4],[757.5,504.4],[739,510.8],[720.5,517.1],[702,523.3],[683.4,529.4],[664.8,535.3],[646.2,541.1],[627.5,546.8],[608.8,552.3],[590.1,557.8],[571.3,563.1],[552.5,568.2],[533.7,573.2],[514.9,577.9],[496,582.4],[477.2,586.5],[458.3,590.4],[439.4,594],[420.6,597.2],[401.8,600.1],[383,602.6],[364.3,604.6],[345.7,606.1],[327.2,607.1],[309,607.5],[291,607.1],[273.3,605.9],[256.1,603.8],[239.4,600.9],[223.4,597],[208.2,592.1],[193.8,586.3],[180.4,579.4],[168.2,571.6],[157.2,562.8],[147.6,553.1],[139.4,542.7],[132.7,531.4],[127.5,519.5],[124,507.1],[122,494.2],[121.6,481],[122.6,467.6],[125.1,454.1],[128.8,440.5],[133.9,427],[140,413.7],[146.8,400.4],[153.5,387.1],[159.6,373.8],[164.5,360.5],[168.1,347.1],[170.3,333.7],[171.1,320.4],[170.2,307.2],[167.8,294.3],[163.9,281.6],[158.5,269.4],[151.6,257.6],[143.4,246.3],[133.9,235.5],[123.4,225.3],[112,215.7],[99.7,206.6],[86.8,198],[73.3,189.8],[59.4,182.1],[45.1,174.7],[30.6,167.5],[15.8,160.7],[0.9,154]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":8,"ty":4,"ln":"layer_8","sr":1,"ks":{"a":{"a":0,"k":[1291.53,235.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12655.32]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface31","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3443,484.9],[3429,480.6],[3414.8,476.3],[3400.3,471.8],[3385.7,467.1],[3370.8,462.3],[3355.8,457.3],[3340.7,452.2],[3325.5,446.8],[3310.2,441.3],[3294.9,435.5],[3279.7,429.3],[3264.7,422.6],[3249.9,415.3],[3235.4,407.3],[3221,398.7],[3206.9,389.5],[3192.8,379.6],[3178.6,369.8],[3163.8,360.6],[3148,352.8],[3130.9,347],[3112.8,343.1],[3094.1,341.2],[3075.1,341.1],[3056.2,342.8],[3037.5,345.9],[3018.9,350.3],[3000.4,355.6],[2982.3,361.7],[2964.4,368.4],[2946.8,375.8],[2929.5,383.7],[2912.5,392.3],[2895.8,401.4],[2879.5,410.9],[2863.4,421],[2847.7,431.4],[2832.2,442.1],[2816.8,452.9],[2801.4,463.7],[2785.8,474.3],[2770.2,484.7],[2754.3,494.8],[2738.2,504.6],[2721.9,514],[2705.3,522.9],[2688.5,531.4],[2671.5,539.5],[2654.2,547],[2636.7,554.1],[2619,560.8],[2601.2,567],[2583.2,572.8],[2565,578.2],[2546.8,583.3],[2528.6,588.1],[2510.3,592.8],[2491.9,597.2],[2473.5,601.4],[2455.1,605.4],[2436.6,609.2],[2418.1,612.7],[2399.6,615.9],[2380.9,618.7],[2362.3,621.2],[2343.6,623.3],[2324.9,625],[2306.1,626.4],[2287.4,627.4],[2268.6,627.9],[2249.9,628],[2231.1,627.6],[2212.4,626.7],[2193.7,625.2],[2175.2,623],[2156.7,620.1],[2138.3,616.3],[2120.2,611.7],[2102.4,606.1],[2084.9,599.5],[2067.8,591.9],[2051.3,583.2],[2035.5,573.4],[2020.4,562.5],[2006.2,550.5],[1992.9,537.6],[1980.6,523.6],[1969.4,508.8],[1959.4,493.2],[1950.5,476.9],[1942.8,460],[1936.2,442.6],[1930.7,424.8],[1926.3,406.6],[1923,388.2],[1920.6,369.7],[1919.1,351],[1918.6,332.3],[1918.9,313.6],[1920,294.9],[1921.9,276.3],[1924.2,257.8],[1926.4,239.2],[1928.1,220.6],[1928.9,201.9],[1928.5,183.2],[1926.8,164.6],[1923.9,146.2],[1919.5,128.1],[1913.6,110.5],[1906.2,93.5],[1897.3,77.5],[1887,62.6],[1875.3,49],[1862.4,36.8],[1848.5,26.2],[1833.6,17.4],[1818.1,10.4],[1802.1,5.3],[1785.7,2],[1769.3,0.6],[1752.7,1],[1736.4,3],[1720.2,6.5],[1704.3,11.5],[1688.8,17.7],[1673.5,24.9],[1658.5,32.9],[1643.8,41.5],[1629.2,50.6],[1614.8,60.2],[1600.4,70.1],[1586.1,80.3],[1572,90.7],[1557.9,101.6],[1544.1,113],[1530.5,124.8],[1517,137.1],[1503.7,149.6],[1490.4,162.2],[1476.9,174.6],[1463.5,187],[1449.8,199.3],[1436.1,211.5],[1422.2,223.4],[1408,235.2],[1393.6,246.7],[1378.9,257.9],[1363.8,268.7],[1348.4,279.1],[1332.7,289.1],[1316.7,298.9],[1300.4,308.2],[1283.8,317.2],[1267,325.9],[1250,334.2],[1232.7,342.3],[1215.2,350.1],[1197.5,357.7],[1179.7,365.1],[1161.7,372.2],[1143.6,379.1],[1125.4,386],[1107.2,392.7],[1089,399.4],[1070.8,406.1],[1052.5,412.8],[1034.3,419.5],[1016,426.2],[997.8,432.9],[979.5,439.6],[961.2,446.3],[942.8,452.9],[906.2,466.1],[887.8,472.7],[851,485.7],[832.6,492.1],[814.2,498.6],[795.8,505],[777.3,511.3],[758.8,517.6],[740.4,523.8],[721.8,530],[703.3,536],[684.7,542],[666.1,547.9],[647.5,553.6],[628.8,559.2],[610.1,564.7],[591.4,570],[572.6,575.1],[553.8,580],[535,584.8],[516.2,589.3],[497.3,593.6],[478.5,597.7],[459.6,601.5],[440.8,605],[422,608.2],[403.2,611.1],[384.4,613.5],[365.7,615.5],[347.2,617.1],[328.7,618],[310.5,618.3],[292.6,617.9],[274.9,616.7],[257.7,614.7],[241,611.8],[225,607.9],[209.8,603.1],[195.4,597.2],[182,590.4],[169.7,582.6],[158.7,573.9],[149,564.2],[140.8,553.8],[134,542.6],[128.8,530.7],[125.2,518.3],[123,505.4],[122.4,492.2],[123.3,478.9],[125.6,465.4],[129.2,451.8],[133.9,438.3],[139.9,424.9],[146.3,411.6],[152.8,398.3],[158.6,385],[163.2,371.6],[166.6,358.2],[168.5,344.8],[169,331.5],[168,318.4],[165.5,305.5],[161.4,292.9],[156,280.6],[149.1,268.8],[140.9,257.5],[131.6,246.7],[121.2,236.4],[109.9,226.7],[97.9,217.5],[85.2,208.7],[71.9,200.3],[58.2,192.4],[44.2,184.8],[29.9,177.5],[15.2,170.6],[0.3,163.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":9,"ty":4,"ln":"layer_9","sr":1,"ks":{"a":{"a":0,"k":[1294.905,235.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12654.65]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface36","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3452.1,497.4],[3438.1,493],[3423.7,488.5],[3409.2,483.7],[3394.5,478.8],[3379.6,473.7],[3364.6,468.3],[3349.4,462.8],[3334.3,457.1],[3319,451],[3303.8,444.8],[3288.6,438.1],[3273.6,431],[3258.9,423.3],[3244.6,415],[3230.5,406],[3216.7,396.5],[3203.1,386.6],[3189.4,376.2],[3175.4,366.1],[3160.7,356.7],[3145.1,348.7],[3128.1,342.8],[3110.1,338.8],[3091.4,336.7],[3072.5,336.4],[3053.6,338],[3034.9,341.2],[3016.3,345.6],[2997.9,351.1],[2979.8,357.3],[2962,364.3],[2944.5,371.8],[2927.3,380],[2910.5,388.7],[2894,398],[2877.7,407.6],[2861.7,417.7],[2846,428.2],[2830.5,438.8],[2815,449.6],[2799.6,460.3],[2784.1,470.9],[2768.4,481.3],[2752.6,491.4],[2736.5,501.2],[2720.3,510.7],[2703.8,519.7],[2687,528.3],[2670,536.4],[2652.8,544],[2635.3,551.1],[2617.7,557.8],[2599.9,563.9],[2581.8,569.6],[2563.7,575],[2545.5,580.1],[2527.3,584.9],[2509,589.6],[2490.7,594.2],[2472.3,598.6],[2454,602.8],[2435.6,606.7],[2417.1,610.4],[2398.6,613.7],[2380,616.6],[2361.4,619.1],[2342.7,621.2],[2324,622.9],[2305.3,624.2],[2286.5,625.1],[2267.8,625.7],[2249.1,625.8],[2230.3,625.4],[2211.6,624.5],[2193,623],[2174.4,620.8],[2155.9,617.9],[2137.6,614.1],[2119.5,609.5],[2101.7,604],[2084.2,597.4],[2067.1,589.9],[2050.6,581.3],[2034.7,571.6],[2019.5,560.9],[2005.2,549.1],[1991.7,536.3],[1979.3,522.5],[1967.9,507.9],[1957.6,492.4],[1948.5,476.3],[1940.6,459.5],[1933.7,442.2],[1928,424.5],[1923.4,406.4],[1919.8,388.1],[1917.2,369.6],[1915.6,351],[1914.9,332.3],[1915,313.6],[1916,294.9],[1917.9,276.4],[1920.1,257.8],[1922.2,239.3],[1923.9,220.7],[1924.4,202],[1923.9,183.3],[1922.2,164.7],[1919,146.4],[1914.5,128.3],[1908.4,110.8],[1900.9,94],[1891.9,78],[1881.5,63.2],[1869.7,49.7],[1856.8,37.6],[1842.9,27.1],[1828,18.3],[1812.5,11.3],[1796.5,6.2],[1780.2,2.8],[1763.7,1.3],[1747.2,1.6],[1730.8,3.4],[1714.6,6.8],[1698.7,11.5],[1683.1,17.4],[1667.8,24.3],[1652.7,32.1],[1637.9,40.4],[1623.2,49.4],[1608.7,58.7],[1594.3,68.5],[1580,78.5],[1565.8,88.9],[1551.7,99.8],[1537.9,111.1],[1524.3,122.9],[1510.9,135.2],[1497.6,147.7],[1484.4,160.4],[1471.2,173.1],[1457.9,185.8],[1444.6,198.5],[1431.2,211],[1417.6,223.4],[1403.8,235.7],[1389.8,247.6],[1375.5,259.4],[1360.9,270.7],[1345.9,281.8],[1330.7,292.4],[1315.2,302.7],[1299.4,312.6],[1283.3,322.2],[1266.8,331.4],[1250.2,340.2],[1233.2,348.7],[1216,356.9],[1198.5,364.8],[1180.9,372.4],[1163.1,379.8],[1145.1,387],[1127,394],[1108.9,400.8],[1090.7,407.6],[1072.5,414.2],[1054.2,420.8],[1035.9,427.5],[1017.7,434.2],[999.5,440.9],[981.2,447.6],[962.9,454.3],[944.6,460.9],[926.2,467.5],[907.9,474],[871.1,487],[852.8,493.6],[834.4,500.1],[815.9,506.5],[797.5,512.8],[779,519.1],[760.5,525.3],[723.5,537.5],[704.9,543.5],[686.4,549.4],[667.8,555.2],[649.1,560.9],[630.5,566.5],[611.7,571.9],[593,577.1],[574.2,582.1],[555.5,587],[536.6,591.6],[517.8,596],[499,600.2],[480.1,604.2],[461.3,608],[442.5,611.5],[423.7,614.7],[404.9,617.5],[386.1,620],[367.5,622],[348.9,623.5],[330.5,624.5],[312.2,624.8],[294.3,624.3],[276.7,623.1],[259.5,621.1],[242.8,618.2],[226.8,614.3],[211.5,609.5],[197.1,603.7],[183.7,596.9],[171.5,589.1],[160.4,580.4],[150.8,570.8],[142.5,560.3],[135.6,549.1],[130.4,537.3],[126.7,524.9],[124.5,512],[123.8,498.9],[124.6,485.5],[126.8,472],[130.3,458.4],[135,444.9],[140.8,431.5],[147.1,418.2],[153.4,404.9],[159.1,391.6],[163.6,378.2],[166.8,364.7],[168.6,351.4],[169.1,338.1],[167.9,325],[165.3,312.1],[161.3,299.5],[155.7,287.2],[148.8,275.5],[140.7,264.1],[131.4,253.3],[121.1,243],[109.9,233.2],[98,223.9],[85.4,215],[72.2,206.6],[58.7,198.5],[44.8,190.8],[30.5,183.5],[15.9,176.5],[1,169.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":10,"ty":4,"ln":"layer_10","sr":1,"ks":{"a":{"a":0,"k":[1290.03,238.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.86,12659.37]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface41","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.2,180],[15.1,186.6],[29.7,193.6],[43.9,201],[57.6,208.8],[71,217.1],[83.8,225.7],[96.2,234.7],[107.9,244.2],[118.9,254.1],[129,264.4],[138.2,275.3],[146.3,286.6],[153.2,298.4],[158.8,310.6],[163,323.2],[165.8,336.1],[167.1,349.2],[166.9,362.4],[165.3,375.8],[162.4,389.2],[158.2,402.7],[152.8,416],[146.8,429.4],[140.8,442.7],[135.2,456.1],[130.8,469.7],[127.4,483.2],[125.3,496.7],[124.6,510.1],[125.4,523.2],[127.7,536.1],[131.5,548.4],[136.9,560.3],[143.8,571.4],[152.1,581.8],[161.9,591.4],[173,600.1],[185.3,607.9],[198.7,614.6],[213.1,620.4],[228.4,625.2],[244.4,629],[261.1,631.9],[278.2,633.9],[295.9,635.1],[313.8,635.6],[332,635.3],[350.3,634.4],[368.9,632.9],[387.5,630.9],[406.2,628.5],[425,625.7],[443.8,622.5],[462.6,619.1],[481.4,615.5],[500.2,611.6],[519.1,607.5],[537.9,603.2],[556.7,598.6],[575.5,593.9],[594.3,589],[613,583.9],[631.7,578.6],[650.4,573.2],[669,567.7],[706.2,556.3],[724.8,550.5],[743.3,544.5],[761.9,538.5],[780.4,532.4],[798.9,526.2],[817.3,519.9],[835.7,513.6],[854.1,507.1],[872.5,500.7],[890.9,494.2],[909.2,487.7],[927.6,481.2],[945.9,474.7],[964.2,468.1],[982.5,461.5],[1000.8,454.8],[1019,448.1],[1037.3,441.4],[1055.5,434.8],[1073.7,428.2],[1091.9,421.4],[1109.9,414.5],[1127.8,407.2],[1145.6,399.7],[1163.1,391.9],[1180.4,383.8],[1197.5,375.3],[1214.3,366.6],[1230.8,357.4],[1247,347.9],[1262.7,337.9],[1278.1,327.5],[1293.2,316.7],[1308,305.5],[1322.6,294],[1336.8,282.1],[1350.8,269.9],[1364.6,257.5],[1378.1,244.8],[1391.4,232],[1404.6,219],[1417.7,205.9],[1430.6,192.7],[1443.6,179.5],[1456.5,166.4],[1469.6,153.5],[1482.8,140.8],[1496.1,128.4],[1509.6,116.4],[1523.3,104.9],[1537.3,93.9],[1551.4,83.4],[1565.8,73.3],[1580.2,63.6],[1594.7,54.3],[1609.4,45.3],[1624.2,36.8],[1639.1,28.9],[1654.4,21.6],[1669.8,15.1],[1685.5,9.6],[1701.5,5.3],[1717.7,2.3],[1734.1,0.7],[1750.6,0.7],[1767,2.4],[1783.4,5.9],[1799.3,11.1],[1814.8,18.1],[1829.7,26.8],[1843.7,37.2],[1856.7,49.1],[1868.5,62.5],[1879.2,77.1],[1888.3,92.8],[1896.1,109.5],[1902.4,126.8],[1907.3,144.8],[1910.7,163],[1912.8,181.5],[1913.6,200.2],[1913.2,218.8],[1911.8,237.4],[1909.9,255.9],[1907.9,274.5],[1906.3,293.1],[1905.5,311.7],[1905.6,330.4],[1906.6,349],[1908.6,367.5],[1911.6,385.9],[1915.6,404.1],[1920.7,422],[1926.9,439.5],[1934.2,456.5],[1942.7,473],[1952.3,488.9],[1962.9,504],[1974.7,518.3],[1987.4,531.7],[2001.1,544.2],[2015.7,555.7],[2031,566.1],[2047,575.5],[2063.6,583.9],[2080.8,591.3],[2098.3,597.7],[2116.1,603.1],[2134.2,607.7],[2152.5,611.4],[2170.9,614.3],[2189.4,616.6],[2208.1,618.1],[2226.7,619.1],[2245.4,619.5],[2264.1,619.4],[2282.8,618.9],[2301.5,617.9],[2320.2,616.5],[2338.8,614.7],[2357.4,612.4],[2376,609.7],[2394.5,606.6],[2412.9,603],[2431.3,599.2],[2449.6,595.1],[2467.9,590.7],[2486.2,586.2],[2504.5,581.5],[2522.7,576.7],[2540.8,571.7],[2559,566.5],[2577,561.1],[2595,555.3],[2612.8,549.2],[2630.5,542.6],[2648,535.6],[2665.2,528.1],[2682.2,520],[2698.9,511.4],[2715.3,502.4],[2731.5,492.9],[2747.4,483],[2763.2,472.9],[2778.8,462.4],[2794.2,451.8],[2809.7,441.1],[2825.1,430.4],[2840.6,419.8],[2856.3,409.3],[2872.1,399.1],[2888.2,389.2],[2904.6,379.8],[2921.2,370.7],[2938.2,362.3],[2955.5,354.4],[2973.2,347.2],[2991.2,340.8],[3009.5,335.2],[3028,330.7],[3046.7,327.6],[3065.6,326],[3084.4,326.2],[3103,328.3],[3121,332.3],[3138,338.1],[3153.9,345.8],[3168.6,355],[3182.5,365.2],[3195.8,376],[3208.7,386.9],[3221.4,397.8],[3234.2,408.5],[3247.3,418.7],[3261,428.2],[3275.2,437.1],[3289.8,445.4],[3304.6,453.4],[3319.5,460.9],[3334.5,468.1],[3349.6,474.9],[3364.6,481.4],[3379.7,487.7],[3394.7,493.7],[3409.6,499.5],[3424.4,505],[3439,510.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":11,"ty":4,"ln":"layer_11","sr":1,"ks":{"a":{"a":0,"k":[1292.655,236.63]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.86,12656.67]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface46","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3445.9,504.2],[3431.5,499.5],[3416.9,494.5],[3402.1,489.3],[3387.2,483.8],[3372.2,478.2],[3357.1,472.3],[3341.9,466.1],[3326.8,459.7],[3311.7,452.9],[3296.6,445.9],[3281.6,438.3],[3266.9,430.3],[3252.7,421.7],[3238.9,412.4],[3225.5,402.5],[3212.2,392.2],[3199,381.7],[3185.6,371],[3171.7,360.8],[3157.1,351.5],[3141.4,343.6],[3124.4,337.6],[3106.5,333.5],[3087.8,331.4],[3068.9,331.1],[3050.1,332.6],[3031.4,335.8],[3012.8,340.3],[2994.5,345.8],[2976.5,352.2],[2958.8,359.2],[2941.4,367],[2924.3,375.3],[2907.5,384.2],[2891.1,393.6],[2874.9,403.4],[2859,413.5],[2843.3,423.9],[2827.8,434.6],[2812.3,445.3],[2796.8,456],[2781.3,466.6],[2765.7,477],[2749.9,487.1],[2734,497],[2717.8,506.5],[2701.3,515.5],[2684.6,524.2],[2667.6,532.3],[2650.4,539.9],[2633,547],[2615.3,553.6],[2597.5,559.7],[2579.5,565.4],[2561.4,570.8],[2543.2,575.8],[2525,580.7],[2506.7,585.6],[2488.5,590.2],[2470.2,594.7],[2451.8,599],[2433.5,603.1],[2415,606.9],[2396.5,610.3],[2378,613.3],[2359.4,615.8],[2340.8,618],[2322.1,619.7],[2303.4,621],[2284.7,621.9],[2265.9,622.5],[2247.2,622.6],[2228.5,622.2],[2209.9,621.3],[2191.2,619.8],[2172.7,617.6],[2154.2,614.6],[2135.9,610.9],[2117.8,606.3],[2100,600.8],[2082.5,594.4],[2065.4,586.9],[2048.8,578.4],[2032.9,568.9],[2017.6,558.3],[2003.1,546.6],[1989.6,534],[1977,520.4],[1965.4,505.9],[1954.9,490.6],[1945.6,474.6],[1937.4,458],[1930.3,440.8],[1924.3,423.2],[1919.5,405.3],[1915.7,387],[1912.9,368.6],[1911.1,350],[1910.2,331.3],[1910.2,312.7],[1911.2,294],[1912.9,275.4],[1915,256.9],[1917,238.3],[1918.5,219.8],[1919,201.1],[1918.4,182.4],[1916.4,163.9],[1913.2,145.6],[1908.5,127.6],[1902.3,110.1],[1894.6,93.4],[1885.5,77.6],[1875,62.8],[1863.2,49.4],[1850.2,37.4],[1836.3,26.9],[1821.4,18.2],[1805.9,11.2],[1789.9,6],[1773.6,2.6],[1757.1,1],[1740.6,1.1],[1724.2,2.8],[1708,6],[1692.1,10.5],[1676.4,16.2],[1661.1,22.9],[1645.9,30.4],[1631,38.5],[1616.3,47.2],[1601.7,56.4],[1587.2,66],[1572.9,75.9],[1558.6,86.2],[1544.5,96.9],[1530.6,108],[1517,119.8],[1503.6,132],[1490.3,144.5],[1477.1,157.2],[1437.8,195.9],[1424.6,208.8],[1411.4,221.6],[1397.9,234.2],[1384.3,246.7],[1370.4,258.9],[1356.2,270.8],[1341.8,282.4],[1327,293.7],[1312,304.6],[1296.7,315.2],[1281,325.3],[1265.1,335.1],[1248.9,344.5],[1232.3,353.5],[1215.4,362.1],[1198.3,370.4],[1180.8,378.4],[1163.2,386.1],[1145.5,393.6],[1127.5,400.8],[1109.4,407.8],[1091.3,414.6],[1073.1,421.2],[1054.9,427.8],[1036.6,434.4],[1018.4,441.1],[1000.1,447.9],[981.9,454.6],[963.6,461.3],[945.3,467.9],[926.9,474.4],[908.6,480.9],[890.2,487.3],[871.8,493.9],[853.5,500.4],[835.1,506.9],[816.7,513.3],[798.2,519.6],[779.7,525.8],[742.7,538],[724.2,543.9],[705.6,549.9],[687,555.7],[668.4,561.5],[649.8,567.1],[631.1,572.6],[612.4,578],[593.6,583.1],[574.9,588.1],[556.1,592.8],[537.2,597.4],[518.4,601.7],[499.6,605.9],[480.8,609.8],[461.9,613.5],[443.1,617],[424.3,620.2],[405.6,623],[386.8,625.5],[368.2,627.5],[349.6,629],[331.2,629.9],[313,630.2],[295.1,629.7],[277.5,628.5],[260.3,626.5],[243.6,623.6],[227.6,619.8],[212.3,615],[197.9,609.2],[184.5,602.4],[172.2,594.6],[161.2,585.9],[151.4,576.3],[143.1,565.9],[136.2,554.7],[131,542.9],[127.2,530.5],[125,517.6],[124.2,504.5],[125,491.1],[127.1,477.6],[130.5,464.1],[135.1,450.5],[140.8,437.1],[147,423.8],[153.1,410.5],[158.6,397.1],[163,383.7],[166,370.3],[167.8,356.9],[168.1,343.6],[166.9,330.5],[164.2,317.6],[160,305],[154.5,292.8],[147.6,281.1],[139.4,269.7],[130.2,258.9],[120,248.5],[108.9,238.7],[97,229.3],[84.6,220.4],[71.6,211.8],[58.2,203.7],[44.3,195.9],[30.1,188.5],[15.6,181.5],[0.6,174.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":12,"ty":4,"ln":"layer_12","sr":1,"ks":{"a":{"a":0,"k":[1293.03,241.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12804.19,12661.39]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface51","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3447.4,521.7],[3432.7,516.2],[3418,510.4],[3403.1,504.4],[3388.1,498],[3373.1,491.4],[3358.2,484.4],[3343.2,477.2],[3328.3,469.6],[3313.6,461.7],[3299,453.4],[3284.6,444.7],[3270.5,435.5],[3256.9,425.8],[3243.7,415.5],[3231.2,404.6],[3219.1,393.3],[3206.9,381.9],[3194.3,370.7],[3181,359.9],[3166.9,349.8],[3151.9,340.9],[3135.9,333.5],[3118.7,327.9],[3100.7,324.2],[3082.1,322.3],[3063.2,322.1],[3044.5,323.7],[3025.7,326.8],[3007.2,331.3],[2988.9,336.9],[2971,343.3],[2953.4,350.6],[2936.1,358.6],[2919.2,367.2],[2902.6,376.3],[2886.4,385.9],[2870.4,395.9],[2854.5,406.1],[2838.9,416.7],[2823.5,427.3],[2808.1,438.1],[2792.7,448.8],[2777.3,459.4],[2761.8,469.9],[2746.1,480.1],[2730.1,489.9],[2713.9,499.4],[2697.5,508.3],[2680.7,516.8],[2663.7,524.8],[2646.4,532.2],[2628.9,539.1],[2611.2,545.6],[2593.5,551.7],[2575.5,557.6],[2557.6,563.2],[2539.5,568.5],[2521.4,573.6],[2503.2,578.5],[2485,583.2],[2466.7,587.6],[2448.4,591.9],[2430.1,596.1],[2411.8,600],[2393.4,603.7],[2374.9,607],[2356.4,609.9],[2337.9,612.3],[2319.2,614.3],[2300.6,615.8],[2281.9,616.8],[2263.2,617.4],[2244.5,617.5],[2225.9,617],[2207.3,616],[2188.7,614.4],[2170.1,612.1],[2151.7,609.2],[2133.4,605.4],[2115.3,600.9],[2097.6,595.5],[2080,589.2],[2062.9,581.9],[2046.3,573.6],[2030.2,564.4],[2014.8,554.1],[2000.1,542.7],[1986.3,530.4],[1973.4,517.2],[1961.4,503],[1950.6,488.1],[1940.8,472.4],[1932.1,456],[1924.6,439.1],[1918.2,421.7],[1912.8,403.9],[1908.6,385.8],[1905.4,367.5],[1903.2,349],[1902,330.4],[1901.8,311.7],[1902.4,293.1],[1904,274.6],[1905.9,256],[1907.7,237.5],[1908.9,218.9],[1909.1,200.3],[1908.2,181.7],[1906,163.2],[1902.4,145],[1897.4,127.1],[1890.9,109.8],[1883,93.3],[1873.8,77.6],[1863.1,63.1],[1851.2,49.8],[1838.1,37.9],[1824.1,27.6],[1809.3,18.9],[1793.8,11.9],[1777.8,6.7],[1761.5,3.1],[1745.1,1.4],[1728.6,1.3],[1712.2,2.7],[1695.9,5.6],[1679.9,9.8],[1664.2,15.1],[1648.7,21.4],[1633.4,28.5],[1618.4,36.2],[1603.5,44.5],[1588.8,53.3],[1574.2,62.4],[1559.7,71.9],[1545.3,81.7],[1531,92],[1517,102.7],[1503.1,114],[1489.5,125.7],[1476.1,137.9],[1462.9,150.5],[1449.8,163.4],[1436.9,176.6],[1424.1,189.9],[1411.2,203.3],[1398.3,216.7],[1385.4,229.9],[1372.3,243.1],[1359.1,256.1],[1345.7,269],[1332.2,281.7],[1318.4,294.2],[1304.4,306.4],[1290.1,318.2],[1275.5,329.6],[1260.6,340.7],[1245.4,351.3],[1229.7,361.5],[1213.7,371.2],[1197.3,380.6],[1180.7,389.5],[1163.7,398.1],[1146.4,406.4],[1128.9,414.2],[1111.2,421.8],[1093.3,429],[1075.2,435.9],[1057.1,442.7],[1038.8,449.3],[1020.6,456],[1002.4,462.6],[984.1,469.3],[965.8,475.9],[947.5,482.4],[929.2,489],[910.9,495.5],[892.5,502],[855.7,514.8],[837.3,521.1],[818.9,527.5],[800.4,533.7],[782,539.9],[745,552.1],[726.4,557.9],[707.9,563.7],[689.3,569.3],[670.6,574.8],[652,580.2],[633.3,585.5],[614.5,590.7],[595.8,595.7],[577.1,600.6],[558.3,605.4],[539.5,609.9],[520.7,614.3],[501.9,618.4],[483.1,622.2],[464.3,625.8],[445.5,629.1],[426.7,632.2],[408,635],[389.3,637.4],[370.6,639.3],[352.1,640.8],[333.7,641.7],[315.6,641.9],[297.6,641.5],[280,640.3],[262.9,638.3],[246.2,635.4],[230.2,631.6],[214.9,626.8],[200.4,621.1],[187,614.3],[174.7,606.6],[163.6,597.9],[153.8,588.3],[145.4,577.9],[138.5,566.8],[133.1,555],[129.2,542.6],[126.9,529.8],[126.1,516.7],[126.7,503.3],[128.7,489.8],[132,476.3],[136.4,462.7],[141.8,449.3],[147.7,435.9],[153.5,422.6],[158.7,409.2],[162.8,395.8],[165.6,382.3],[167,369],[167.1,355.7],[165.7,342.6],[162.8,329.8],[158.6,317.2],[153,305],[146.1,293.2],[138,281.9],[128.8,271],[118.8,260.6],[107.9,250.6],[96.3,241.1],[84.1,232],[71.3,223.3],[58.1,215],[44.4,207.1],[30.3,199.7],[15.7,192.7],[0.6,186.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":13,"ty":4,"ln":"layer_13","sr":1,"ks":{"a":{"a":0,"k":[1296.405,243.005]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.87,12663.75]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface56","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3456,526.3],[3441.2,520.2],[3426.4,513.8],[3411.5,507.1],[3396.6,500.1],[3381.7,492.8],[3366.9,485.2],[3352.2,477.2],[3337.6,468.9],[3323.2,460.3],[3309,451.2],[3295.1,441.7],[3281.5,431.7],[3268.5,421.3],[3255.9,410.3],[3244,398.8],[3232.4,387.1],[3220.5,375.4],[3208.1,364.1],[3194.8,353.3],[3180.5,343.5],[3165.1,334.9],[3148.8,327.9],[3131.5,322.6],[3113.4,319.1],[3094.9,317.4],[3076,317.4],[3057.2,319],[3038.5,322.1],[3019.9,326.6],[3001.7,332.1],[2983.8,338.6],[2966.3,346],[2949.1,354],[2932.2,362.7],[2915.7,372],[2899.5,381.6],[2883.5,391.7],[2867.8,402],[2852.3,412.6],[2836.9,423.3],[2821.6,434.1],[2806.3,444.8],[2790.9,455.5],[2775.4,466],[2759.7,476.1],[2743.8,486],[2727.5,495.3],[2711,504.2],[2694.2,512.6],[2677.2,520.4],[2659.9,527.7],[2642.4,534.5],[2624.7,541],[2606.9,547.1],[2589,553.1],[2571.1,558.9],[2553.1,564.4],[2535.1,569.6],[2516.9,574.5],[2498.7,579.1],[2480.5,583.5],[2462.2,587.8],[2443.9,592],[2425.6,596],[2407.3,599.7],[2388.9,603.2],[2370.4,606.2],[2351.9,608.8],[2333.3,610.9],[2314.7,612.6],[2296,613.7],[2277.4,614.4],[2258.7,614.4],[2240.1,614],[2221.4,612.9],[2202.9,611.3],[2184.4,608.9],[2166,605.9],[2147.7,602.2],[2129.6,597.7],[2111.8,592.4],[2094.3,586.1],[2077.2,578.9],[2060.5,570.7],[2044.3,561.6],[2028.9,551.4],[2014.1,540.2],[2000.1,528.1],[1987.1,515],[1975,501],[1963.9,486.2],[1954,470.7],[1945.1,454.5],[1937.3,437.7],[1930.6,420.4],[1925.1,402.7],[1920.6,384.7],[1917.2,366.4],[1914.9,348],[1913.5,329.4],[1913.1,310.8],[1913.6,292.2],[1915,273.6],[1916.8,255.1],[1918.5,236.6],[1919.6,218],[1919.7,199.4],[1918.6,180.8],[1916.2,162.4],[1912.5,144.2],[1907.3,126.4],[1900.7,109.2],[1892.7,92.7],[1883.3,77.2],[1872.6,62.7],[1860.7,49.5],[1847.6,37.7],[1833.6,27.3],[1818.7,18.7],[1803.2,11.7],[1787.3,6.4],[1771,2.9],[1754.6,1.1],[1738.1,0.9],[1721.7,2.2],[1705.4,4.9],[1689.4,9],[1673.6,14.1],[1658.1,20.3],[1642.8,27.2],[1627.7,34.7],[1612.7,42.8],[1597.9,51.4],[1583.3,60.4],[1568.7,69.6],[1554.2,79.2],[1539.8,89.2],[1525.6,99.6],[1511.6,110.6],[1497.9,122],[1484.3,133.9],[1471,146.3],[1457.9,159.2],[1445,172.4],[1432.2,185.8],[1419.4,199.3],[1406.7,212.8],[1393.8,226.2],[1381,239.7],[1368.1,253],[1355,266.3],[1341.9,279.5],[1328.5,292.5],[1315,305.3],[1301.2,317.7],[1287.2,329.8],[1272.8,341.5],[1258.1,352.8],[1243,363.6],[1227.4,374],[1211.6,384],[1195.3,393.5],[1178.8,402.6],[1161.9,411.4],[1144.7,419.7],[1127.2,427.7],[1109.5,435.2],[1091.6,442.4],[1073.6,449.4],[1055.4,456.1],[1037.2,462.8],[1018.9,469.4],[1000.7,476],[982.4,482.5],[964.1,489.1],[945.8,495.7],[927.5,502.2],[909.1,508.7],[890.8,515.1],[872.3,521.4],[853.9,527.6],[835.5,533.9],[817,540.2],[798.6,546.4],[780.1,552.5],[761.6,558.5],[743.1,564.4],[705.9,575.6],[687.2,581],[668.5,586.2],[649.8,591.4],[631.1,596.4],[612.4,601.4],[593.6,606.3],[574.9,611.1],[556.1,615.7],[537.3,620.1],[518.5,624.2],[499.7,627.9],[480.9,631.5],[462.1,634.7],[443.4,637.7],[424.7,640.5],[406,642.8],[387.4,644.7],[368.9,646.2],[350.5,647],[332.3,647.3],[314.4,646.9],[296.8,645.7],[279.6,643.7],[263,640.8],[246.9,637],[231.6,632.2],[217.2,626.5],[203.7,619.8],[191.4,612.1],[180.3,603.4],[170.5,593.8],[162,583.4],[155.1,572.3],[149.7,560.5],[145.8,548.2],[143.4,535.4],[142.5,522.3],[143.1,508.9],[145,495.4],[148.2,481.9],[152.5,468.3],[157.8,454.9],[163.6,441.5],[169.3,428.1],[174.3,414.7],[178.2,401.3],[180.8,387.8],[182.2,374.5],[182.1,361.2],[180.5,348.2],[177.6,335.3],[173.3,322.8],[167.7,310.6],[160.8,298.8],[152.7,287.5],[143.7,276.5],[133.7,266.1],[123,256],[111.5,246.4],[99.4,237.3],[86.7,228.5],[73.6,220.2],[59.9,212.3],[45.8,204.8],[31.1,197.9],[16,191.5],[0.5,185.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":14,"ty":4,"ln":"layer_14","sr":1,"ks":{"a":{"a":0,"k":[1296.78,247.505]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12668.48]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface61","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.6,198.1],[16.4,203.6],[31.7,209.7],[46.5,216.4],[60.8,223.7],[74.5,231.6],[87.6,239.9],[100.2,248.8],[112,258.1],[123.2,267.8],[133.7,278],[143.5,288.5],[152.3,299.5],[160.2,310.9],[167,322.7],[172.7,334.9],[177.1,347.4],[180.2,360.3],[181.9,373.3],[182.3,386.5],[181.3,399.9],[179,413.3],[175.4,426.7],[170.7,440.2],[165.3,453.6],[159.8,467],[154.7,480.5],[150.6,494],[147.6,507.6],[145.8,521.1],[145.3,534.4],[146.4,547.5],[148.9,560.2],[152.9,572.6],[158.4,584.3],[165.4,595.4],[173.9,605.8],[183.7,615.3],[194.9,623.9],[207.2,631.6],[220.7,638.3],[235.2,644.1],[250.5,648.8],[266.5,652.6],[283.2,655.5],[300.3,657.4],[317.9,658.6],[335.8,659.1],[354,658.8],[372.3,658],[390.7,656.6],[409.3,654.7],[428,652.4],[446.7,649.7],[465.4,646.7],[484.2,643.6],[503,640.1],[521.8,636.4],[540.5,632.5],[559.3,628.2],[578.1,623.7],[596.8,619],[615.5,614.2],[634.2,609.4],[652.9,604.4],[671.6,599.4],[690.3,594.2],[709,588.9],[727.6,583.5],[746.2,577.9],[764.7,572.1],[783.2,566.2],[820.2,554],[838.6,547.8],[857,541.6],[875.4,535.4],[893.9,529.2],[912.2,522.8],[930.6,516.4],[948.9,509.9],[967.2,503.4],[985.4,496.8],[1003.7,490.3],[1022,483.7],[1040.1,477],[1058.1,470],[1076.1,462.7],[1093.8,455.1],[1111.2,447.1],[1128.3,438.6],[1144.9,429.6],[1161.3,420.1],[1177.2,410.2],[1192.7,399.7],[1207.9,388.8],[1222.7,377.5],[1237.1,365.8],[1251.1,353.6],[1264.8,341.1],[1278.2,328.2],[1291.4,314.9],[1304.3,301.4],[1317,287.7],[1329.6,273.8],[1342.1,259.8],[1354.6,245.9],[1367.2,232],[1379.8,218.3],[1392.5,204.6],[1405.2,191],[1418,177.6],[1430.9,164.4],[1444,151.5],[1457.3,139.1],[1470.9,127.3],[1484.8,116],[1498.9,105.3],[1513.2,95],[1527.6,85.1],[1542.1,75.6],[1556.8,66.5],[1571.6,57.6],[1586.4,49],[1601.3,40.8],[1616.3,33.1],[1631.6,25.8],[1647,19.2],[1662.6,13.4],[1678.4,8.5],[1694.4,4.7],[1710.7,2.2],[1727.1,1.1],[1743.6,1.4],[1760,3.3],[1776.3,7],[1792.2,12.3],[1807.7,19.3],[1822.5,27.9],[1836.6,38.2],[1849.6,49.9],[1861.7,63],[1872.5,77.3],[1882.1,92.7],[1890.3,109],[1897.2,126.1],[1902.6,143.7],[1906.6,161.7],[1909.3,180.1],[1910.8,198.6],[1911,217.2],[1910.2,235.7],[1908.8,254.2],[1907.3,272.8],[1906.2,291.3],[1905.9,309.9],[1906.6,328.4],[1908.3,346.9],[1911,365.3],[1914.8,383.4],[1919.7,401.3],[1925.7,418.8],[1932.7,435.9],[1941,452.4],[1950.3,468.4],[1960.7,483.6],[1972.1,498],[1984.6,511.6],[1997.9,524.4],[2012.1,536.2],[2027.1,547.1],[2042.7,556.9],[2058.9,565.9],[2075.7,573.9],[2092.8,580.9],[2110.4,587.1],[2128.2,592.4],[2146.2,596.9],[2164.4,600.6],[2182.8,603.6],[2201.3,605.9],[2219.8,607.6],[2238.4,608.6],[2257,609],[2275.7,608.8],[2294.2,608],[2312.9,606.7],[2331.4,604.9],[2350,602.6],[2368.4,599.9],[2386.8,596.7],[2405.2,593.1],[2423.5,589.2],[2441.7,585.1],[2459.9,580.8],[2478.1,576.4],[2496.2,571.8],[2514.3,567.1],[2532.4,562.1],[2550.4,556.8],[2568.3,551.3],[2586.1,545.5],[2603.9,539.5],[2621.7,533.3],[2639.3,526.8],[2656.8,520],[2674.1,512.7],[2691.2,504.9],[2708,496.7],[2724.6,487.9],[2740.8,478.7],[2756.9,469.1],[2772.7,459.1],[2788.2,448.7],[2803.6,438.1],[2818.8,427.3],[2849.2,405.5],[2864.5,394.7],[2880,384.2],[2895.8,374],[2911.9,364.2],[2928.3,354.9],[2945,346.1],[2962.1,337.9],[2979.6,330.4],[2997.4,323.9],[3015.6,318.3],[3034.2,313.9],[3052.9,310.8],[3071.7,309],[3090.5,308.8],[3109.1,310.2],[3127.3,313.2],[3144.8,317.9],[3161.6,324.3],[3177.5,332.3],[3192.3,341.5],[3206,351.9],[3218.5,363.1],[3230.2,374.9],[3241.4,387.1],[3252.6,399.2],[3264.2,411],[3276.2,422.5],[3288.6,433.6],[3301.3,444.4],[3314.5,454.8],[3328,464.8],[3341.9,474.5],[3355.9,483.8],[3370.1,492.8],[3384.5,501.5],[3398.9,509.8],[3413.5,517.8],[3428.1,525.5],[3442.8,532.9],[3457.5,540]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":15,"ty":4,"ln":"layer_15","sr":1,"ks":{"a":{"a":0,"k":[1293.78,245.63]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12796.21,12666.11]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface66","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.4,530.7],[3434.6,524],[3419.8,517],[3405,509.6],[3390.3,501.9],[3375.7,494],[3361.1,485.6],[3346.7,477],[3332.4,468],[3318.4,458.6],[3304.7,448.8],[3291.4,438.6],[3278.4,428],[3265.9,417],[3253.9,405.5],[3242.5,393.6],[3231.1,381.6],[3219.5,369.7],[3207.1,358.4],[3193.6,347.8],[3179,338.3],[3163.4,330],[3146.9,323.3],[3129.4,318.4],[3111.3,315.1],[3092.7,313.6],[3073.9,313.7],[3055,315.4],[3036.3,318.5],[3017.8,322.9],[2999.5,328.5],[2981.7,335],[2964.2,342.4],[2947,350.5],[2930.3,359.3],[2913.8,368.6],[2897.7,378.3],[2881.8,388.4],[2866.2,398.9],[2850.7,409.5],[2835.4,420.3],[2820.2,431.1],[2804.9,441.9],[2789.6,452.6],[2774.1,463],[2758.3,473.2],[2742.4,482.9],[2726.1,492.2],[2709.6,501],[2692.7,509.3],[2675.7,517],[2658.3,524.3],[2640.8,531.1],[2623.1,537.5],[2605.4,543.7],[2587.6,549.7],[2569.7,555.5],[2551.7,561.1],[2533.7,566.4],[2515.7,571.3],[2497.5,576],[2479.3,580.4],[2461,584.7],[2442.8,588.9],[2424.5,593],[2406.2,596.8],[2387.9,600.4],[2369.4,603.5],[2350.9,606.3],[2332.4,608.5],[2313.8,610.3],[2295.1,611.5],[2276.5,612.2],[2257.9,612.3],[2239.2,611.8],[2220.6,610.8],[2202.1,609.1],[2183.6,606.8],[2165.2,603.8],[2147,600],[2128.9,595.5],[2111.1,590.2],[2093.6,584],[2076.4,576.9],[2059.7,568.8],[2043.5,559.8],[2028,549.8],[2013.1,538.7],[1999,526.7],[1985.8,513.8],[1973.6,500.1],[1962.3,485.4],[1952.1,470],[1943,454],[1935,437.3],[1928.1,420.1],[1922.4,402.5],[1917.7,384.6],[1914.1,366.3],[1911.6,347.9],[1910,329.4],[1909.5,310.8],[1909.9,292.2],[1911.1,273.7],[1912.8,255.2],[1914.4,236.6],[1915.3,218.1],[1915.2,199.5],[1914,180.9],[1911.4,162.6],[1907.6,144.4],[1902.3,126.7],[1895.5,109.6],[1887.4,93.2],[1878,77.7],[1867.1,63.3],[1855.1,50.2],[1842.1,38.4],[1828,28.1],[1813.2,19.5],[1797.7,12.5],[1781.8,7.2],[1765.5,3.6],[1749,1.7],[1732.6,1.4],[1716.2,2.7],[1699.9,5.3],[1683.9,9.2],[1668.1,14.2],[1652.5,20.2],[1637.2,27],[1622,34.4],[1607,42.3],[1592.1,50.7],[1577.4,59.4],[1562.7,68.4],[1548.1,77.8],[1533.7,87.5],[1519.4,97.7],[1505.2,108.3],[1491.3,119.4],[1477.6,131],[1464.1,143.1],[1451,155.8],[1438,168.9],[1425.1,182.3],[1412.4,195.8],[1399.7,209.4],[1387,223],[1374.2,236.6],[1361.5,250.2],[1348.8,263.9],[1336,277.5],[1323.1,291],[1309.9,304.3],[1296.7,317.3],[1283.1,330],[1269.2,342.3],[1255,354.3],[1240.4,365.8],[1225.4,376.8],[1210.1,387.4],[1194.4,397.6],[1178.3,407.4],[1161.8,416.7],[1145.1,425.6],[1127.9,434],[1110.5,441.9],[1092.8,449.5],[1074.9,456.7],[1056.9,463.7],[1038.7,470.5],[1020.5,477.1],[1002.2,483.7],[983.9,490.2],[965.6,496.8],[947.4,503.3],[929,509.9],[910.7,516.3],[892.3,522.7],[873.9,528.9],[855.5,535.1],[837,541.3],[818.6,547.6],[800.2,553.8],[781.7,559.9],[763.2,565.9],[744.6,571.7],[726,577.3],[707.4,582.8],[688.8,588.1],[670.1,593.3],[651.4,598.3],[632.7,603.3],[614,608.2],[595.2,613.1],[576.5,617.9],[557.7,622.5],[538.9,626.8],[520.1,630.9],[501.3,634.6],[482.6,638.1],[463.8,641.3],[445,644.2],[426.3,646.9],[407.6,649.2],[389.1,651.1],[370.6,652.6],[352.2,653.4],[334.1,653.7],[316.2,653.2],[298.6,652.1],[281.4,650.1],[264.8,647.2],[248.7,643.4],[233.4,638.7],[219,632.9],[205.5,626.2],[193.1,618.5],[182,609.8],[172.1,600.3],[163.7,589.9],[156.7,578.8],[151.3,567.1],[147.3,554.7],[144.9,541.9],[143.9,528.8],[144.5,515.5],[146.3,502],[149.4,488.4],[153.6,474.9],[158.9,461.4],[164.5,448],[170,434.6],[174.9,421.2],[178.6,407.8],[181.1,394.4],[182.2,381],[182,367.8],[180.4,354.7],[177.4,341.9],[173,329.3],[167.3,317.1],[160.5,305.4],[152.5,294],[143.6,283],[133.7,272.5],[123.1,262.4],[111.7,252.8],[99.8,243.5],[87.2,234.7],[74,226.3],[60.4,218.5],[46.2,211.1],[31.5,204.2],[16.2,198],[0.6,192.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":16,"ty":4,"ln":"layer_16","sr":1,"ks":{"a":{"a":0,"k":[1294.53,249.38]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.2,12670.84]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface71","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3451,541.6],[3436.4,533.9],[3422,525.8],[3407.6,517.5],[3393.3,508.8],[3379.1,499.8],[3365.2,490.5],[3351.4,480.8],[3337.8,470.9],[3324.5,460.6],[3311.5,450],[3298.8,439.1],[3286.6,427.8],[3274.8,416.3],[3263.2,404.5],[3251.9,392.5],[3240.8,380.3],[3229.5,368.2],[3217.6,356.6],[3204.9,345.5],[3190.9,335.4],[3175.8,326.4],[3159.8,318.8],[3142.8,312.6],[3125.1,308.1],[3106.9,305.3],[3088.3,304.1],[3069.5,304.4],[3050.7,306.2],[3032,309.3],[3013.5,313.7],[2995.3,319.3],[2977.5,325.9],[2960.1,333.4],[2943.1,341.6],[2926.4,350.5],[2910,359.9],[2894,369.8],[2878.3,380],[2862.9,390.6],[2847.6,401.5],[2832.5,412.5],[2817.4,423.4],[2802.2,434.3],[2786.8,444.8],[2771.2,455.1],[2755.3,465],[2739.3,474.5],[2723,483.6],[2706.4,492.3],[2689.6,500.6],[2672.6,508.4],[2655.3,515.7],[2637.9,522.6],[2620.3,529.1],[2602.6,535.3],[2584.8,541.3],[2566.9,547],[2549,552.4],[2531,557.7],[2513,562.8],[2495,567.7],[2476.9,572.5],[2458.7,577.1],[2440.6,581.4],[2422.4,585.6],[2404.1,589.5],[2385.8,593],[2367.4,596.2],[2349,598.9],[2330.5,601.2],[2311.9,603.1],[2293.3,604.5],[2274.8,605.3],[2256.2,605.6],[2237.6,605.3],[2219,604.3],[2200.4,602.7],[2182,600.4],[2163.6,597.5],[2145.4,593.7],[2127.4,589.2],[2109.6,583.9],[2092.1,577.8],[2074.9,570.8],[2058.2,562.9],[2041.9,554.1],[2026.2,544.3],[2011.2,533.6],[1996.8,522],[1983.4,509.4],[1970.7,496],[1959.1,481.7],[1948.5,466.6],[1939,450.9],[1930.5,434.5],[1923.2,417.5],[1917,400.1],[1912,382.3],[1908,364.2],[1905.1,345.9],[1903.3,327.5],[1902.4,308.9],[1902.5,290.4],[1903.5,271.8],[1904.8,253.3],[1906.1,234.8],[1906.7,216.3],[1906.3,197.7],[1904.7,179.2],[1901.8,160.9],[1897.6,143],[1892,125.4],[1885.1,108.4],[1876.8,92.2],[1867.1,76.8],[1856.2,62.6],[1844.2,49.6],[1831,37.9],[1817,27.7],[1802.2,19.1],[1786.7,12.1],[1770.8,6.7],[1754.5,3.1],[1738.1,1.1],[1721.7,0.7],[1705.2,1.7],[1688.9,4.2],[1672.9,7.8],[1657,12.6],[1641.4,18.3],[1625.9,24.8],[1610.7,31.9],[1595.6,39.5],[1580.6,47.5],[1565.7,55.9],[1550.9,64.6],[1536.2,73.5],[1521.6,82.8],[1507,92.4],[1492.6,102.4],[1478.4,112.8],[1464.4,123.7],[1450.5,135.1],[1437.1,147.2],[1423.8,159.8],[1410.8,172.8],[1397.9,186.1],[1385.1,199.6],[1372.4,213.3],[1359.9,227.1],[1347.4,241.1],[1335.1,255.3],[1322.8,269.5],[1310.5,283.7],[1298.1,297.8],[1285.5,311.8],[1272.7,325.4],[1259.7,338.9],[1246.5,352],[1233,364.8],[1219.1,377.2],[1204.9,389.2],[1190.4,400.9],[1175.4,412],[1160.1,422.7],[1144.3,432.9],[1128.1,442.6],[1111.4,451.6],[1094.3,460.2],[1077,468.2],[1059.3,475.9],[1041.4,483.1],[1023.3,490.1],[1005.2,496.8],[986.9,503.4],[968.7,510],[950.4,516.4],[932.1,522.9],[913.7,529.3],[895.4,535.6],[877,541.9],[858.6,548.1],[840.1,554.3],[821.7,560.4],[784.7,572.4],[766.2,578.2],[747.7,583.9],[729.1,589.5],[710.5,595],[691.9,600.3],[673.2,605.5],[654.5,610.6],[635.8,615.5],[617.1,620.3],[598.4,625],[579.6,629.5],[560.9,633.9],[542.1,638],[523.3,641.9],[504.6,645.6],[485.8,649],[467.1,652.2],[448.3,655.2],[429.6,657.8],[411,660.1],[392.4,662],[374,663.4],[355.6,664.3],[337.5,664.5],[319.6,664],[302.1,662.8],[284.9,660.8],[268.3,658],[252.2,654.2],[236.9,649.5],[222.5,643.7],[209,637],[196.6,629.4],[185.4,620.7],[175.6,611.2],[167.1,600.9],[160,589.8],[154.5,578],[150.4,565.7],[147.8,553],[146.8,539.9],[147.1,526.6],[148.9,513.1],[151.8,499.6],[155.8,486],[160.8,472.5],[166.1,459.1],[171.4,445.7],[176,432.3],[179.3,418.8],[181.4,405.4],[182.2,392.1],[181.7,378.8],[179.9,365.8],[176.7,353],[172.3,340.5],[166.7,328.3],[160,316.5],[152.2,305.1],[143.4,294],[133.8,283.4],[123.4,273.2],[112.3,263.4],[100.5,254],[88,245.2],[74.9,236.8],[61.1,229],[46.8,221.8],[31.8,215.2],[16.4,209.3],[0.5,203.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":17,"ty":4,"ln":"layer_17","sr":1,"ks":{"a":{"a":0,"k":[1297.53,252.005]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.53,12673.2]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface76","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3459.1,551],[3444.7,543],[3430.4,534.6],[3416.2,525.9],[3402.1,516.9],[3388.2,507.6],[3374.5,498],[3360.9,488.1],[3347.6,477.8],[3334.5,467.3],[3321.7,456.5],[3309.2,445.4],[3297.1,434.1],[3285.4,422.5],[3274,410.6],[3262.8,398.6],[3251.6,386.6],[3240.4,374.4],[3228.8,362.5],[3216.7,351],[3203.6,340.3],[3189.4,330.5],[3174.1,321.8],[3157.8,314.4],[3140.8,308.5],[3123,304.2],[3104.7,301.5],[3086.1,300.4],[3067.3,300.7],[3048.6,302.6],[3029.9,305.8],[3011.4,310.2],[2993.2,315.8],[2975.4,322.4],[2958.1,329.9],[2941.1,338.2],[2924.4,347.2],[2908.2,356.6],[2892.3,366.6],[2876.7,376.9],[2861.3,387.6],[2846.2,398.5],[2831.1,409.6],[2816.1,420.6],[2800.9,431.4],[2785.5,441.9],[2769.7,452],[2753.8,461.8],[2737.7,471.2],[2721.3,480.3],[2704.8,488.9],[2688,497.2],[2671,505],[2653.8,512.4],[2636.4,519.4],[2618.9,526],[2601.2,532.2],[2583.4,538.1],[2565.5,543.7],[2547.6,549.1],[2529.6,554.4],[2511.7,559.6],[2493.7,564.7],[2475.7,569.6],[2457.6,574.3],[2439.5,578.8],[2421.3,583],[2403.1,586.9],[2384.8,590.4],[2366.4,593.5],[2348,596.3],[2329.5,598.6],[2311,600.4],[2292.5,601.9],[2273.9,602.8],[2255.3,603.2],[2236.7,602.9],[2218.2,602.1],[2199.6,600.5],[2181.2,598.3],[2162.8,595.3],[2144.6,591.6],[2126.7,587.1],[2108.9,581.8],[2091.4,575.7],[2074.2,568.8],[2057.4,560.9],[2041.1,552.2],[2025.3,542.6],[2010.2,532],[1995.8,520.5],[1982.2,508.2],[1969.4,494.9],[1957.6,480.8],[1946.8,465.9],[1937,450.3],[1928.3,434.1],[1920.8,417.2],[1914.4,399.9],[1909.1,382.2],[1905,364.1],[1901.9,345.9],[1899.9,327.5],[1898.9,309],[1898.8,290.4],[1899.6,271.9],[1900.8,253.4],[1901.9,234.9],[1902.4,216.4],[1901.8,197.9],[1900,179.4],[1896.9,161.2],[1892.6,143.2],[1886.8,125.7],[1879.8,108.8],[1871.4,92.7],[1861.7,77.4],[1850.8,63.2],[1838.7,50.2],[1825.5,38.6],[1811.5,28.4],[1796.7,19.8],[1781.2,12.8],[1765.2,7.5],[1749,3.8],[1732.6,1.8],[1716.2,1.3],[1699.8,2.3],[1683.5,4.6],[1667.4,8.2],[1651.5,12.9],[1635.9,18.5],[1620.4,24.8],[1605.1,31.7],[1589.9,39.2],[1574.9,47],[1559.9,55.2],[1545.1,63.7],[1530.2,72.4],[1515.5,81.4],[1500.9,90.7],[1486.3,100.4],[1472,110.5],[1457.7,121.1],[1443.8,132.2],[1430.1,144],[1416.7,156.3],[1403.6,169],[1390.6,182.1],[1377.7,195.5],[1365,209.2],[1352.5,223],[1340.1,237.1],[1327.9,251.4],[1315.7,265.9],[1303.6,280.3],[1291.4,294.7],[1279.1,308.9],[1266.6,323],[1254,336.8],[1241.1,350.5],[1228.1,363.8],[1214.8,376.9],[1201.2,389.7],[1187.3,402.1],[1172.9,414],[1158.2,425.4],[1143,436.3],[1127.3,446.6],[1111.1,456.4],[1094.5,465.5],[1077.5,474.2],[1060.1,482.3],[1042.5,489.9],[1024.6,497.2],[1006.5,504.1],[988.3,510.8],[970.1,517.4],[951.9,523.9],[933.5,530.3],[915.2,536.6],[896.8,543],[878.5,549.3],[841.7,561.7],[804.7,573.7],[767.7,585.3],[749.1,591],[730.6,596.6],[712,602.1],[693.4,607.5],[674.8,612.7],[656.1,617.8],[637.4,622.7],[618.7,627.4],[600,632],[581.2,636.4],[562.5,640.6],[543.7,644.6],[524.9,648.5],[506.2,652.1],[487.4,655.5],[468.7,658.7],[449.9,661.6],[431.3,664.3],[412.7,666.6],[394.1,668.5],[375.6,669.8],[357.3,670.7],[339.2,670.9],[321.3,670.4],[303.8,669.2],[286.6,667.2],[270,664.4],[254,660.6],[238.7,655.8],[224.2,650.1],[210.7,643.4],[198.3,635.8],[187.2,627.1],[177.3,617.6],[168.8,607.3],[161.7,596.2],[156.1,584.5],[152,572.2],[149.3,559.5],[148.2,546.4],[148.5,533.1],[150.1,519.7],[153,506.1],[156.9,492.6],[161.7,479.1],[167,465.6],[172.1,452.2],[176.4,438.8],[179.6,425.3],[181.6,411.9],[182.2,398.6],[181.6,385.4],[179.6,372.4],[176.4,359.6],[172,347.1],[166.5,334.9],[159.8,323],[152,311.6],[143.4,300.5],[133.9,289.8],[123.6,279.5],[112.5,269.7],[100.8,260.3],[88.3,251.5],[75.1,243.1],[61.3,235.4],[46.9,228.3],[31.9,221.8],[16.3,216],[0.4,210.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":18,"ty":4,"ln":"layer_18","sr":1,"ks":{"a":{"a":0,"k":[1293.03,256.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12678.26]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface81","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.5,221.8],[16.3,227.2],[31.8,233.1],[46.9,239.5],[61.4,246.5],[75.3,254.1],[88.6,262.3],[101.1,271.1],[112.9,280.5],[123.9,290.3],[134.1,300.7],[143.4,311.4],[151.9,322.5],[159.5,334],[166,345.9],[171.5,358.1],[175.9,370.7],[179.1,383.4],[181.1,396.4],[181.9,409.6],[181.5,422.9],[180,436.3],[177.2,449.8],[173.2,463.2],[168.6,476.6],[163.8,490.1],[159.3,503.6],[155.6,517.2],[152.9,530.7],[151.4,544.2],[151.1,557.5],[152.3,570.5],[155,583.2],[159.2,595.5],[164.9,607.2],[172,618.2],[180.6,628.5],[190.5,638],[201.8,646.6],[214.2,654.2],[227.7,660.8],[242.2,666.5],[257.5,671.2],[273.5,675],[290.2,677.8],[307.3,679.9],[324.9,681.1],[342.7,681.6],[360.7,681.4],[379,680.6],[397.4,679.3],[416,677.5],[434.6,675.3],[453.2,672.7],[471.9,669.8],[490.6,666.7],[509.4,663.3],[528.1,659.8],[546.8,656],[565.6,652.1],[584.3,648.1],[603,643.8],[621.8,639.4],[640.5,634.7],[659.1,629.8],[677.8,624.7],[696.4,619.5],[715,614.2],[733.6,608.8],[752.1,603.2],[770.7,597.6],[789.2,591.9],[807.7,586],[826.1,580.1],[844.6,574.1],[881.4,561.9],[899.8,555.6],[918.1,549.3],[936.4,543],[954.7,536.6],[972.9,529.9],[990.9,523],[1008.7,515.7],[1026.4,508],[1043.7,499.8],[1060.6,491.1],[1077.1,481.7],[1093.1,471.7],[1108.7,461],[1123.7,449.8],[1138.2,438],[1152.2,425.7],[1165.8,412.9],[1178.9,399.6],[1191.7,385.9],[1204.2,371.9],[1216.5,357.6],[1228.6,343.2],[1240.8,328.8],[1265,299.8],[1277.1,285.2],[1301.1,256],[1313.2,241.5],[1325.4,227.2],[1337.8,213.1],[1350.4,199.3],[1363.2,185.8],[1376.2,172.7],[1389.4,159.9],[1402.8,147.5],[1416.4,135.6],[1430.3,124.2],[1444.5,113.4],[1458.9,103.3],[1473.5,93.6],[1488.2,84.5],[1503.1,75.8],[1518.1,67.5],[1533.2,59.6],[1548.4,51.8],[1563.5,44.2],[1578.7,36.8],[1593.9,29.8],[1609.3,23.1],[1624.9,17.1],[1640.6,11.7],[1656.5,7.1],[1672.6,3.7],[1688.9,1.4],[1705.3,0.5],[1721.7,1.1],[1738.1,3.1],[1754.3,6.9],[1770.2,12.3],[1785.7,19.3],[1800.5,27.9],[1814.5,38],[1827.7,49.6],[1839.8,62.5],[1850.9,76.6],[1860.6,91.7],[1869.2,107.7],[1876.5,124.5],[1882.5,141.8],[1887.1,159.6],[1890.5,177.8],[1892.6,196.1],[1893.6,214.6],[1893.4,233.1],[1892.7,251.6],[1891.8,270.1],[1891.3,288.6],[1891.7,307.1],[1893.1,325.5],[1895.5,343.9],[1899,362],[1903.5,379.9],[1909.3,397.4],[1916.1,414.5],[1924.1,431.1],[1933.2,447.1],[1943.4,462.4],[1954.6,476.9],[1966.8,490.6],[1979.9,503.5],[1993.7,515.6],[2008.4,526.7],[2023.7,537],[2039.5,546.4],[2055.9,555],[2072.7,562.7],[2089.9,569.5],[2107.4,575.5],[2125.1,580.7],[2143.1,585.2],[2161.3,588.8],[2179.6,591.7],[2198,593.9],[2216.5,595.4],[2235.1,596.2],[2253.6,596.4],[2272.2,595.9],[2290.7,594.9],[2309.2,593.5],[2327.7,591.5],[2346.1,589.1],[2364.5,586.3],[2382.8,583.1],[2401.1,579.6],[2419.2,575.6],[2437.4,571.4],[2455.4,566.8],[2473.4,562],[2491.3,556.9],[2509.2,551.6],[2527.1,546.2],[2545,540.8],[2562.8,535.3],[2580.6,529.5],[2598.3,523.6],[2615.9,517.3],[2633.4,510.7],[2650.8,503.8],[2668,496.4],[2685,488.6],[2701.7,480.4],[2718.3,471.9],[2734.7,462.9],[2750.9,453.6],[2766.9,444],[2782.6,434],[2798.1,423.7],[2813.3,413],[2828.4,402],[2843.4,390.9],[2858.4,379.9],[2873.5,369],[2888.9,358.4],[2904.6,348.2],[2920.7,338.5],[2937.1,329.3],[2954,320.9],[2971.3,313.3],[2989,306.6],[3007.2,301.1],[3025.6,296.6],[3044.3,293.5],[3063,291.6],[3081.8,291.1],[3100.4,292.1],[3118.7,294.5],[3136.6,298.4],[3153.9,303.9],[3170.4,310.7],[3186.2,318.8],[3201,328],[3214.7,338.2],[3227.6,349.1],[3239.8,360.6],[3251.4,372.4],[3262.7,384.4],[3273.8,396.5],[3284.8,408.5],[3295.9,420.6],[3307.2,432.5],[3318.7,444.3],[3330.5,455.9],[3342.5,467.3],[3354.9,478.5],[3367.5,489.4],[3380.3,500.1],[3393.4,510.5],[3406.7,520.7],[3420.2,530.5],[3433.8,540.1],[3447.6,549.5]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":19,"ty":4,"ln":"layer_19","sr":1,"ks":{"a":{"a":0,"k":[1295.28,253.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.2,12675.56]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface86","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3453.1,550.9],[3439,542.2],[3425,533.2],[3411.1,523.9],[3397.4,514.3],[3383.9,504.4],[3370.5,494.2],[3357.5,483.7],[3344.6,472.9],[3332.1,461.9],[3319.8,450.7],[3307.8,439.2],[3296.2,427.5],[3284.8,415.6],[3273.7,403.6],[3262.6,391.6],[3251.5,379.5],[3240.1,367.5],[3228.3,355.8],[3215.7,344.6],[3202.3,334.1],[3187.8,324.6],[3172.3,316.2],[3155.9,309.1],[3138.7,303.4],[3120.9,299.3],[3102.6,296.8],[3084,295.7],[3065.2,296.1],[3046.4,298],[3027.7,301.2],[3009.3,305.6],[2991.1,311.2],[2973.4,317.8],[2956,325.4],[2939.1,333.8],[2922.5,342.8],[2906.4,352.4],[2890.6,362.5],[2875,372.9],[2859.8,383.7],[2844.7,394.7],[2829.8,405.8],[2814.7,416.8],[2799.5,427.6],[2784,438],[2768.3,448],[2752.3,457.7],[2736.1,467],[2719.7,476],[2703.2,484.6],[2686.5,492.9],[2669.5,500.7],[2652.3,508.1],[2635,515.2],[2617.4,521.8],[2599.8,528],[2582,533.9],[2564.2,539.5],[2546.3,544.9],[2528.3,550.2],[2510.4,555.5],[2492.5,560.7],[2474.6,565.8],[2456.5,570.6],[2438.5,575.2],[2420.3,579.4],[2402.1,583.3],[2383.8,586.8],[2365.5,589.9],[2347.1,592.6],[2328.6,595],[2310.1,596.9],[2291.6,598.3],[2273,599.3],[2254.5,599.7],[2235.9,599.6],[2217.3,598.7],[2198.8,597.2],[2180.4,595],[2162.1,592.1],[2143.9,588.4],[2125.9,583.9],[2108.1,578.7],[2090.6,572.6],[2073.4,565.7],[2056.7,558],[2040.3,549.3],[2024.5,539.8],[2009.3,529.4],[1994.7,518.1],[1981,505.9],[1968,492.8],[1956.1,478.9],[1945,464.2],[1935,448.7],[1926.2,432.6],[1918.4,415.9],[1911.8,398.7],[1906.4,381],[1902,363.1],[1898.7,344.9],[1896.5,326.5],[1895.3,308],[1895.1,289.5],[1895.7,271],[1896.8,252.5],[1897.7,234],[1898,215.5],[1897.2,197],[1895.2,178.6],[1892,160.4],[1887.5,142.5],[1881.7,125.1],[1874.5,108.2],[1866,92.2],[1856.3,77],[1845.3,62.9],[1833.2,49.9],[1820,38.3],[1806,28.2],[1791.1,19.6],[1775.7,12.6],[1759.8,7.2],[1743.6,3.5],[1727.2,1.4],[1710.7,0.9],[1694.3,1.9],[1678,4.1],[1661.9,7.7],[1646.1,12.2],[1630.4,17.7],[1614.9,23.9],[1599.5,30.7],[1584.3,37.9],[1569.2,45.6],[1554.2,53.5],[1539.2,61.7],[1524.2,70.1],[1509.4,78.8],[1494.6,87.8],[1480,97.2],[1465.5,107],[1451.1,117.4],[1437.1,128.2],[1423.2,139.8],[1409.7,151.8],[1396.4,164.4],[1383.3,177.3],[1370.4,190.6],[1357.6,204.1],[1345.1,218],[1332.7,232.1],[1320.5,246.4],[1308.4,261],[1296.4,275.6],[1284.4,290.1],[1272.2,304.6],[1260,318.9],[1247.6,333.1],[1235.2,347.2],[1222.6,361.1],[1209.8,374.8],[1196.8,388.2],[1183.5,401.3],[1169.7,413.9],[1155.6,426.1],[1141,437.7],[1125.9,448.7],[1110.3,459.2],[1094.1,469.1],[1077.5,478.3],[1060.6,487],[1043.2,495.2],[1025.6,502.9],[1007.7,510.1],[989.7,517.1],[971.5,523.8],[953.3,530.3],[935,536.6],[916.7,543],[898.3,549.3],[879.9,555.6],[861.5,561.8],[843.1,568],[824.7,574],[806.2,579.9],[787.7,585.7],[769.2,591.4],[750.6,597.1],[732.1,602.7],[694.9,613.5],[676.3,618.8],[657.6,623.9],[639,628.8],[620.3,633.5],[601.5,638],[582.8,642.3],[564,646.4],[545.3,650.3],[526.5,654],[507.8,657.6],[489,661],[470.3,664.2],[451.6,667.1],[432.9,669.8],[414.3,672.1],[395.7,673.9],[377.3,675.3],[359,676.1],[340.9,676.3],[323.1,675.8],[305.6,674.6],[288.4,672.6],[271.8,669.7],[255.7,665.9],[240.4,661.2],[226,655.5],[212.5,648.8],[200.1,641.2],[188.9,632.6],[179,623.1],[170.4,612.8],[163.3,601.7],[157.7,590],[153.5,577.7],[150.8,565],[149.6,552],[149.9,538.7],[151.5,525.2],[154.3,511.7],[158.1,498.1],[162.7,484.6],[167.8,471.1],[172.7,457.7],[176.9,444.3],[179.8,430.8],[181.6,417.4],[182.1,404.1],[181.4,390.9],[179.3,377.9],[176.1,365.1],[171.7,352.6],[166.2,340.4],[159.6,328.5],[152,317.1],[143.4,305.9],[134,295.2],[123.8,284.9],[112.8,275.1],[101,265.7],[88.5,256.8],[75.3,248.6],[61.4,240.9],[46.9,233.8],[31.9,227.4],[16.3,221.7],[0.4,216.4]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":20,"ty":4,"ln":"layer_20","sr":1,"ks":{"a":{"a":0,"k":[1296.405,258.38]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12680.28]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface91","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3456.2,557.5],[3442.7,547.9],[3429.3,538],[3416.1,527.9],[3403.1,517.5],[3390.2,506.9],[3377.6,496],[3365.2,484.9],[3353,473.6],[3341.2,462.1],[3329.6,450.3],[3318.3,438.5],[3307.2,426.4],[3296.2,414.4],[3285.2,402.3],[3274.2,390.2],[3262.9,378.2],[3251.4,366.4],[3239.4,354.8],[3226.9,343.5],[3213.6,332.9],[3199.6,323],[3184.5,314.1],[3168.6,306.3],[3151.9,299.7],[3134.5,294.5],[3116.6,290.7],[3098.3,288.4],[3079.7,287.5],[3060.9,288],[3042.1,289.9],[3023.5,293.1],[3005.1,297.5],[2987,303.1],[2969.3,309.7],[2952,317.4],[2935.2,325.9],[2918.8,335.2],[2902.9,345.1],[2887.4,355.5],[2872.1,366.2],[2857,377.2],[2827,399.2],[2812,410.1],[2796.7,420.7],[2781.2,431],[2765.4,441],[2749.5,450.6],[2733.3,459.9],[2716.9,468.7],[2700.3,477.2],[2683.4,485.4],[2666.4,493],[2649.2,500.3],[2631.9,507.2],[2614.4,513.7],[2596.8,520],[2579.2,526.1],[2561.5,532],[2543.8,537.8],[2525.9,543.3],[2508.1,548.8],[2490.2,554],[2472.3,559.1],[2454.3,563.9],[2436.2,568.4],[2418.1,572.7],[2400,576.7],[2381.8,580.3],[2363.5,583.7],[2345.1,586.6],[2326.7,589.1],[2308.3,591.2],[2289.8,592.7],[2271.3,593.6],[2252.8,594],[2234.2,593.8],[2215.7,593],[2197.2,591.6],[2178.8,589.4],[2160.5,586.5],[2142.4,582.9],[2124.4,578.5],[2106.6,573.4],[2089.1,567.4],[2071.9,560.6],[2055.1,553],[2038.7,544.5],[2022.8,535.2],[2007.5,525.1],[1992.7,514],[1978.7,502.2],[1965.5,489.5],[1953.1,475.9],[1941.7,461.5],[1931.3,446.4],[1922,430.6],[1913.8,414.2],[1906.7,397.2],[1900.8,379.7],[1896,361.9],[1892.3,343.9],[1889.7,325.6],[1888.1,307.2],[1887.4,288.7],[1887.8,270.2],[1888.5,251.7],[1889.1,233.2],[1889.1,214.8],[1888,196.3],[1885.7,178],[1882.1,159.9],[1877.3,142.1],[1871.2,124.8],[1863.9,108.1],[1855.2,92.2],[1845.4,77.1],[1834.3,63.1],[1822.2,50.3],[1809.1,38.7],[1795,28.6],[1780.2,20],[1764.8,13],[1748.9,7.6],[1732.7,3.8],[1716.3,1.7],[1699.9,1.1],[1683.5,2],[1667.2,4.2],[1651.1,7.6],[1635.2,12.1],[1619.4,17.4],[1603.8,23.4],[1588.4,29.9],[1573,36.7],[1557.8,43.7],[1527.2,58.3],[1512,65.8],[1496.8,73.6],[1481.8,82],[1466.9,90.9],[1452.3,100.5],[1437.9,110.6],[1423.7,121.4],[1409.8,132.7],[1396.1,144.5],[1382.6,156.8],[1369.4,169.5],[1356.3,182.6],[1343.4,195.9],[1330.8,209.6],[1318.3,223.6],[1306,237.8],[1293.8,252.2],[1281.7,266.7],[1269.7,281.3],[1233.7,325.1],[1221.8,339.8],[1209.9,354.6],[1198,369.3],[1185.9,383.8],[1173.7,398.1],[1161,412],[1148,425.4],[1134.6,438.4],[1120.7,450.9],[1106.3,462.9],[1091.4,474.3],[1076,485.1],[1060.1,495.3],[1043.7,504.8],[1026.8,513.6],[1009.5,521.8],[991.9,529.5],[974,536.8],[956,543.7],[937.8,550.3],[919.5,556.6],[901.2,562.9],[882.8,569.1],[864.4,575.1],[846,581.2],[827.6,587.2],[790.6,599],[772.1,604.8],[753.6,610.4],[735,615.9],[716.4,621.2],[697.9,626.5],[679.3,631.6],[660.6,636.6],[642,641.5],[623.3,646.1],[604.6,650.6],[585.8,654.9],[567.1,658.9],[548.4,662.8],[529.6,666.6],[510.9,670.1],[492.2,673.4],[473.5,676.5],[454.8,679.3],[436.2,681.9],[417.6,684],[399.1,685.8],[380.7,687],[362.5,687.7],[344.4,687.9],[326.6,687.4],[309.1,686.1],[292,684.1],[275.3,681.3],[259.3,677.5],[244,672.8],[229.5,667.2],[215.9,660.5],[203.5,652.9],[192.2,644.4],[182.3,634.9],[173.6,624.7],[166.4,613.7],[160.7,602],[156.5,589.7],[153.8,577],[152.6,563.9],[152.9,550.6],[154.4,537.2],[157,523.7],[160.6,510.1],[164.8,496.6],[169.4,483.1],[173.7,469.7],[177.4,456.3],[180,442.8],[181.4,429.4],[181.7,416.1],[180.9,402.9],[178.8,389.9],[175.6,377.2],[171.3,364.7],[165.9,352.4],[159.4,340.5],[152,329],[143.5,317.8],[134.1,307.1],[123.9,296.8],[112.9,287],[101.1,277.6],[88.5,268.9],[75.2,260.7],[61.2,253.1],[46.7,246.1],[31.7,239.6],[16.3,233.7],[0.7,228]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":21,"ty":4,"ln":"layer_21","sr":1,"ks":{"a":{"a":0,"k":[1294.53,260.255]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.53,12682.64]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface96","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3451.6,554.5],[3438.5,544.4],[3425.6,534],[3412.8,523.3],[3400.2,512.5],[3387.8,501.4],[3375.6,490.2],[3363.7,478.8],[3352,467.2],[3340.5,455.4],[3329.4,443.4],[3318.4,431.3],[3307.6,419.2],[3296.7,407],[3285.7,394.9],[3274.5,382.9],[3263.1,371.1],[3251.2,359.4],[3238.9,348],[3226,337],[3212.4,326.6],[3198,317.1],[3182.8,308.4],[3166.7,300.9],[3149.8,294.6],[3132.4,289.6],[3114.4,285.9],[3096.1,283.7],[3077.5,282.9],[3058.8,283.4],[3040,285.3],[3021.4,288.5],[3003,292.9],[2984.9,298.5],[2967.2,305.2],[2950,312.9],[2933.2,321.5],[2916.9,330.9],[2901.2,341],[2885.8,351.6],[2870.7,362.5],[2825.7,395.5],[2810.6,406.3],[2795.3,416.8],[2779.8,427],[2764,437],[2748.1,446.5],[2731.8,455.8],[2715.4,464.6],[2698.8,473],[2681.9,481],[2664.9,488.6],[2647.7,495.8],[2630.3,502.6],[2612.8,509.1],[2595.3,515.5],[2577.8,521.7],[2560.2,527.9],[2542.5,533.8],[2524.8,539.5],[2506.9,544.9],[2489,550.1],[2471.1,555],[2453.1,559.7],[2435,564.2],[2416.9,568.5],[2398.8,572.6],[2380.7,576.4],[2362.4,579.9],[2344.1,583],[2325.8,585.7],[2307.4,587.9],[2289,589.4],[2270.4,590.4],[2251.9,590.8],[2233.4,590.6],[2214.9,589.7],[2196.4,588.3],[2178.1,586.1],[2159.8,583.2],[2141.6,579.7],[2123.6,575.3],[2105.9,570.2],[2088.4,564.3],[2071.2,557.5],[2054.4,550],[2037.9,541.6],[2022,532.4],[2006.6,522.3],[1991.8,511.5],[1977.6,499.8],[1964.3,487.2],[1951.7,473.8],[1940.1,459.6],[1929.5,444.7],[1919.9,429.1],[1911.5,412.8],[1904.2,395.9],[1898,378.6],[1893,360.8],[1889,342.8],[1886.2,324.6],[1884.4,306.2],[1883.6,287.8],[1883.7,269.3],[1884.3,250.8],[1884.7,232.4],[1884.6,213.9],[1883.3,195.5],[1880.8,177.2],[1877.1,159.1],[1872.2,141.5],[1866,124.2],[1858.5,107.6],[1849.9,91.7],[1839.9,76.7],[1828.9,62.7],[1816.7,49.9],[1803.6,38.4],[1789.6,28.2],[1774.8,19.6],[1759.4,12.6],[1743.5,7.2],[1727.3,3.4],[1710.9,1.3],[1694.5,0.7],[1678,1.6],[1661.7,3.8],[1645.6,7.2],[1629.7,11.6],[1614,16.8],[1598.3,22.6],[1582.8,28.9],[1567.4,35.4],[1552,42.1],[1536.7,49],[1521.2,55.9],[1505.9,63],[1490.6,70.5],[1475.5,78.5],[1460.6,87.4],[1445.9,97],[1431.5,107.2],[1417.4,118],[1403.4,129.3],[1389.7,141.1],[1376.2,153.3],[1362.9,165.9],[1349.8,178.9],[1336.8,192.1],[1324.1,205.7],[1311.5,219.5],[1299.1,233.5],[1286.8,247.8],[1274.6,262.1],[1262.4,276.6],[1250.4,291.1],[1238.3,305.7],[1226.4,320.4],[1214.7,335.2],[1203,350.3],[1191.4,365.3],[1179.7,380.3],[1167.9,395],[1155.7,409.3],[1143.1,423.3],[1130.3,436.9],[1117,450.1],[1103.3,462.8],[1089.1,475.1],[1074.3,486.7],[1059.1,497.7],[1043.2,507.9],[1026.8,517.4],[1009.9,526.3],[992.7,534.5],[975,542.2],[957.1,549.4],[939.1,556.3],[920.9,562.8],[902.6,569.1],[884.2,575.2],[865.8,581.2],[847.4,587.2],[828.9,593.2],[810.5,599.2],[792.1,605.1],[773.6,610.9],[755.1,616.5],[736.5,621.9],[717.9,627.2],[699.3,632.4],[680.7,637.5],[662.1,642.4],[643.4,647.2],[624.8,651.8],[606.1,656.3],[587.4,660.6],[568.6,664.7],[549.9,668.7],[531.2,672.4],[512.5,675.9],[493.8,679.2],[475.1,682.2],[456.4,685],[437.8,687.4],[419.3,689.5],[400.8,691.2],[382.4,692.4],[364.2,693.1],[346.2,693.2],[328.3,692.7],[310.9,691.4],[293.7,689.4],[277.1,686.6],[261.1,682.8],[245.8,678.1],[231.2,672.5],[217.7,665.9],[205.2,658.3],[193.9,649.8],[183.9,640.3],[175.2,630.1],[168,619.1],[162.3,607.4],[158.1,595.2],[155.3,582.4],[154.1,569.4],[154.3,556.1],[155.8,542.7],[158.3,529.1],[161.7,515.6],[165.8,502.1],[170.1,488.6],[174.1,475.2],[177.6,461.7],[180,448.3],[181.3,434.9],[181.5,421.6],[180.6,408.4],[178.6,395.5],[175.4,382.7],[171.1,370.2],[165.8,357.9],[159.4,346],[151.9,334.5],[143.5,323.3],[134.1,312.6],[123.9,302.3],[112.8,292.5],[100.9,283.2],[88.3,274.5],[74.9,266.4],[61,258.8],[46.5,251.7],[31.6,245.1],[16.5,238.9],[1.1,232.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":22,"ty":4,"ln":"layer_22","sr":1,"ks":{"a":{"a":0,"k":[1291.53,264.755]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.53,12687.36]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface101","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.6,242.7],[15.3,249.5],[29.9,256.4],[44.3,263.5],[58.5,270.9],[72.3,278.6],[85.6,286.8],[98.2,295.5],[110.2,304.7],[121.4,314.5],[131.7,324.7],[141.1,335.4],[149.6,346.6],[157,358.1],[163.5,370],[168.8,382.2],[173.1,394.7],[176.3,407.5],[178.4,420.5],[179.3,433.6],[179.1,446.9],[178,460.3],[175.8,473.7],[172.6,487.1],[168.9,500.6],[165,514.1],[161.4,527.6],[158.4,541.1],[156.1,554.6],[154.9,568],[155,581.3],[156.4,594.3],[159.3,606.9],[163.6,619.2],[169.4,630.8],[176.6,641.8],[185.4,652],[195.4,661.5],[206.7,670],[219.2,677.6],[232.7,684.2],[247.2,689.9],[262.5,694.6],[278.5,698.3],[295.2,701.2],[312.2,703.2],[329.7,704.4],[347.5,705],[365.5,704.9],[383.7,704.2],[402.1,703],[420.5,701.4],[439.1,699.4],[457.7,697.1],[476.3,694.4],[494.9,691.5],[513.6,688.3],[532.3,684.8],[551,681.1],[569.7,677.2],[588.4,673.1],[607.1,668.8],[625.7,664.4],[644.4,659.8],[663,655.1],[681.6,650.2],[700.2,645.2],[718.8,640.1],[737.4,634.8],[774.4,623.8],[792.9,618],[811.3,612.2],[829.7,606.3],[848.2,600.3],[866.5,594.4],[884.9,588.3],[903.1,582],[921.3,575.4],[939.2,568.3],[956.8,560.6],[974.1,552.4],[991,543.5],[1007.3,533.9],[1023.1,523.5],[1038.3,512.4],[1052.8,500.5],[1066.7,487.9],[1080,474.7],[1092.8,460.9],[1105.2,446.8],[1117.4,432.5],[1129.4,418],[1141.2,403.2],[1152.8,388.2],[1164.3,373.1],[1175.7,357.8],[1187.1,342.6],[1198.7,327.6],[1210.5,312.8],[1222.5,298.2],[1234.7,283.9],[1247,269.7],[1259.4,255.7],[1272,241.8],[1284.7,228.1],[1297.5,214.5],[1310.4,201.2],[1323.4,188],[1336.5,175.1],[1349.8,162.4],[1363.2,150],[1376.7,137.9],[1390.4,126.1],[1404.2,114.7],[1418.2,103.6],[1432.4,93.1],[1446.8,83.2],[1461.5,74.1],[1476.6,65.9],[1491.9,58.5],[1507.3,51.6],[1522.9,45.2],[1538.5,39],[1554,33],[1569.7,27.2],[1585.3,21.7],[1601,16.4],[1616.9,11.5],[1632.8,7.3],[1649,4],[1665.3,1.9],[1681.7,1.1],[1698.1,1.7],[1714.5,3.8],[1730.6,7.6],[1746.6,12.9],[1762,19.9],[1776.8,28.5],[1790.7,38.6],[1803.9,50.1],[1816.1,62.9],[1827.2,76.8],[1837.1,91.7],[1845.9,107.5],[1853.5,124],[1859.8,141.1],[1865,158.7],[1868.9,176.7],[1871.7,194.9],[1873.3,213.3],[1873.9,231.7],[1873.9,250.1],[1873.8,268.6],[1874.1,287],[1875.3,305.4],[1877.5,323.7],[1880.7,341.8],[1885.1,359.6],[1890.6,377.2],[1897.2,394.3],[1905,410.9],[1913.9,426.9],[1923.9,442.2],[1935,456.8],[1947,470.6],[1959.9,483.6],[1973.5,495.8],[1987.9,507.1],[2002.9,517.7],[2018.5,527.5],[2034.5,536.5],[2050.9,544.7],[2067.8,552.2],[2085,558.8],[2102.4,564.7],[2120.2,569.8],[2138.1,574.2],[2156.3,577.8],[2174.5,580.7],[2192.8,582.9],[2211.2,584.5],[2229.7,585.3],[2248.2,585.5],[2266.7,585.1],[2285.1,583.9],[2303.5,582],[2321.8,579.3],[2340,576.1],[2358.1,572.4],[2376.2,568.5],[2394.3,564.4],[2412.3,560.2],[2430.4,556],[2448.4,551.6],[2484.4,542.4],[2502.4,537.4],[2520.2,532.2],[2537.9,526.5],[2555.5,520.5],[2573.1,514.3],[2590.5,507.9],[2607.9,501.4],[2625.2,494.7],[2642.5,487.8],[2659.6,480.6],[2676.7,473],[2693.5,465.1],[2710.2,456.8],[2726.7,448.2],[2743,439.1],[2759,429.7],[2774.8,420],[2790.4,409.9],[2805.8,399.5],[2820.9,388.8],[2836,377.9],[2850.9,366.9],[2865.7,355.7],[2880.7,344.7],[2895.9,333.9],[2911.4,323.6],[2927.5,314],[2944.1,305.2],[2961.2,297.3],[2978.8,290.5],[2996.8,284.8],[3015.2,280.3],[3033.8,277],[3052.5,275.1],[3071.2,274.5],[3089.8,275.3],[3108.1,277.4],[3126.1,280.8],[3143.6,285.5],[3160.6,291.5],[3177,298.6],[3192.6,306.7],[3207.5,315.8],[3221.6,325.6],[3235.2,336.1],[3248.1,347],[3260.6,358.3],[3272.7,369.8],[3284.3,381.5],[3295.6,393.5],[3306.6,405.5],[3317.4,417.7],[3328.1,429.9],[3338.8,442.1],[3349.8,454.2],[3360.8,466.2],[3372,478.1],[3383.4,489.9],[3394.9,501.6],[3406.6,513.1],[3418.4,524.5],[3430.5,535.8],[3442.7,546.8]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":23,"ty":4,"ln":"layer_23","sr":1,"ks":{"a":{"a":0,"k":[1293.03,262.505]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.53,12684.66]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface106","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.8,551.6],[3434.1,541],[3421.6,530.1],[3409.3,519],[3397.2,507.8],[3385.2,496.4],[3373.5,484.8],[3361.9,473.1],[3350.5,461.3],[3339.4,449.3],[3328.6,437.2],[3317.8,425],[3307.1,412.8],[3296.3,400.7],[3285.2,388.7],[3273.8,376.8],[3262,365.1],[3249.8,353.6],[3237.2,342.5],[3223.9,331.7],[3210,321.6],[3195.4,312.3],[3179.9,303.9],[3163.7,296.6],[3146.8,290.5],[3129.3,285.7],[3111.3,282.2],[3092.9,280],[3074.3,279.3],[3055.6,279.8],[3036.9,281.7],[3018.3,284.9],[2999.9,289.4],[2981.8,295],[2964.2,301.7],[2947,309.5],[2930.3,318.2],[2914.2,327.7],[2898.5,337.9],[2883.3,348.6],[2868.2,359.6],[2853.3,370.8],[2838.4,381.8],[2823.3,392.7],[2808.2,403.4],[2792.8,413.9],[2777.3,424],[2761.5,433.9],[2745.6,443.4],[2729.3,452.5],[2712.9,461.3],[2696.2,469.7],[2679.3,477.6],[2662.3,485.2],[2645.1,492.3],[2627.8,499.1],[2610.3,505.7],[2592.9,512.1],[2575.4,518.4],[2557.8,524.7],[2540.2,530.7],[2522.5,536.4],[2504.7,541.8],[2486.8,546.9],[2468.8,551.7],[2450.8,556.3],[2432.7,560.8],[2414.7,565.1],[2396.6,569.2],[2378.5,573.1],[2360.3,576.8],[2342.1,580.2],[2323.8,583.1],[2305.4,585.5],[2287,587.2],[2268.6,588.2],[2250.1,588.6],[2231.6,588.4],[2213.1,587.5],[2194.6,586],[2176.3,583.9],[2158,581],[2139.9,577.4],[2121.9,573.1],[2104.1,568],[2086.7,562.1],[2069.5,555.4],[2052.6,547.9],[2036.2,539.6],[2020.2,530.5],[2004.7,520.6],[1989.8,509.8],[1975.6,498.3],[1962.1,485.9],[1949.4,472.7],[1937.5,458.7],[1926.7,444],[1916.9,428.5],[1908.2,412.3],[1900.7,395.6],[1894.3,378.4],[1889,360.7],[1884.9,342.8],[1881.8,324.7],[1879.8,306.3],[1878.8,287.9],[1878.7,269.4],[1879.1,251],[1879.3,232.5],[1879,214.1],[1877.5,195.7],[1874.9,177.4],[1871.1,159.4],[1866,141.8],[1859.7,124.6],[1852.2,108],[1843.5,92.2],[1833.5,77.3],[1822.4,63.3],[1810.3,50.5],[1797.1,39],[1783.2,28.9],[1768.4,20.3],[1753,13.3],[1737.1,7.9],[1720.9,4.1],[1704.5,2],[1688.1,1.4],[1671.6,2.2],[1655.3,4.4],[1639.2,7.7],[1623.3,12.1],[1607.5,17.1],[1591.8,22.7],[1576.2,28.7],[1560.7,34.8],[1545.3,41.2],[1529.8,47.7],[1514.3,54.3],[1498.8,61.2],[1483.5,68.5],[1468.3,76.5],[1453.5,85.4],[1438.9,95.1],[1424.6,105.4],[1410.5,116.3],[1396.6,127.7],[1382.9,139.5],[1369.4,151.7],[1356,164.2],[1342.8,177],[1329.8,190.1],[1316.9,203.5],[1304.2,217.1],[1291.6,230.9],[1279.1,244.9],[1266.7,259],[1254.5,273.3],[1242.3,287.7],[1230.2,302.2],[1218.3,316.9],[1206.6,331.8],[1195.1,346.9],[1183.6,362.1],[1172.1,377.3],[1160.5,392.3],[1148.7,407],[1136.6,421.5],[1124.2,435.6],[1111.5,449.4],[1098.4,462.8],[1084.9,475.8],[1070.9,488.3],[1056.3,500.1],[1041.1,511.1],[1025.3,521.4],[1008.9,531],[992,539.9],[974.7,548.1],[957.1,555.8],[939.2,563],[921.1,569.7],[902.9,576.1],[884.6,582.3],[866.2,588.3],[847.8,594.2],[829.3,600.2],[810.9,606.2],[792.5,612.1],[774,617.9],[755.5,623.5],[737,628.9],[718.4,634.2],[699.8,639.3],[681.2,644.3],[662.5,649.2],[643.9,653.9],[625.2,658.6],[606.6,663],[587.9,667.4],[569.1,671.5],[550.4,675.4],[531.8,679.2],[513.1,682.6],[494.4,685.9],[475.7,688.9],[457.1,691.6],[438.5,693.9],[419.9,696],[401.4,697.6],[383.1,698.8],[364.9,699.5],[346.9,699.5],[329.1,699],[311.6,697.8],[294.5,695.7],[277.9,692.9],[261.8,689.2],[246.5,684.5],[232,678.8],[218.4,672.2],[205.9,664.7],[194.6,656.1],[184.6,646.7],[175.9,636.5],[168.7,625.5],[162.9,613.8],[158.6,601.6],[155.8,588.9],[154.5,575.8],[154.7,562.6],[156,549.1],[158.5,535.6],[161.7,522.1],[165.5,508.6],[169.6,495.1],[173.4,481.7],[176.7,468.2],[178.9,454.8],[180.2,441.4],[180.4,428.1],[179.5,415],[177.4,402],[174.2,389.2],[170,376.7],[164.6,364.5],[158.2,352.6],[150.8,341],[142.4,329.9],[133,319.1],[122.7,308.9],[111.6,299.1],[99.6,289.8],[87,281.1],[73.6,273],[59.7,265.4],[45.4,258.2],[30.7,251.4],[15.8,244.9],[0.7,238.4]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":24,"ty":4,"ln":"layer_24","sr":1,"ks":{"a":{"a":0,"k":[1295.655,266.63]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12796.54,12689.72]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface111","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3454.4,541.3],[3442.6,529.9],[3431,518.4],[3419.5,506.7],[3408.3,494.9],[3397.2,483],[3386.1,471],[3375.2,459],[3364.3,446.9],[3353.5,434.7],[3342.8,422.6],[3332,410.4],[3321,398.3],[3309.8,386.4],[3298.2,374.6],[3286.3,363],[3274,351.6],[3261.2,340.6],[3247.9,329.9],[3234.1,319.7],[3219.7,310.1],[3204.7,301.2],[3188.9,293.3],[3172.5,286.4],[3155.5,280.5],[3138,275.9],[3119.9,272.5],[3101.6,270.5],[3083,269.7],[3064.4,270.3],[3045.7,272.3],[3027.1,275.6],[3008.8,280.2],[2990.8,286],[2973.3,293],[2956.3,301],[2939.7,309.9],[2923.7,319.6],[2908.2,329.9],[2893.1,340.7],[2878.2,351.8],[2863.4,362.9],[2848.5,374],[2833.5,384.9],[2818.3,395.6],[2803,405.9],[2787.3,415.9],[2771.5,425.5],[2755.3,434.8],[2739,443.7],[2722.5,452.2],[2705.8,460.4],[2688.9,468.3],[2672,475.9],[2654.9,483.3],[2637.8,490.4],[2620.5,497.2],[2603.2,503.8],[2585.8,510.2],[2568.2,516.4],[2550.6,522.3],[2532.9,527.8],[2515,532.9],[2497,537.7],[2479,542.3],[2461,546.7],[2443,551.1],[2425,555.4],[2406.9,559.6],[2389,563.8],[2370.9,567.9],[2352.8,571.8],[2334.7,575.3],[2316.5,578.3],[2298.2,580.4],[2279.8,581.8],[2261.3,582.4],[2242.8,582.3],[2224.4,581.5],[2206,579.9],[2187.7,577.7],[2169.5,574.7],[2151.4,571],[2133.5,566.6],[2115.8,561.5],[2098.3,555.6],[2081.1,548.9],[2064.3,541.5],[2047.8,533.4],[2031.7,524.5],[2016.1,514.8],[2001.1,504.4],[1986.6,493.2],[1972.8,481.2],[1959.7,468.4],[1947.5,454.8],[1936.2,440.4],[1926,425.3],[1916.8,409.4],[1908.8,393],[1901.9,376],[1896.2,358.5],[1891.6,340.8],[1888.2,322.7],[1885.8,304.5],[1884.4,286.1],[1883.8,267.7],[1883.7,249.3],[1883.5,230.8],[1882.7,212.4],[1880.8,194.1],[1877.9,176],[1873.8,158],[1868.6,140.5],[1862.2,123.4],[1854.6,106.9],[1845.7,91.2],[1835.8,76.3],[1824.7,62.4],[1812.5,49.7],[1799.4,38.2],[1785.3,28.1],[1770.5,19.6],[1755.1,12.6],[1739.3,7.2],[1723.1,3.5],[1706.7,1.4],[1690.3,0.8],[1673.9,1.6],[1657.6,3.7],[1641.4,6.8],[1625.5,10.8],[1609.6,15.5],[1593.8,20.5],[1578.1,25.6],[1562.4,30.9],[1546.7,36.6],[1531.1,42.6],[1515.6,49.1],[1500.2,56.2],[1485.1,64],[1470.2,72.6],[1455.7,82],[1441.5,92.1],[1427.5,102.9],[1413.7,114.1],[1400,125.6],[1386.4,137.4],[1372.9,149.5],[1359.4,161.7],[1346,174.3],[1332.8,187],[1319.6,199.9],[1306.5,212.9],[1293.5,226.2],[1280.6,239.6],[1267.8,253.1],[1255.1,266.9],[1242.6,280.8],[1230.3,294.9],[1218.1,309.3],[1206.2,323.9],[1194.4,338.7],[1182.9,353.8],[1171.4,368.9],[1159.9,384.1],[1136.9,414.1],[1125.2,429],[1113.4,443.7],[1101.5,458.3],[1089.3,472.7],[1076.7,486.6],[1063.6,500],[1049.8,512.7],[1035.3,524.7],[1020.2,535.9],[1004.4,546.3],[988.1,556],[971.2,564.8],[953.9,573],[936.2,580.6],[918.3,587.6],[900.2,594.2],[881.9,600.4],[863.5,606.4],[845.1,612.3],[826.7,618.1],[808.3,623.9],[771.3,635.1],[752.8,640.6],[734.2,645.9],[715.7,651.1],[697.1,656.1],[678.5,661],[659.8,665.6],[641.2,670.2],[622.6,674.6],[603.9,678.8],[585.2,682.9],[566.5,686.8],[547.8,690.4],[529.1,693.9],[510.5,697],[491.8,699.9],[473.2,702.6],[454.6,704.9],[436.1,706.9],[417.7,708.5],[399.4,709.7],[381.2,710.3],[363.1,710.4],[345.4,709.9],[327.9,708.6],[310.8,706.6],[294.2,703.7],[278.2,700],[262.9,695.2],[248.4,689.6],[234.9,682.9],[222.4,675.3],[211.2,666.8],[201.1,657.3],[192.5,647.1],[185.2,636.1],[179.3,624.5],[174.9,612.3],[172,599.7],[170.3,586.7],[170.1,573.5],[171.1,560.1],[173.1,546.6],[175.9,533.1],[179.4,519.6],[183.1,506.1],[186.7,492.6],[189.8,479.2],[191.9,465.8],[193.1,452.4],[193.2,439.1],[192.3,426],[190.2,413],[187,400.2],[182.7,387.7],[177.3,375.5],[170.8,363.7],[163.3,352.2],[154.8,341],[145.3,330.4],[134.9,320.1],[123.7,310.4],[111.8,301.1],[99.2,292.3],[86,284.1],[72.4,276.2],[58.4,268.6],[44.2,261.3],[29.9,254],[15.5,246.8],[1,239.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":25,"ty":4,"ln":"layer_25","sr":1,"ks":{"a":{"a":0,"k":[1294.905,268.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.21,12692.42]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface116","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3451.8,535.2],[3440.4,523.6],[3429.2,511.8],[3418.1,499.9],[3407.2,487.9],[3396.3,475.9],[3385.6,463.8],[3374.8,451.6],[3364.1,439.5],[3353.3,427.4],[3342.4,415.3],[3331.4,403.2],[3320.2,391.2],[3308.7,379.4],[3296.9,367.8],[3284.7,356.3],[3272.1,345.2],[3259,334.4],[3245.5,323.9],[3231.5,313.9],[3216.9,304.5],[3201.7,295.9],[3185.8,288.1],[3169.3,281.3],[3152.3,275.5],[3134.8,270.9],[3116.8,267.6],[3098.4,265.6],[3079.9,264.9],[3061.2,265.5],[3042.6,267.6],[3024,271],[3005.7,275.6],[2987.8,281.6],[2970.4,288.6],[2953.4,296.8],[2937,305.8],[2921.1,315.6],[2905.6,326],[2890.5,336.8],[2875.7,347.8],[2860.9,359],[2846,370.1],[2831,381],[2815.9,391.6],[2800.5,401.9],[2784.8,411.8],[2768.8,421.2],[2752.6,430.3],[2736.2,439.1],[2719.7,447.5],[2703,455.7],[2686.2,463.6],[2669.3,471.3],[2652.3,478.8],[2635.3,486],[2618.1,493],[2600.8,499.8],[2583.4,506.2],[2565.9,512.3],[2548.2,518],[2530.5,523.4],[2512.6,528.5],[2494.6,533.3],[2476.6,537.8],[2458.6,542.2],[2440.6,546.5],[2422.7,550.8],[2386.7,559.2],[2368.7,563.5],[2350.7,567.6],[2332.6,571.2],[2314.5,574.4],[2296.2,576.8],[2277.8,578.4],[2259.4,579.2],[2241,579.2],[2222.5,578.5],[2204.2,577],[2185.9,574.7],[2167.7,571.7],[2149.6,567.9],[2131.7,563.4],[2114.1,558.2],[2096.6,552.3],[2079.5,545.7],[2062.6,538.3],[2046.2,530.2],[2030,521.4],[2014.4,511.9],[1999.2,501.6],[1984.7,490.5],[1970.8,478.7],[1957.5,466.1],[1945.1,452.7],[1933.6,438.5],[1923.1,423.6],[1913.6,407.9],[1905.4,391.6],[1898.2,374.8],[1892.2,357.4],[1887.5,339.7],[1883.9,321.7],[1881.3,303.5],[1879.7,285.2],[1878.9,266.8],[1877.9,230],[1876.9,211.7],[1874.9,193.4],[1871.8,175.2],[1867.6,157.4],[1862.3,139.9],[1855.9,122.8],[1848.2,106.4],[1839.4,90.7],[1829.5,75.8],[1818.4,62],[1806.2,49.2],[1793,37.8],[1779,27.7],[1764.2,19.2],[1748.8,12.3],[1732.9,6.9],[1716.7,3.2],[1700.3,1.1],[1683.9,0.6],[1667.5,1.3],[1651.2,3.3],[1635,6.2],[1619.1,10],[1603.2,14.4],[1587.3,19.1],[1571.5,23.9],[1555.7,28.9],[1540.1,34.4],[1524.6,40.4],[1509.2,47.2],[1494.1,54.7],[1479.2,63],[1464.7,72.1],[1450.5,81.9],[1436.6,92.4],[1422.8,103.4],[1409.2,114.7],[1395.6,126.3],[1382,138.1],[1368.5,150.1],[1355,162.2],[1341.6,174.6],[1328.1,187],[1314.8,199.6],[1301.5,212.4],[1288.2,225.3],[1275,238.3],[1262,251.6],[1249.1,265],[1236.3,278.6],[1223.8,292.4],[1211.4,306.5],[1199.2,320.8],[1187.2,335.3],[1175.4,350.1],[1163.7,365],[1152.2,380],[1140.7,395.1],[1129.2,410.1],[1117.8,425.2],[1106.3,440.3],[1094.8,455.3],[1083.2,470.2],[1071.1,484.7],[1058.7,498.8],[1045.6,512.2],[1031.8,525],[1017.4,537.1],[1002.4,548.4],[986.6,558.8],[970.2,568.4],[953.3,577.2],[936,585.3],[918.3,592.8],[900.3,599.8],[882.2,606.3],[863.8,612.4],[845.5,618.3],[827,624.1],[808.6,629.7],[790.1,635.3],[771.6,640.8],[753.2,646.3],[734.6,651.7],[716.1,657],[697.5,662],[678.9,666.8],[660.3,671.5],[641.7,676],[623,680.4],[604.3,684.6],[585.7,688.6],[567,692.4],[548.4,696],[529.7,699.4],[511,702.5],[492.4,705.4],[473.8,708.1],[455.2,710.4],[436.7,712.4],[418.3,714],[399.9,715.1],[381.8,715.8],[363.8,715.9],[346,715.3],[328.5,714.1],[311.4,712],[294.9,709.2],[278.9,705.4],[263.6,700.6],[249.2,694.9],[235.7,688.2],[223.2,680.6],[212,672],[202,662.6],[193.3,652.3],[186,641.4],[180.1,629.8],[175.6,617.6],[172.5,605],[170.7,592.1],[170.3,578.9],[171,565.5],[172.7,552.1],[175.3,538.5],[178.7,525],[182.3,511.6],[185.8,498.1],[188.9,484.7],[191,471.2],[192.1,457.9],[192.2,444.6],[191.3,431.5],[189.2,418.5],[185.9,405.8],[181.6,393.3],[176.1,381.1],[169.5,369.2],[161.9,357.8],[153.3,346.7],[143.8,336],[133.4,325.8],[122.1,316.1],[110.2,306.8],[97.8,297.9],[84.7,289.5],[71.3,281.5],[57.6,273.6],[29.6,258.4],[15.4,250.9],[1,243.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":26,"ty":4,"ln":"layer_26","sr":1,"ks":{"a":{"a":0,"k":[1293.78,273.38]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.2,12697.14]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface121","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.9,254],[15.5,261.1],[29.8,268.6],[43.6,276.4],[57.2,284.4],[70.5,292.6],[83.5,301.1],[96.1,309.9],[108.3,319],[120,328.4],[131.2,338.2],[141.6,348.4],[151.2,359],[160,370],[167.8,381.4],[174.6,393.2],[180.2,405.3],[184.7,417.8],[188,430.5],[190.2,443.4],[191.3,456.6],[191.2,469.8],[190.1,483.2],[188.1,496.6],[185.3,510],[182,523.5],[178.6,537],[175.6,550.4],[173.4,563.9],[172,577.4],[171.7,590.7],[172.5,603.8],[174.5,616.7],[177.8,629.3],[182.5,641.4],[188.5,652.9],[195.8,663.9],[204.6,674.1],[214.6,683.6],[225.8,692.1],[238.2,699.8],[251.6,706.5],[266,712.3],[281.3,717.1],[297.2,720.9],[313.7,723.8],[330.8,725.9],[348.3,727.2],[366,727.8],[384,727.7],[402.2,727],[420.5,725.9],[438.9,724.3],[457.3,722.4],[475.9,720.1],[494.5,717.5],[513.1,714.6],[531.7,711.6],[550.4,708.2],[569,704.7],[587.7,701],[606.3,697.1],[625,692.9],[643.6,688.6],[662.2,684.1],[680.8,679.3],[699.3,674.4],[717.9,669.4],[736.4,664.2],[754.9,658.9],[773.4,653.5],[791.9,648],[810.3,642.5],[828.7,636.9],[847.1,631],[865.3,624.8],[883.3,618],[901.1,610.7],[918.5,602.8],[935.5,594],[951.9,584.5],[967.8,574.1],[982.9,562.9],[997.3,550.9],[1010.9,537.9],[1023.8,524.2],[1036,509.9],[1047.9,495.2],[1059.4,480.2],[1070.6,465],[1081.8,449.7],[1093,434.4],[1104.2,419.2],[1115.7,404.1],[1127.2,389.2],[1139,374.5],[1151.1,360],[1163.3,345.7],[1175.8,331.7],[1188.5,318],[1201.3,304.5],[1214.4,291.2],[1227.6,278.2],[1241,265.4],[1254.5,252.7],[1268.1,240.3],[1281.9,228],[1295.7,215.8],[1309.5,203.8],[1323.4,191.8],[1337.1,179.9],[1350.9,168],[1364.6,156.2],[1378.1,144.4],[1391.5,132.7],[1404.8,121],[1418,109.4],[1431.1,97.9],[1444.3,86.8],[1457.6,76.1],[1471.1,65.8],[1484.9,56.2],[1499,47.4],[1513.6,39.5],[1528.6,32.7],[1544,26.8],[1559.7,21.6],[1575.5,16.9],[1591.4,12.6],[1607.3,8.8],[1623.3,5.5],[1639.5,3],[1655.8,1.4],[1672.2,0.8],[1688.6,1.5],[1704.9,3.6],[1721.1,7.3],[1737,12.6],[1752.5,19.5],[1767.3,27.9],[1781.4,37.9],[1794.5,49.3],[1806.7,62],[1817.8,75.8],[1827.8,90.6],[1836.6,106.3],[1844.3,122.7],[1850.8,139.7],[1856.2,157.1],[1860.6,174.9],[1863.9,192.9],[1866.2,211.1],[1867.7,229.4],[1868.7,247.8],[1869.6,266.1],[1870.9,284.5],[1873.1,302.7],[1876.1,320.8],[1880.2,338.6],[1885.4,356.1],[1891.9,373.2],[1899.6,389.8],[1908.5,405.7],[1918.5,421],[1929.5,435.5],[1941.5,449.2],[1954.3,462.2],[1967.8,474.4],[1982,485.9],[1996.7,496.7],[2012,506.7],[2027.8,516.1],[2043.9,524.9],[2060.3,532.9],[2077.2,540.3],[2094.3,547],[2111.6,553],[2129.2,558.3],[2147,562.9],[2165,566.7],[2183.2,569.7],[2201.5,571.9],[2219.8,573.2],[2238.2,573.6],[2256.6,573],[2274.9,571.7],[2293.2,569.6],[2311.4,567],[2329.6,563.9],[2347.6,560.5],[2365.7,556.7],[2383.7,552.8],[2401.6,548.8],[2419.6,544.6],[2437.5,540.4],[2455.5,535.9],[2473.4,531.4],[2491.3,526.7],[2509.2,521.7],[2526.9,516.4],[2544.6,510.8],[2562.1,504.9],[2579.5,498.7],[2596.8,492.1],[2614,485.2],[2631.1,478.1],[2648.1,470.7],[2665,463.2],[2681.8,455.5],[2698.6,447.6],[2715.2,439.4],[2731.8,431.1],[2748.2,422.4],[2764.4,413.5],[2780.5,404.2],[2796.2,394.5],[2811.8,384.4],[2827.1,374],[2842.1,363.3],[2857,352.3],[2871.8,341.2],[2886.6,330.1],[2901.6,319.3],[2916.9,308.7],[2932.7,298.8],[2948.9,289.5],[2965.7,281.2],[2982.9,273.8],[3000.7,267.6],[3018.9,262.7],[3037.4,259.1],[3056,256.8],[3074.6,256],[3093.2,256.6],[3111.5,258.6],[3129.5,261.8],[3147,266.4],[3164,272],[3180.5,278.7],[3196.5,286.3],[3211.9,294.7],[3226.7,303.7],[3241.1,313.4],[3255,323.5],[3268.4,333.9],[3281.5,344.7],[3294.2,355.8],[3306.6,367.1],[3318.7,378.6],[3330.5,390.2],[3342,402],[3353.2,413.9],[3364.2,426],[3374.9,438.1],[3385.6,450.2],[3396.2,462.4],[3406.8,474.6],[3417.4,486.7],[3428,498.8],[3438.8,510.8],[3449.6,522.8]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":27,"ty":4,"ln":"layer_27","sr":1,"ks":{"a":{"a":0,"k":[1294.155,271.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.87,12694.44]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface126","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.9,529.7],[3438.8,517.8],[3427.9,505.9],[3417.1,493.9],[3406.4,481.8],[3395.7,469.6],[3385.1,457.5],[3374.5,445.3],[3363.8,433.2],[3352.9,421.1],[3341.9,409],[3330.6,397.1],[3319.1,385.3],[3307.3,373.6],[3295.2,362.2],[3282.7,350.9],[3269.9,340],[3256.6,329.3],[3242.9,319.1],[3228.7,309.3],[3213.9,300.1],[3198.6,291.6],[3182.7,283.9],[3166.2,277.2],[3149.2,271.5],[3131.6,266.9],[3113.7,263.6],[3095.3,261.6],[3076.8,261],[3058.1,261.7],[3039.4,263.8],[3020.9,267.3],[3002.7,272.1],[2984.9,278.2],[2967.5,285.4],[2950.7,293.6],[2934.3,302.8],[2918.5,312.6],[2903.1,323.1],[2888,333.9],[2873.2,345],[2858.4,356.1],[2843.6,367.1],[2828.6,378],[2813.4,388.6],[2797.9,398.8],[2782.1,408.5],[2766.1,417.9],[2749.9,426.9],[2733.5,435.6],[2716.9,443.9],[2700.3,452.1],[2683.5,460],[2666.6,467.7],[2649.7,475.3],[2632.7,482.6],[2615.6,489.7],[2598.4,496.5],[2581,503],[2563.5,509.1],[2545.9,514.9],[2528.1,520.3],[2510.3,525.3],[2492.4,530.1],[2474.4,534.7],[2456.4,539.2],[2438.5,543.5],[2420.5,547.8],[2402.5,552],[2384.6,556.2],[2366.6,560.4],[2348.6,564.4],[2330.6,568.1],[2312.4,571.3],[2294.2,573.8],[2275.9,575.7],[2257.5,576.8],[2239.1,577],[2220.7,576.4],[2202.3,575],[2184,572.7],[2165.9,569.7],[2147.8,565.9],[2130,561.3],[2112.4,556.1],[2095,550.1],[2077.8,543.5],[2061,536.1],[2044.5,528],[2028.4,519.3],[2012.7,509.8],[1997.5,499.7],[1982.8,488.7],[1968.8,477.1],[1955.4,464.7],[1942.7,451.5],[1931,437.6],[1920.2,422.9],[1910.5,407.4],[1901.9,391.2],[1894.5,374.5],[1888.3,357.3],[1883.4,339.7],[1879.5,321.8],[1876.8,303.6],[1874.9,285.3],[1873.8,267],[1873.2,248.6],[1872.4,230.2],[1871.1,211.9],[1868.9,193.6],[1865.7,175.5],[1861.4,157.7],[1856.1,140.3],[1849.6,123.3],[1841.9,106.8],[1833.1,91.2],[1823.1,76.3],[1812,62.5],[1799.8,49.8],[1786.7,38.3],[1772.6,28.3],[1757.8,19.8],[1742.4,12.9],[1726.5,7.6],[1710.3,3.9],[1693.9,1.9],[1677.5,1.2],[1661.1,1.9],[1644.8,3.7],[1628.7,6.5],[1612.7,10],[1596.8,14.1],[1580.9,18.6],[1565,23.2],[1549.3,28.1],[1533.7,33.7],[1518.3,39.9],[1503.3,47.2],[1488.6,55.3],[1474.2,64.2],[1460.1,73.8],[1446.3,84.1],[1432.7,94.9],[1419.2,106.2],[1405.8,117.6],[1392.4,129.3],[1378.9,141.1],[1365.4,153],[1351.8,165],[1338.2,177.1],[1324.6,189.3],[1311,201.6],[1297.5,214],[1283.9,226.5],[1270.5,239.2],[1257.2,252.1],[1244,265.1],[1230.9,278.3],[1218.1,291.8],[1205.4,305.5],[1192.9,319.4],[1180.6,333.6],[1168.5,348],[1156.6,362.6],[1144.8,377.4],[1133.2,392.3],[1121.7,407.4],[1110.3,422.5],[1099.1,437.7],[1087.8,453],[1076.5,468.2],[1065,483.2],[1053.1,497.8],[1040.7,511.9],[1027.7,525.5],[1014,538.4],[999.7,550.5],[984.6,561.8],[968.8,572.2],[952.4,581.7],[935.4,590.5],[918,598.6],[900.3,606],[882.3,612.8],[864.1,619.2],[845.8,625.3],[827.4,631],[808.9,636.6],[790.5,642.1],[753.5,653.1],[735,658.5],[716.5,663.7],[698,668.8],[679.4,673.7],[660.8,678.3],[642.1,682.8],[623.5,687.2],[604.8,691.3],[586.2,695.3],[567.5,699],[548.8,702.6],[530.2,705.9],[511.5,709.1],[492.9,711.9],[474.4,714.6],[455.8,716.9],[437.3,718.8],[418.9,720.4],[400.5,721.6],[382.4,722.2],[364.4,722.3],[346.6,721.8],[329.1,720.5],[312.1,718.5],[295.5,715.6],[279.5,711.8],[264.3,707],[249.9,701.2],[236.4,694.5],[224,686.9],[212.8,678.3],[202.8,668.8],[194.1,658.6],[186.8,647.6],[180.8,636.1],[176.2,623.9],[173,611.4],[171.1,598.5],[170.4,585.3],[171,572],[172.5,558.5],[174.9,545],[178,531.5],[181.5,518],[185,504.6],[188,491.1],[190.1,477.7],[191.2,464.3],[191.3,451.1],[190.3,438],[188.1,425],[184.8,412.3],[180.4,399.8],[174.9,387.6],[168.2,375.8],[160.5,364.4],[151.8,353.3],[142.2,342.7],[131.8,332.5],[120.6,322.7],[108.7,313.4],[96.4,304.4],[83.5,295.9],[70.3,287.6],[56.8,279.6],[43.1,271.7],[29.2,263.9],[15.1,256.3],[0.7,249]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":28,"ty":4,"ln":"layer_28","sr":1,"ks":{"a":{"a":0,"k":[1293.78,275.63]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12699.16]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface131","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.6,516.8],[3439.1,504.7],[3417.9,480.5],[3407.2,468.4],[3396.6,456.2],[3385.9,444.1],[3375.2,432],[3364.3,419.9],[3353.1,408],[3341.7,396.2],[3330,384.5],[3318,373],[3305.7,361.7],[3293,350.5],[3280.1,339.7],[3266.8,329.1],[3253.2,318.8],[3239.2,308.8],[3224.7,299.3],[3209.8,290.3],[3194.4,282],[3178.4,274.5],[3161.9,267.8],[3144.9,262.2],[3127.4,257.7],[3109.4,254.5],[3091.1,252.6],[3072.6,252.1],[3053.9,253],[3035.3,255.3],[3016.9,259.1],[2998.7,264.1],[2981,270.5],[2963.9,277.9],[2947.2,286.4],[2931,295.8],[2915.4,305.8],[2900.2,316.5],[2885.2,327.4],[2870.5,338.5],[2855.7,349.6],[2840.7,360.4],[2825.5,370.9],[2810.1,381.2],[2794.5,391.1],[2778.7,400.7],[2762.7,410],[2746.5,419],[2730.1,427.6],[2713.6,436],[2696.9,444.1],[2680.2,452],[2663.4,459.6],[2646.4,467.1],[2629.4,474.4],[2612.3,481.5],[2595.1,488.4],[2577.9,495.1],[2560.6,501.5],[2543.2,507.7],[2525.7,513.6],[2508.1,519.2],[2490.3,524.5],[2472.5,529.5],[2454.7,534.2],[2436.7,538.8],[2418.8,543.1],[2400.8,547.2],[2382.8,551],[2364.8,554.5],[2346.7,557.8],[2328.6,560.9],[2310.4,563.7],[2292.2,566.3],[2274,568.5],[2255.7,570.1],[2237.3,570.9],[2219,570.8],[2200.6,569.7],[2182.3,567.7],[2164.2,564.8],[2146.2,561],[2128.4,556.4],[2110.9,551],[2093.5,544.9],[2076.5,538.2],[2059.7,530.7],[2043.2,522.7],[2027.1,514],[2011.4,504.6],[1996.1,494.6],[1981.3,484],[1967,472.6],[1953.3,460.6],[1940.3,447.8],[1928.1,434.3],[1916.8,420.1],[1906.5,405],[1897.3,389.3],[1889.3,372.9],[1882.5,356],[1876.9,338.6],[1872.5,320.8],[1869.2,302.8],[1866.8,284.6],[1865.3,266.3],[1864.1,248],[1862.9,229.7],[1861.3,211.4],[1858.8,193.2],[1855.3,175.2],[1851,157.5],[1845.5,140.1],[1839,123.1],[1831.3,106.8],[1822.5,91.1],[1812.5,76.3],[1801.4,62.5],[1789.2,49.8],[1776,38.4],[1762,28.5],[1747.1,20],[1731.7,13.2],[1715.8,7.9],[1699.5,4.2],[1683.2,2.1],[1666.9,1.4],[1650.5,1.8],[1634.2,3.2],[1618,5.5],[1602,8.4],[1586.1,12.1],[1570.2,16.4],[1554.5,21.4],[1539.1,27],[1524,33.5],[1509.4,41.1],[1495.5,49.7],[1482.1,59.3],[1469,69.6],[1456.2,80.5],[1443.5,91.7],[1430.8,103.1],[1418,114.7],[1405.1,126.4],[1391.9,138.1],[1378.6,149.8],[1365,161.5],[1351.2,173.2],[1337.3,184.8],[1323.2,196.4],[1309.1,208.1],[1295,219.8],[1280.9,231.5],[1266.8,243.4],[1252.9,255.5],[1239,267.7],[1225.2,280],[1211.7,292.6],[1198.2,305.4],[1185,318.5],[1171.9,331.8],[1159.1,345.3],[1146.4,359.2],[1134.1,373.3],[1122,387.7],[1110.2,402.4],[1098.6,417.2],[1087.1,432.3],[1075.9,447.5],[1064.7,462.8],[1053.5,478.1],[1042.3,493.3],[1030.9,508.4],[1019.3,523.3],[1007.1,537.7],[994.3,551.4],[980.7,564.3],[966.2,576.4],[951.1,587.6],[935.2,597.9],[918.7,607.3],[901.7,615.9],[884.2,623.8],[866.3,631],[848.3,637.6],[830,643.7],[811.7,649.5],[793.2,655],[774.8,660.4],[756.3,665.7],[737.8,670.9],[719.3,676],[700.7,681],[682.2,686],[663.6,690.7],[645,695.3],[626.4,699.7],[607.8,703.8],[589.1,707.7],[570.5,711.4],[551.9,714.9],[533.2,718.2],[514.6,721.2],[496,724.1],[477.4,726.6],[458.9,728.9],[440.4,730.8],[422,732.4],[403.7,733.5],[385.6,734.1],[367.6,734.2],[349.9,733.6],[332.5,732.3],[315.4,730.2],[298.9,727.2],[283,723.4],[267.8,718.6],[253.4,712.8],[239.9,706.1],[227.6,698.4],[216.3,689.8],[206.3,680.4],[197.6,670.2],[190.1,659.2],[184.1,647.7],[179.4,635.6],[176,623.1],[173.9,610.2],[173,597.1],[173.2,583.8],[174.4,570.4],[176.5,556.9],[179.3,543.4],[182.5,529.9],[185.6,516.5],[188.4,503],[190.3,489.6],[191.3,476.3],[191.3,463],[190.2,449.9],[188,437],[184.5,424.3],[179.9,411.9],[174.2,399.8],[167.4,388],[159.5,376.6],[150.7,365.6],[141,355],[130.6,344.8],[119.5,335],[107.9,325.5],[95.9,316.3],[83.5,307.3],[70.8,298.7],[57.6,290.3],[44,282.3],[30,274.6],[15.6,267.3],[0.6,260.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":29,"ty":4,"ln":"layer_29","sr":1,"ks":{"a":{"a":0,"k":[1294.53,277.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12701.86]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface136","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3451,509.7],[3440.5,497.5],[3430,485.4],[3419.4,473.3],[3408.7,461.2],[3397.9,449.1],[3387.1,437],[3376.2,425],[3365.1,413],[3353.8,401.2],[3342.2,389.5],[3330.2,377.9],[3318,366.6],[3305.5,355.4],[3292.6,344.5],[3279.5,333.7],[3266.1,323.3],[3252.3,313.2],[3238.1,303.3],[3223.6,293.9],[3208.7,285],[3193.3,276.7],[3177.3,269.2],[3160.8,262.6],[3143.8,257],[3126.3,252.5],[3108.3,249.4],[3090,247.5],[3071.4,247.1],[3052.8,248.1],[3034.2,250.6],[3015.9,254.5],[2997.8,259.7],[2980.1,266.1],[2963,273.7],[2946.4,282.3],[2930.4,291.8],[2914.8,301.9],[2899.7,312.6],[2884.8,323.6],[2870.1,334.7],[2855.3,345.7],[2840.2,356.4],[2825,366.8],[2809.5,376.9],[2793.8,386.7],[2777.9,396.2],[2761.9,405.5],[2745.7,414.5],[2729.4,423.1],[2712.9,431.5],[2696.3,439.6],[2679.5,447.5],[2662.7,455],[2645.7,462.4],[2628.6,469.5],[2611.4,476.5],[2594.3,483.3],[2577.1,490.2],[2559.9,496.9],[2542.7,503.4],[2525.3,509.7],[2507.9,515.6],[2490.3,521.3],[2472.6,526.6],[2454.9,531.7],[2437,536.4],[2419.1,540.9],[2401.1,544.9],[2383.1,548.5],[2365,551.6],[2346.8,554.4],[2328.7,557],[2310.4,559.4],[2292.3,561.9],[2274.1,564.2],[2255.8,566],[2237.5,567.1],[2219.1,567.2],[2200.8,566.4],[2182.5,564.5],[2164.3,561.8],[2146.4,558],[2128.6,553.4],[2111.1,548],[2093.8,541.9],[2076.8,535.1],[2060,527.6],[2043.6,519.5],[2027.5,510.8],[2011.8,501.4],[1996.5,491.5],[1981.6,481],[1967.2,469.8],[1953.4,457.9],[1940.2,445.3],[1927.8,432.1],[1916.2,418],[1905.6,403.2],[1896.1,387.7],[1887.7,371.5],[1880.5,354.8],[1874.6,337.5],[1869.9,319.9],[1866.3,301.9],[1863.6,283.8],[1861.8,265.6],[1860.4,247.3],[1859,229],[1857.2,210.7],[1854.6,192.6],[1851.1,174.6],[1846.6,156.9],[1841.2,139.5],[1834.6,122.6],[1827,106.3],[1818.2,90.6],[1808.2,75.8],[1797.1,62],[1784.9,49.4],[1771.7,38],[1757.6,28],[1742.8,19.6],[1727.3,12.8],[1711.4,7.5],[1695.2,3.8],[1678.9,1.6],[1662.6,0.8],[1646.2,1.1],[1630,2.4],[1613.8,4.4],[1597.7,7.2],[1581.9,10.9],[1566.2,15.4],[1550.7,20.7],[1535.6,27.1],[1521,34.4],[1507,42.7],[1493.8,52.2],[1481.3,62.5],[1469.1,73.5],[1457,84.9],[1444.9,96.5],[1432.7,108.2],[1420.2,120],[1407.5,131.7],[1394.5,143.5],[1381.1,155.1],[1367.5,166.7],[1353.6,178.2],[1339.4,189.6],[1325.2,200.9],[1310.8,212.2],[1282,235],[1267.6,246.5],[1253.3,258.2],[1239.1,269.9],[1224.9,281.9],[1210.9,294],[1197.1,306.4],[1183.5,318.9],[1170,331.8],[1156.7,344.9],[1143.7,358.3],[1131,372],[1118.6,386],[1106.4,400.3],[1094.5,414.9],[1082.8,429.7],[1071.3,444.6],[1060,459.7],[1048.8,475],[1037.7,490.3],[1026.6,505.7],[1015.4,521],[1003.9,535.9],[991.7,550.3],[978.8,564],[965.1,576.8],[950.7,588.9],[935.4,600],[919.5,610.2],[902.9,619.5],[885.8,628],[868.2,635.8],[850.4,642.9],[832.3,649.3],[814,655.3],[795.6,661],[777.2,666.4],[758.7,671.6],[740.2,676.7],[721.6,681.6],[703.1,686.6],[684.6,691.5],[666,696.3],[647.4,700.9],[628.8,705.3],[610.2,709.4],[591.6,713.4],[572.9,717.1],[554.3,720.6],[535.7,723.8],[517.1,726.8],[498.5,729.6],[480,732.2],[461.5,734.4],[443,736.3],[424.6,737.8],[406.3,738.9],[388.2,739.5],[370.3,739.6],[352.6,739],[335.1,737.6],[318.1,735.5],[301.6,732.5],[285.7,728.7],[270.5,723.8],[256.2,718],[242.7,711.3],[230.3,703.6],[219.1,695.1],[209,685.6],[200.3,675.4],[192.8,664.5],[186.7,653],[181.9,641],[178.4,628.5],[176.2,615.6],[175.2,602.5],[175.4,589.2],[176.5,575.8],[178.4,562.3],[181.1,548.8],[184.1,535.4],[187.1,521.9],[189.7,508.5],[191.5,495.1],[192.4,481.7],[192.3,468.5],[191.2,455.4],[188.8,442.5],[185.3,429.8],[180.6,417.4],[174.8,405.3],[167.9,393.6],[160,382.2],[151.2,371.2],[141.5,360.6],[131.2,350.4],[120.2,340.5],[108.8,330.9],[96.8,321.6],[84.6,312.5],[71.9,303.8],[58.8,295.4],[45.2,287.4],[30.9,279.9],[16.1,273],[0.7,266.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":30,"ty":4,"ln":"layer_30","sr":1,"ks":{"a":{"a":0,"k":[1296.03,282.38]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12705.91]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface141","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1,282.3],[17.3,287.9],[33.1,294.1],[48.2,300.8],[62.4,308.3],[76,316.4],[88.8,325.1],[101.1,334.1],[112.9,343.5],[124.1,353.2],[134.8,363.2],[144.9,373.6],[154.3,384.3],[163,395.4],[171,406.7],[177.9,418.5],[183.8,430.5],[188.6,442.9],[192.4,455.5],[195,468.4],[196.4,481.4],[196.8,494.6],[196.1,508],[194.6,521.4],[192.2,534.8],[189.4,548.2],[186.6,561.7],[184.2,575.1],[182.5,588.6],[181.6,602],[181.8,615.2],[183,628.3],[185.4,641.1],[189,653.6],[194,665.6],[200.1,677.1],[207.7,687.9],[216.5,698.1],[226.5,707.5],[237.8,716.1],[250.2,723.8],[263.6,730.5],[277.9,736.3],[293.1,741.2],[309,745.1],[325.4,748.1],[342.4,750.3],[359.8,751.7],[377.5,752.3],[395.4,752.4],[413.5,751.8],[431.8,750.7],[450.1,749.3],[468.5,747.4],[487,745.2],[505.5,742.7],[524.1,740],[542.7,737],[561.2,733.7],[579.8,730.2],[598.5,726.4],[617.1,722.4],[635.7,718.2],[654.2,713.8],[672.8,709.3],[691.3,704.7],[709.9,699.9],[728.4,695.1],[746.9,690.3],[765.4,685.3],[783.8,680],[802.2,674.3],[820.4,668.2],[838.4,661.4],[856,654],[873.3,645.8],[890,636.7],[906.2,626.7],[921.7,615.9],[936.3,604],[950.1,591.2],[963,577.6],[975.3,563.4],[987,548.5],[998.3,533.3],[1009.2,517.8],[1020.1,502.3],[1031.1,487],[1042.4,471.9],[1054.1,457.1],[1066.1,442.6],[1078.3,428.4],[1090.8,414.5],[1103.6,400.8],[1116.6,387.4],[1129.9,374.3],[1143.5,361.5],[1157.4,349.1],[1171.4,336.9],[1185.7,325],[1200.1,313.2],[1214.7,301.7],[1229.4,290.3],[1244.1,279.1],[1259,268],[1273.9,257],[1288.8,246.1],[1303.8,235.3],[1318.7,224.5],[1333.6,213.6],[1348.4,202.7],[1362.9,191.7],[1377.1,180.5],[1391,169.1],[1404.4,157.5],[1417.4,145.8],[1429.9,133.9],[1441.8,121.9],[1453.2,109.9],[1464.2,97.8],[1474.7,85.7],[1485.1,73.8],[1495.7,62.4],[1507,51.5],[1519.3,41.5],[1532.4,32.4],[1546.3,24.4],[1560.9,17.6],[1576,12.1],[1591.6,7.9],[1607.5,4.8],[1623.7,2.7],[1639.9,1.4],[1656.2,1.3],[1672.5,2.3],[1688.7,4.6],[1704.9,8.4],[1720.7,13.7],[1736.2,20.6],[1751,29],[1765.1,38.9],[1778.3,50.3],[1790.5,63],[1801.6,76.8],[1811.4,91.6],[1820.2,107.3],[1827.8,123.6],[1834.3,140.6],[1839.7,157.9],[1844.3,175.5],[1847.9,193.4],[1850.7,211.5],[1852.7,229.7],[1854.5,247.9],[1856.3,266.2],[1858.7,284.3],[1862.1,302.3],[1866.5,320],[1872.1,337.3],[1878.9,354.2],[1886.9,370.5],[1896.1,386.1],[1906.3,401.2],[1917.5,415.5],[1929.5,429.1],[1942.4,441.9],[1955.8,454.2],[1969.9,465.7],[1984.4,476.7],[1999.3,487.2],[2014.7,497],[2030.4,506.3],[2046.4,515.1],[2062.7,523.3],[2079.4,530.9],[2096.3,537.8],[2113.6,544],[2131.1,549.4],[2148.8,553.9],[2166.8,557.4],[2185,559.8],[2203.3,561.3],[2221.6,561.7],[2239.9,561.3],[2258.1,560],[2276.3,558.1],[2294.5,555.9],[2312.7,553.8],[2331,552],[2349.2,550.2],[2367.5,548.2],[2385.7,545.6],[2403.7,542.2],[2421.6,538.1],[2439.4,533.3],[2457,527.9],[2474.4,522],[2491.6,515.6],[2508.7,509],[2525.8,502.2],[2559.8,488.2],[2576.9,481.2],[2594,474.3],[2611.2,467.6],[2628.5,460.9],[2645.7,454.2],[2662.9,447.1],[2679.8,439.8],[2696.6,432.1],[2713.2,424.1],[2729.8,415.8],[2746.1,407.2],[2762.3,398.4],[2778.4,389.3],[2794.3,379.9],[2810.1,370.3],[2825.6,360.3],[2841,350.1],[2856.1,339.5],[2870.9,328.5],[2885.6,317.4],[2900.4,306.4],[2915.4,295.6],[2930.9,285.4],[2946.8,275.9],[2963.3,267.1],[2980.3,259.4],[2997.8,252.8],[3015.8,247.4],[3034.1,243.3],[3052.7,240.6],[3071.2,239.4],[3089.8,239.6],[3108.1,241.2],[3126.1,244.2],[3143.6,248.5],[3160.6,254],[3177.1,260.6],[3193.1,268],[3208.5,276.2],[3223.5,285],[3238.1,294.4],[3252.3,304],[3266.3,314],[3280,324.2],[3293.4,334.6],[3306.6,345.3],[3319.5,356.1],[3332.1,367.2],[3344.4,378.5],[3356.4,390],[3368.1,401.6],[3379.6,413.3],[3390.8,425.2],[3402,437.1],[3413,449],[3423.9,461],[3434.6,473.1],[3445.2,485.2],[3455.5,497.4]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":31,"ty":4,"ln":"layer_31","sr":1,"ks":{"a":{"a":0,"k":[1294.905,280.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.87,12703.89]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface146","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3452.3,503.5],[3442,491.3],[3431.4,479.2],[3420.7,467.1],[3409.9,455],[3388.1,431],[3377,419.1],[3365.7,407.2],[3354.2,395.5],[3342.4,383.9],[3330.3,372.5],[3317.8,361.3],[3305.1,350.3],[3292.1,339.5],[3278.8,328.9],[3265.2,318.6],[3251.3,308.6],[3237.1,298.8],[3222.6,289.5],[3207.6,280.6],[3192.2,272.4],[3176.2,264.9],[3159.7,258.3],[3142.7,252.7],[3125.2,248.3],[3107.2,245.2],[3088.9,243.5],[3070.3,243.2],[3051.7,244.3],[3033.2,246.9],[3014.8,250.9],[2996.8,256.3],[2979.2,262.8],[2962.2,270.5],[2945.7,279.1],[2929.7,288.6],[2914.2,298.8],[2899.1,309.6],[2884.3,320.6],[2869.6,331.8],[2854.8,342.7],[2839.7,353.4],[2824.3,363.6],[2808.8,373.6],[2793,383.3],[2777.2,392.8],[2761.1,401.9],[2744.9,410.9],[2728.6,419.5],[2712.1,427.9],[2695.5,436],[2678.8,443.7],[2661.8,451.2],[2644.8,458.4],[2627.6,465.3],[2610.4,472.2],[2593.2,479],[2559,492.8],[2541.9,499.6],[2524.7,506.3],[2507.4,512.7],[2490.1,518.8],[2472.6,524.6],[2455,530],[2437.3,535.1],[2419.4,539.6],[2401.5,543.7],[2383.4,547.1],[2365.2,549.9],[2347,552.2],[2328.8,554.3],[2310.6,556.4],[2292.4,558.8],[2274.2,561],[2256,563],[2237.7,564.2],[2219.3,564.5],[2201,563.9],[2182.7,562.3],[2164.5,559.6],[2146.6,556],[2128.8,551.4],[2111.3,546],[2094,539.8],[2077.1,533],[2060.4,525.5],[2044,517.3],[2027.9,508.6],[2012.2,499.2],[1996.9,489.4],[1982,478.9],[1967.5,467.8],[1953.5,456.1],[1940.2,443.7],[1927.6,430.6],[1915.8,416.8],[1904.9,402.3],[1895,387],[1886.2,371],[1878.7,354.5],[1872.4,337.4],[1867.3,319.9],[1863.3,302.1],[1860.2,284],[1858.1,265.8],[1856.5,247.6],[1854.9,229.3],[1853,211.1],[1850.3,193],[1846.7,175],[1842.2,157.4],[1836.8,140],[1830.2,123.1],[1822.6,106.8],[1813.8,91.1],[1803.9,76.3],[1792.8,62.5],[1780.6,49.9],[1767.4,38.5],[1753.3,28.5],[1738.5,20.1],[1723,13.3],[1707.1,8],[1690.9,4.2],[1674.7,2],[1658.3,1.1],[1642,1.3],[1625.8,2.5],[1609.6,4.5],[1593.6,7.3],[1577.8,11.1],[1562.4,16],[1547.2,22],[1532.6,29.1],[1518.7,37.3],[1505.5,46.5],[1493.2,56.8],[1481.6,67.7],[1470.3,79.3],[1459,91.1],[1447.5,103],[1435.7,114.9],[1423.5,126.8],[1411,138.6],[1398,150.3],[1384.6,161.9],[1370.9,173.4],[1356.8,184.8],[1342.5,195.9],[1328,207],[1313.3,218.1],[1298.7,229.1],[1284,240.2],[1269.3,251.4],[1254.7,262.7],[1240.1,274.1],[1225.6,285.7],[1211.3,297.4],[1197.1,309.3],[1183,321.4],[1169.1,333.8],[1155.5,346.4],[1142,359.4],[1128.9,372.6],[1116,386.2],[1103.5,400.1],[1091.2,414.3],[1079.1,428.7],[1067.3,443.3],[1055.7,458.1],[1044.3,473.2],[1033.2,488.4],[1022.2,503.9],[1011.3,519.4],[1000.2,534.7],[988.6,549.6],[976.4,563.9],[963.4,577.6],[949.7,590.4],[935.2,602.4],[919.8,613.4],[903.7,623.5],[887.1,632.7],[869.9,641.1],[852.3,648.7],[834.4,655.6],[816.2,661.9],[797.9,667.8],[779.5,673.3],[761.1,678.4],[742.6,683.4],[724,688.3],[705.5,693.2],[687,698.1],[668.4,702.8],[649.8,707.4],[631.2,711.8],[612.7,716],[594,720],[575.4,723.7],[556.8,727.2],[538.2,730.4],[519.6,733.4],[501,736.2],[482.5,738.7],[464,740.9],[445.5,742.8],[427.2,744.3],[408.9,745.4],[390.8,745.9],[372.9,746],[355.2,745.3],[337.8,743.9],[320.8,741.8],[304.3,738.8],[288.4,734.9],[273.2,730.1],[258.9,724.3],[245.5,717.5],[233.1,709.9],[221.8,701.3],[211.8,691.9],[202.9,681.7],[195.4,670.8],[189.3,659.3],[184.5,647.3],[180.9,634.8],[178.6,622],[177.5,608.9],[177.5,595.6],[178.5,582.2],[180.4,568.7],[182.9,555.2],[185.8,541.8],[188.6,528.3],[191.1,514.9],[192.8,501.5],[193.6,488.2],[193.4,475],[192.1,461.9],[189.6,449],[186,436.3],[181.3,424],[175.4,411.9],[168.4,400.2],[160.5,388.8],[151.7,377.8],[142.1,367.1],[131.9,356.9],[121.1,346.9],[109.7,337.3],[97.9,327.9],[85.7,318.8],[73,310],[59.8,301.7],[45.9,293.9],[31.3,286.7],[16,280.2],[0.2,274.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":32,"ty":4,"ln":"layer_32","sr":1,"ks":{"a":{"a":0,"k":[1296.78,285.005]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12708.27]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface151","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.6,491.4],[3447.2,479.2],[3436.5,467.1],[3425.7,455.1],[3414.8,443.1],[3403.6,431.2],[3392.4,419.4],[3380.9,407.7],[3369.3,396.1],[3357.4,384.6],[3345.2,373.2],[3332.8,362.1],[3320,351.1],[3307,340.3],[3293.7,329.8],[3280.2,319.4],[3266.4,309.4],[3252.3,299.5],[3238.1,289.9],[3223.5,280.6],[3208.5,271.8],[3193,263.6],[3177.1,256.2],[3160.5,249.7],[3143.5,244.3],[3126,240],[3108,237.1],[3089.6,235.6],[3071.1,235.5],[3052.6,236.9],[3034.1,239.7],[3015.8,243.9],[2997.8,249.3],[2980.3,256],[2963.4,263.8],[2947,272.6],[2931,282.1],[2915.6,292.4],[2900.5,303.1],[2885.7,314.1],[2871.1,325.1],[2856.3,336.1],[2841.2,346.7],[2825.9,357],[2810.3,366.9],[2794.5,376.5],[2778.6,385.8],[2762.5,394.7],[2746.2,403.4],[2729.8,411.8],[2713.2,420],[2696.6,428],[2679.7,435.6],[2662.8,442.8],[2645.6,449.7],[2628.3,456.4],[2611,462.9],[2593.7,469.5],[2576.6,476.4],[2559.5,483.4],[2542.6,490.5],[2525.7,497.7],[2508.9,504.9],[2492,512.1],[2475,519],[2457.8,525.4],[2440.4,531.2],[2422.7,536.3],[2404.9,540.7],[2386.9,544.1],[2368.7,546.6],[2350.5,548.5],[2332.2,550.1],[2314,551.7],[2295.7,553.5],[2277.6,555.5],[2259.4,557.2],[2241.2,558.4],[2222.9,558.9],[2204.5,558.5],[2186.3,557.3],[2168.1,555],[2150.1,551.6],[2132.4,547.2],[2114.8,541.9],[2097.6,535.7],[2080.7,528.8],[2064.1,521.2],[2047.8,513],[2031.8,504.1],[2016.1,494.8],[2000.8,484.9],[1985.8,474.6],[1971.3,463.6],[1957.1,452.1],[1943.6,440.1],[1930.6,427.3],[1918.3,414],[1906.8,399.9],[1896.2,385.2],[1886.7,369.8],[1878.2,353.7],[1870.9,337.1],[1864.9,320],[1860,302.4],[1856.2,284.6],[1853.4,266.5],[1851.3,248.3],[1849.3,230.1],[1847.1,212],[1844.3,193.9],[1840.6,176],[1836.1,158.4],[1830.7,141.1],[1824.2,124.2],[1816.7,107.8],[1808,92.1],[1798.2,77.3],[1787.2,63.4],[1775,50.7],[1761.8,39.3],[1747.8,29.4],[1732.9,20.9],[1717.5,14.1],[1701.7,8.7],[1685.6,4.9],[1669.4,2.5],[1653.1,1.4],[1636.8,1.7],[1620.6,3],[1604.5,5.5],[1588.8,9.1],[1573.5,13.9],[1558.8,20.1],[1545,27.8],[1531.9,36.7],[1519.8,46.6],[1508.6,57.4],[1498.3,68.7],[1488.6,80.5],[1479,92.6],[1469.2,104.8],[1458.7,117],[1447.6,129.2],[1435.8,141.2],[1423.5,153.1],[1410.4,164.9],[1396.9,176.4],[1382.9,187.8],[1368.5,198.9],[1353.8,209.8],[1338.8,220.6],[1323.7,231.2],[1308.5,241.8],[1293.3,252.5],[1278.2,263.2],[1263,274],[1247.9,284.8],[1232.9,295.8],[1218,306.9],[1203.1,318.1],[1188.4,329.4],[1173.7,340.9],[1159.3,352.7],[1145,364.7],[1130.9,376.9],[1117.1,389.5],[1103.6,402.3],[1090.3,415.5],[1077.3,429],[1064.7,442.8],[1052.3,456.8],[1040.3,471.3],[1028.6,486],[1017.3,501.1],[1006.3,516.4],[995.3,531.9],[984.2,547.2],[972.9,562.4],[961.2,577.2],[949,591.5],[935.9,605],[922,617.6],[907.2,629.3],[891.6,640.1],[875.4,649.9],[858.5,658.8],[841.2,666.8],[823.4,674],[805.3,680.6],[787.1,686.5],[768.7,692],[750.3,697.1],[731.8,702],[713.2,706.7],[694.7,711.3],[676.2,715.8],[657.6,720.2],[639.1,724.6],[620.5,728.8],[601.9,732.8],[583.3,736.7],[564.7,740.2],[546.1,743.5],[527.5,746.5],[509,749.2],[490.5,751.7],[472,753.9],[453.6,755.7],[435.3,757.2],[417.1,758.2],[399,758.8],[381.1,758.7],[363.4,758.1],[346,756.6],[329.1,754.5],[312.6,751.4],[296.7,747.5],[281.6,742.6],[267.3,736.8],[253.9,730],[241.5,722.3],[230.3,713.8],[220.2,704.3],[211.4,694.2],[203.8,683.3],[197.6,671.8],[192.6,659.8],[188.9,647.4],[186.4,634.6],[185,621.6],[184.7,608.4],[185.4,595],[187,581.6],[189.4,568.1],[192.1,554.7],[194.9,541.2],[197.1,527.8],[198.5,514.4],[199,501.1],[198.4,487.9],[196.8,474.8],[194.1,462],[190.2,449.4],[185.3,437.1],[179.4,425],[172.5,413.3],[164.7,401.9],[156.1,390.8],[146.8,380],[136.9,369.6],[126.3,359.5],[115.2,349.7],[103.3,340.4],[90.8,331.5],[77.6,323.1],[63.6,315.3],[48.9,308.2],[33.3,301.8],[17.1,295.9],[0.3,290.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":33,"ty":4,"ln":"layer_33","sr":1,"ks":{"a":{"a":0,"k":[1297.905,286.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12710.63]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface156","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3460.5,484.4],[3449.9,472.3],[3439.2,460.3],[3428.3,448.3],[3417.3,436.4],[3406.1,424.5],[3394.7,412.8],[3383.1,401.2],[3371.3,389.7],[3359.2,378.3],[3346.9,367],[3334.3,356],[3321.4,345.1],[3308.3,334.4],[3295,324],[3281.3,313.7],[3267.5,303.7],[3253.4,293.9],[3239.1,284.3],[3224.5,275.1],[3209.5,266.4],[3194,258.2],[3178,250.9],[3161.4,244.4],[3144.4,239],[3126.9,234.9],[3108.9,232.1],[3090.5,230.7],[3072,230.7],[3053.5,232.2],[3035,235.1],[3016.8,239.3],[2998.9,244.9],[2981.4,251.6],[2964.5,259.5],[2948.1,268.3],[2932.2,277.9],[2916.8,288.1],[2901.7,298.8],[2886.9,309.7],[2872.2,320.7],[2857.4,331.6],[2842.4,342.2],[2827,352.5],[2811.5,362.4],[2795.7,371.9],[2779.7,381.1],[2763.5,389.9],[2747.2,398.4],[2730.7,406.7],[2714.1,414.8],[2697.4,422.6],[2680.6,430.2],[2663.5,437.4],[2646.3,444.2],[2611.7,457.2],[2594.4,463.8],[2577.3,470.5],[2560.2,477.5],[2543.3,484.7],[2526.6,492.1],[2509.9,499.7],[2493.2,507.3],[2476.5,514.7],[2459.6,521.6],[2442.3,527.8],[2424.8,533.3],[2407.1,537.9],[2389.1,541.6],[2371,544.2],[2352.7,546.1],[2334.5,547.7],[2316.2,549.1],[2298,550.7],[2279.8,552.3],[2261.7,553.7],[2243.5,554.7],[2225.2,555.1],[2206.9,554.8],[2188.6,553.7],[2170.5,551.5],[2152.5,548.3],[2134.7,544],[2117.2,538.7],[2099.9,532.6],[2083,525.7],[2066.5,518],[2050.2,509.7],[2034.2,500.9],[2018.6,491.5],[2003.3,481.7],[1988.3,471.3],[1973.7,460.4],[1959.6,449],[1945.9,437.1],[1932.8,424.5],[1920.3,411.3],[1908.6,397.5],[1897.6,383],[1887.6,367.9],[1878.7,352.2],[1870.9,335.8],[1864.3,318.9],[1858.9,301.5],[1854.6,283.8],[1851.4,265.9],[1848.9,247.8],[1846.8,229.6],[1844.4,211.5],[1841.4,193.5],[1837.8,175.6],[1833.3,158],[1828,140.7],[1821.6,123.8],[1814.2,107.3],[1805.7,91.6],[1795.9,76.7],[1784.9,62.8],[1772.7,50.1],[1759.6,38.7],[1745.6,28.7],[1730.8,20.3],[1715.4,13.4],[1699.6,8],[1683.5,4.2],[1667.2,1.7],[1651,0.7],[1634.8,1.1],[1618.7,2.8],[1602.8,5.7],[1587.2,9.9],[1572.3,15.5],[1558.3,22.5],[1545.3,31],[1533.3,40.8],[1522.3,51.5],[1512.2,62.8],[1502.8,74.6],[1494,86.6],[1485.1,98.8],[1475.8,111.1],[1465.7,123.3],[1454.8,135.5],[1443.1,147.6],[1430.8,159.5],[1417.7,171.3],[1404.1,182.9],[1390,194.2],[1375.4,205.3],[1360.6,216.1],[1345.5,226.8],[1330.2,237.3],[1314.8,247.8],[1299.4,258.3],[1284.1,268.9],[1268.7,279.5],[1253.5,290.1],[1238.2,300.9],[1223,311.7],[1207.9,322.7],[1192.9,333.7],[1177.9,344.8],[1163,356.1],[1148.4,367.6],[1133.8,379.4],[1119.6,391.4],[1105.5,403.8],[1091.8,416.4],[1078.3,429.4],[1065.2,442.7],[1052.3,456.3],[1039.9,470.3],[1027.8,484.7],[1016.1,499.4],[1004.7,514.4],[993.5,529.6],[982.5,544.9],[971.4,560.3],[960.1,575.5],[948.5,590.2],[936.1,604.4],[922.9,617.8],[908.7,630.3],[893.8,641.8],[878.1,652.5],[861.7,662],[844.7,670.7],[827.2,678.5],[809.4,685.5],[791.3,691.8],[773,697.5],[754.6,702.8],[736.1,707.7],[717.6,712.4],[699.1,716.9],[680.6,721.3],[662,725.6],[643.4,729.9],[624.9,734.1],[606.3,738.2],[587.7,742.1],[569.2,745.7],[550.6,749],[532,752],[513.5,754.7],[495,757.2],[476.5,759.4],[458.1,761.2],[439.9,762.6],[421.6,763.7],[403.6,764.2],[385.7,764.1],[368,763.4],[350.7,762],[333.7,759.8],[317.2,756.7],[301.4,752.8],[286.3,747.9],[271.9,742],[258.6,735.3],[246.2,727.6],[235,719],[224.9,709.6],[216.1,699.4],[208.5,688.5],[202.2,677.1],[197.2,665.1],[193.4,652.7],[190.8,640],[189.3,627],[188.8,613.8],[189.4,600.4],[190.8,587],[193.1,573.5],[195.8,560.1],[198.5,546.6],[200.6,533.2],[201.9,519.8],[202.1,506.5],[201.4,493.3],[199.6,480.3],[196.8,467.5],[192.8,454.9],[187.9,442.6],[182,430.5],[175.2,418.8],[167.5,407.4],[159,396.3],[149.9,385.4],[140.1,374.9],[129.6,364.7],[118.4,355],[106.4,345.8],[93.5,337.1],[79.8,329],[65.3,321.6],[50.1,314.8],[34,308.7],[17.4,303.1],[0.3,297.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":34,"ty":4,"ln":"layer_34","sr":1,"ks":{"a":{"a":0,"k":[1294.155,291.38]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.86,12715.35]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface161","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1,318.1],[18.1,323.8],[34.7,329.7],[50.9,336],[66.5,342.8],[81.3,350.2],[95.2,358.3],[107.9,367.1],[119.6,376.6],[130.4,386.7],[140.2,397.2],[149.3,408],[157.5,419.2],[165,430.7],[171.6,442.5],[177.3,454.6],[182.1,466.9],[186,479.5],[189,492.3],[191,505.3],[192,518.4],[192.1,531.7],[191.3,545],[189.5,558.4],[187.3,571.8],[185,585.3],[183,598.7],[181.8,612.1],[181.4,625.4],[182,638.6],[183.7,651.6],[186.4,664.3],[190.4,676.7],[195.4,688.6],[201.8,700],[209.4,710.8],[218.3,721],[228.3,730.4],[239.6,739],[251.9,746.7],[265.3,753.5],[279.6,759.4],[294.7,764.3],[310.5,768.3],[326.9,771.4],[343.8,773.7],[361.2,775.1],[378.8,775.9],[396.6,776],[414.7,775.5],[432.9,774.5],[451.2,773.1],[469.6,771.3],[488,769.1],[506.4,766.6],[524.9,763.8],[543.5,760.7],[562,757.4],[580.6,753.8],[599.1,750],[617.7,746],[636.3,741.9],[654.8,737.7],[691.8,729.3],[710.3,724.7],[728.8,719.9],[747.1,714.6],[765.4,708.8],[783.4,702.4],[801.1,695.1],[818.4,686.9],[835.1,677.8],[851.2,667.8],[866.5,656.6],[880.9,644.5],[894.4,631.4],[907.1,617.5],[919.2,603],[930.7,588],[941.8,572.8],[952.9,557.5],[964.1,542.4],[975.7,527.6],[987.7,513.1],[1000,499],[1012.8,485.3],[1025.8,471.9],[1039.3,458.9],[1053,446.2],[1067.1,433.9],[1081.4,421.9],[1096.1,410.2],[1111,398.8],[1126.1,387.7],[1141.4,376.9],[1156.8,366.2],[1172.4,355.7],[1218.9,324.2],[1234.4,313.6],[1249.9,303.1],[1265.4,292.7],[1281,282.2],[1296.5,271.8],[1327.7,251],[1343.1,240.6],[1358.4,230],[1373.4,219.1],[1388.1,208],[1402.2,196.6],[1415.8,185],[1428.8,173.2],[1441.1,161.2],[1452.7,149.1],[1463.4,136.8],[1473.2,124.5],[1482.2,112.2],[1490.4,99.9],[1498.3,87.7],[1506.2,75.5],[1514.3,63.4],[1522.9,51.7],[1532.5,40.8],[1543.3,30.8],[1555.6,22.2],[1569.3,14.9],[1583.9,9.2],[1599.3,4.9],[1615,2.3],[1631,1.2],[1647.2,1.8],[1663.4,3.9],[1679.5,7.6],[1695.3,12.8],[1710.7,19.7],[1725.4,28.1],[1739.4,38.1],[1752.5,49.6],[1764.6,62.5],[1775.4,76.4],[1785,91.5],[1793.3,107.3],[1800.4,123.9],[1806.4,141],[1811.4,158.4],[1815.5,176],[1819,193.9],[1822.2,211.9],[1825,229.9],[1828,247.8],[1831.5,265.6],[1835.8,283.2],[1841.3,300.5],[1847.9,317.3],[1855.6,333.7],[1864.4,349.5],[1874.2,364.7],[1884.9,379.3],[1896.5,393.3],[1908.7,406.7],[1921.4,419.6],[1934.7,431.9],[1948.5,443.7],[1962.7,455],[1977.3,465.8],[1992.3,476.1],[2007.6,486],[2023.3,495.3],[2039.2,504.2],[2055.3,512.5],[2071.9,520.1],[2088.7,527],[2106,533.1],[2123.5,538.2],[2141.3,542.4],[2159.3,545.6],[2177.4,547.6],[2195.6,548.8],[2213.9,549.3],[2232.1,549.3],[2250.3,549.1],[2268.5,548.6],[2286.7,547.9],[2304.9,546.8],[2323.1,545.4],[2341.4,543.5],[2359.4,540.9],[2377.4,537.5],[2395.1,533],[2412.6,527.6],[2429.8,521.3],[2446.7,514.3],[2463.3,506.8],[2479.8,498.9],[2496.2,490.8],[2512.7,482.9],[2529.4,475.3],[2546.2,467.9],[2563.2,460.9],[2580.2,454],[2597.4,447.3],[2614.6,440.7],[2631.8,434],[2648.9,427.1],[2665.9,419.8],[2682.7,412.3],[2699.5,404.6],[2716.1,396.7],[2732.7,388.7],[2749.1,380.4],[2765.5,371.9],[2781.6,363],[2797.5,353.8],[2813.2,344.2],[2828.7,334.2],[2843.9,323.9],[2858.8,313.2],[2873.7,302.4],[2888.5,291.5],[2903.5,280.9],[2918.9,270.6],[2934.6,260.9],[2950.8,251.9],[2967.5,243.8],[2984.9,236.8],[3002.7,231.1],[3020.9,226.6],[3039.3,223.5],[3057.8,221.9],[3076.3,221.7],[3094.6,223],[3112.6,225.6],[3130.1,229.7],[3147.2,235],[3163.8,241.3],[3179.8,248.5],[3195.4,256.5],[3210.5,265.1],[3225.2,274.1],[3239.6,283.6],[3253.8,293.2],[3267.7,303.1],[3281.5,313.3],[3294.9,323.6],[3308.2,334.2],[3321.1,344.9],[3333.9,355.9],[3346.4,366.9],[3358.7,378.2],[3370.8,389.5],[3382.6,401],[3394.2,412.5],[3405.6,424.2],[3416.9,436.1],[3427.9,447.9],[3438.9,459.9],[3449.7,471.8]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":35,"ty":4,"ln":"layer_35","sr":1,"ks":{"a":{"a":0,"k":[1292.655,289.505]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12804.52,12712.99]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface166","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.2,478.6],[3435.5,466.5],[3424.7,454.5],[3413.7,442.6],[3402.6,430.7],[3391.3,419],[3379.8,407.3],[3368,395.8],[3356.1,384.4],[3343.9,373.1],[3331.4,361.9],[3318.7,350.9],[3305.8,340.1],[3292.6,329.5],[3279.2,319.1],[3265.5,309],[3251.6,299],[3237.5,289.3],[3223.1,279.7],[3208.5,270.6],[3193.4,261.9],[3177.9,253.9],[3161.9,246.6],[3145.3,240.2],[3128.3,234.8],[3110.7,230.8],[3092.7,228],[3074.4,226.7],[3055.9,226.9],[3037.4,228.4],[3018.9,231.4],[3000.7,235.7],[2982.9,241.4],[2965.4,248.2],[2948.6,256.1],[2932.3,265],[2916.5,274.7],[2901.1,284.9],[2886,295.6],[2871.2,306.4],[2856.5,317.4],[2841.6,328.2],[2826.5,338.7],[2811.2,348.9],[2795.6,358.7],[2779.8,368.1],[2763.7,377.2],[2747.4,385.8],[2731,394.2],[2714.5,402.3],[2697.8,410.3],[2681.1,418.1],[2664.2,425.6],[2647.3,432.7],[2630.1,439.6],[2612.8,446.1],[2595.5,452.6],[2578.2,459.2],[2561.1,466],[2544.1,473],[2527.2,480.2],[2510.5,487.7],[2477.5,503.5],[2460.9,511.2],[2444.2,518.5],[2427.1,525.2],[2409.7,531],[2392.1,536],[2374.3,540],[2356.2,543],[2338,545.1],[2319.8,546.7],[2301.5,548.1],[2283.3,549.4],[2265.1,550.6],[2247,551.6],[2228.8,552.3],[2210.5,552.6],[2192.2,552.2],[2174,551.1],[2155.8,549],[2137.9,545.8],[2120.1,541.6],[2102.5,536.4],[2085.3,530.4],[2068.4,523.5],[2051.9,515.8],[2035.7,507.5],[2019.7,498.6],[2004.1,489.3],[1988.8,479.4],[1973.8,469.1],[1959.2,458.2],[1945,446.9],[1931.3,435],[1918.1,422.6],[1905.4,409.6],[1893.4,396],[1882.2,381.8],[1871.8,366.9],[1862.4,351.5],[1854.1,335.3],[1847,318.7],[1841,301.5],[1836.1,284],[1832.4,266.3],[1829.5,248.3],[1827,230.2],[1824.4,212.1],[1821.4,194.1],[1817.8,176.3],[1813.4,158.7],[1808.2,141.3],[1802,124.3],[1794.7,107.9],[1786.3,92.1],[1776.6,77.1],[1765.7,63.2],[1753.6,50.4],[1740.5,39],[1726.4,28.9],[1711.7,20.5],[1696.3,13.6],[1680.5,8.3],[1664.4,4.5],[1648.2,2.2],[1632,1.3],[1615.9,1.9],[1599.9,4],[1584.2,7.5],[1569.1,12.5],[1554.7,18.9],[1541.4,26.8],[1529.4,36.1],[1518.6,46.5],[1508.8,57.8],[1499.7,69.6],[1491.2,81.6],[1483,93.8],[1474.6,106.1],[1465.6,118.4],[1455.7,130.6],[1444.9,142.8],[1433.4,155],[1421,166.9],[1408,178.7],[1394.3,190.3],[1380.1,201.6],[1365.5,212.7],[1350.5,223.5],[1335.3,234.2],[1319.9,244.6],[1304.4,255],[1288.9,265.5],[1273.4,275.9],[1257.9,286.4],[1242.5,296.9],[1227.1,307.5],[1211.7,318.2],[1196.4,328.9],[1181.1,339.7],[1165.8,350.5],[1150.6,361.4],[1135.5,372.4],[1120.6,383.7],[1105.8,395.2],[1091.4,407.1],[1077.2,419.2],[1063.2,431.7],[1049.6,444.5],[1036.3,457.6],[1023.4,471.2],[1010.8,485.1],[998.6,499.3],[986.8,513.9],[975.2,528.8],[964,543.9],[953,559.3],[941.9,574.6],[930.7,589.7],[918.8,604.4],[906.2,618.4],[892.8,631.6],[878.6,644],[863.5,655.4],[847.7,665.7],[831.1,675],[813.9,683.4],[796.3,691],[778.4,697.8],[760.2,703.8],[741.9,709.4],[723.4,714.4],[705,719.1],[686.5,723.6],[667.9,727.9],[649.4,732.1],[630.8,736.3],[612.3,740.5],[593.7,744.6],[575.2,748.5],[556.6,752],[538.1,755.4],[519.5,758.4],[501,761.2],[482.5,763.7],[464,765.8],[445.7,767.7],[427.4,769.1],[409.2,770.1],[391.1,770.6],[373.2,770.5],[355.6,769.8],[338.3,768.3],[321.3,766.1],[304.9,763],[289,759.1],[273.9,754.1],[259.6,748.3],[246.3,741.5],[233.9,733.8],[222.7,725.2],[212.6,715.8],[203.8,705.6],[196.2,694.8],[189.9,683.3],[184.8,671.4],[180.9,659],[178.2,646.3],[176.6,633.3],[176.1,620.1],[176.5,606.8],[177.8,593.4],[180,579.9],[182.5,566.5],[185,553],[187,539.6],[188.1,526.2],[188.2,513],[187.3,499.8],[185.3,486.8],[182.4,474],[178.4,461.4],[173.5,449.1],[167.7,437.1],[161,425.3],[153.4,413.8],[145.1,402.7],[136,391.8],[126.2,381.2],[115.7,371.1],[104.3,361.4],[92,352.4],[78.7,344],[64.5,336.3],[49.5,329.2],[33.7,322.7],[17.2,316.8],[0.3,311.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":36,"ty":4,"ln":"layer_36","sr":1,"ks":{"a":{"a":0,"k":[1294.905,292.88]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.19,12718.05]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface171","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3451.9,464.2],[3440.9,452.4],[3429.9,440.5],[3418.7,428.7],[3407.4,417],[3395.9,405.3],[3384.1,393.8],[3372.2,382.4],[3360.1,371.1],[3347.7,360],[3335.1,349],[3322.4,338.1],[3309.4,327.4],[3296.1,316.8],[3282.6,306.5],[3268.9,296.4],[3255,286.5],[3240.7,276.8],[3226.3,267.5],[3211.5,258.5],[3196.3,250],[3180.7,242.2],[3164.6,235],[3148,228.7],[3131,223.5],[3113.4,219.5],[3095.4,216.9],[3077.1,215.7],[3058.7,215.9],[3040.2,217.7],[3021.8,220.9],[3003.7,225.5],[2985.9,231.4],[2968.7,238.5],[2952,246.7],[2936,255.8],[2920.3,265.6],[2905,276],[2890,286.6],[2875.2,297.4],[2860.3,308.1],[2845.2,318.6],[2829.8,328.7],[2814.2,338.3],[2798.3,347.6],[2782.2,356.6],[2766,365.3],[2749.7,373.7],[2733.1,381.8],[2716.6,389.8],[2700,397.7],[2683.2,405.4],[2666.4,413],[2649.5,420.3],[2632.6,427.4],[2615.5,434.3],[2598.4,441.2],[2581.4,448.1],[2564.4,455.1],[2547.5,462.3],[2530.7,469.7],[2514.1,477.4],[2497.6,485.3],[2481.2,493.4],[2464.7,501.3],[2448.1,509],[2431.3,516.2],[2414.3,522.9],[2397,528.7],[2379.4,533.8],[2361.6,537.8],[2343.6,541],[2325.4,543.3],[2307.2,544.8],[2289,545.7],[2270.8,546.1],[2252.7,546],[2234.4,545.8],[2216.2,545.4],[2198,544.6],[2179.8,543.3],[2161.7,541.2],[2143.8,538],[2126,533.8],[2108.5,528.7],[2091.2,522.6],[2074.4,515.7],[2057.9,508.1],[2041.7,499.8],[2025.8,491],[2010.2,481.6],[1994.9,471.8],[1979.9,461.5],[1965.3,450.8],[1951,439.5],[1937.2,427.8],[1923.9,415.5],[1911,402.8],[1898.6,389.5],[1886.9,375.7],[1875.8,361.4],[1865.6,346.4],[1856.4,330.9],[1848.2,314.8],[1840.9,298.2],[1834.8,281.3],[1829.8,263.9],[1825.6,246.3],[1822,228.5],[1818.8,210.6],[1815.6,192.7],[1812.1,174.8],[1808.2,157.1],[1803.4,139.7],[1797.7,122.5],[1790.8,105.8],[1782.7,89.9],[1773.3,74.7],[1762.5,60.7],[1750.6,47.8],[1737.5,36.3],[1723.5,26.2],[1708.8,17.8],[1693.4,11],[1677.6,5.9],[1661.5,2.5],[1645.2,0.7],[1629.1,0.6],[1613.2,2.2],[1597.8,5.5],[1582.9,10.5],[1568.9,17.1],[1556.1,25.2],[1544.7,34.5],[1535.2,44.9],[1526.9,56.2],[1519.5,68.1],[1512.3,80.4],[1504.9,92.6],[1497.2,105],[1488.8,117.3],[1479.8,129.6],[1469.9,141.9],[1459.1,154.2],[1447.6,166.3],[1435.3,178.3],[1422.4,190.2],[1408.9,201.8],[1394.8,213.3],[1380.2,224.4],[1365.2,235.3],[1349.9,246],[1334.4,256.5],[1318.8,266.9],[1303.2,277.3],[1287.6,287.7],[1272.1,298.1],[1256.5,308.5],[1240.9,319],[1225.4,329.4],[1209.7,339.8],[1194.1,350.2],[1178.3,360.4],[1162.5,370.6],[1146.8,380.8],[1131.2,391.3],[1115.7,402],[1100.5,413],[1085.5,424.3],[1070.8,435.9],[1056.3,447.8],[1042.1,459.9],[1028.2,472.5],[1014.6,485.3],[1001.3,498.5],[988.4,512.1],[975.9,526],[963.8,540.4],[952.2,555.2],[941,570.3],[929.8,585.4],[918.4,600.5],[906.7,615.3],[894.6,629.7],[881.7,643.5],[868.1,656.4],[853.4,668.3],[837.9,679.1],[821.6,688.9],[804.7,697.8],[787.3,705.6],[769.4,712.5],[751.3,718.6],[733,724.2],[714.6,729.2],[696.2,733.9],[677.7,738.2],[659.2,742.4],[640.6,746.5],[622.1,750.6],[603.5,754.4],[585,758.2],[566.5,761.7],[547.9,765],[529.4,768.1],[510.9,771],[492.4,773.5],[474,775.7],[455.7,777.5],[437.4,778.9],[419.2,779.9],[401.2,780.4],[383.3,780.3],[365.7,779.5],[348.4,778],[331.5,775.7],[315.1,772.6],[299.3,768.6],[284.2,763.6],[269.9,757.7],[256.6,750.9],[244.3,743.2],[233,734.6],[222.9,725.2],[214.1,715.1],[206.4,704.3],[200,692.9],[194.9,680.9],[191,668.6],[188.2,655.9],[186.5,642.9],[185.9,629.7],[186.1,616.4],[187.2,603.1],[188.9,589.6],[191,576.2],[192.9,562.8],[194.5,549.4],[195.1,536.1],[194.8,522.8],[193.6,509.7],[191.6,496.8],[188.7,484],[184.9,471.4],[180.2,459.1],[174.6,447],[168.2,435.1],[160.8,423.6],[152.6,412.4],[143.4,401.6],[133.3,391.2],[122.2,381.3],[110.1,372.1],[96.8,363.5],[82.4,355.8],[67,348.7],[50.9,342.1],[34.4,335.8],[17.6,329.8],[0.5,323.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":37,"ty":4,"ln":"layer_37","sr":1,"ks":{"a":{"a":0,"k":[1296.03,295.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.2,12720.75]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface176","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3454.8,457.9],[3443.7,446.1],[3432.5,434.3],[3421.2,422.6],[3409.8,410.9],[3398.2,399.4],[3386.4,387.9],[3374.3,376.6],[3362.1,365.4],[3349.7,354.3],[3337.1,343.3],[3324.3,332.5],[3311.3,321.7],[3298.1,311.2],[3284.7,300.8],[3271,290.7],[3257,280.8],[3242.8,271.2],[3228.3,261.9],[3213.4,253],[3198.2,244.6],[3182.6,236.9],[3166.4,229.7],[3149.9,223.5],[3132.8,218.3],[3115.3,214.3],[3097.3,211.7],[3079,210.6],[3060.6,210.9],[3042.1,212.8],[3023.8,216.1],[3005.7,220.9],[2988.1,227],[2970.9,234.3],[2954.4,242.7],[2938.4,251.9],[2922.9,261.8],[2907.6,272.1],[2892.6,282.7],[2877.6,293.4],[2862.6,303.9],[2847.4,314.1],[2831.8,323.8],[2815.9,333.1],[2799.9,342.1],[2783.7,350.8],[2767.3,359.3],[2750.9,367.6],[2734.4,375.7],[2717.9,383.7],[2701.3,391.6],[2684.6,399.4],[2667.9,407],[2651.1,414.5],[2634.3,421.8],[2617.4,428.9],[2600.5,436.1],[2583.6,443.2],[2566.7,450.5],[2549.9,457.9],[2533.2,465.4],[2516.6,473.1],[2500.1,481],[2483.6,489],[2467.1,496.9],[2450.5,504.6],[2433.8,512],[2416.9,518.8],[2399.8,525.1],[2382.4,530.7],[2364.6,535.3],[2346.8,539.1],[2328.7,541.9],[2310.5,543.8],[2292.3,544.6],[2274.1,544.7],[2256,544.3],[2237.7,543.6],[2219.5,542.8],[2201.3,541.8],[2183.2,540.2],[2165.2,537.9],[2147.3,534.6],[2129.5,530.3],[2112,525.2],[2094.8,519.1],[2078,512.2],[2061.5,504.6],[2045.3,496.4],[2029.4,487.5],[2013.8,478.3],[1998.5,468.5],[1983.5,458.2],[1968.8,447.5],[1954.5,436.3],[1940.7,424.6],[1927.3,412.4],[1914.3,399.8],[1901.8,386.6],[1889.9,373],[1878.7,358.9],[1868.2,344.2],[1858.5,328.9],[1849.7,313.1],[1841.9,296.8],[1835.1,280.1],[1829.3,263],[1824.5,245.7],[1820.3,228],[1816.6,210.3],[1813.2,192.4],[1809.7,174.6],[1805.9,156.9],[1801.4,139.4],[1795.9,122.1],[1789.2,105.4],[1781.3,89.3],[1772.2,74],[1761.5,59.9],[1749.7,46.9],[1736.7,35.3],[1722.7,25.3],[1707.9,16.9],[1692.5,10.3],[1676.6,5.4],[1660.5,2.3],[1644.3,0.9],[1628.3,1.4],[1612.6,3.6],[1597.5,7.7],[1583.1,13.5],[1569.9,21],[1558,29.8],[1547.7,39.7],[1539.4,50.5],[1532.4,62],[1526.1,74],[1519.7,86.3],[1512.7,98.6],[1505,111],[1496.6,123.3],[1487.3,135.7],[1477.3,148],[1466.5,160.2],[1454.9,172.3],[1442.7,184.3],[1429.8,196.2],[1416.3,207.9],[1402.2,219.4],[1387.7,230.6],[1372.8,241.5],[1357.5,252.2],[1342,262.7],[1326.4,273.2],[1310.8,283.6],[1295.2,294],[1264,314.8],[1248.5,325.3],[1232.9,335.7],[1217.2,346],[1201.4,356.2],[1169.4,376.2],[1153.5,386.2],[1137.6,396.3],[1122,406.8],[1106.5,417.5],[1091.3,428.5],[1076.2,439.7],[1061.4,451.1],[1046.8,462.8],[1032.4,474.8],[1018.2,487.1],[1004.4,499.7],[991,512.8],[977.9,526.2],[965.3,540.1],[953.3,554.5],[941.6,569.2],[930.1,584.1],[918.8,599.1],[907.3,614.1],[895.6,628.8],[883.3,643.1],[870.3,656.6],[856.2,669.2],[841.3,680.8],[825.5,691.4],[809.1,700.9],[792,709.3],[774.4,716.8],[756.4,723.3],[738.2,729.2],[719.9,734.5],[701.5,739.4],[683.1,743.9],[664.5,748.1],[646,752.2],[627.5,756.1],[608.9,759.9],[590.4,763.5],[571.9,767],[553.4,770.4],[534.9,773.5],[516.4,776.3],[497.9,778.8],[479.5,781],[461.2,782.8],[442.9,784.3],[424.7,785.2],[406.7,785.7],[388.8,785.6],[371.2,784.8],[353.9,783.3],[337,781],[320.7,777.9],[304.9,773.8],[289.8,768.8],[275.6,762.9],[262.3,756.1],[249.9,748.4],[238.7,739.8],[228.6,730.4],[219.7,720.3],[212,709.5],[205.6,698.1],[200.4,686.2],[196.4,673.8],[193.7,661.1],[192,648.2],[191.3,635],[191.5,621.8],[192.4,608.4],[193.9,595],[195.6,581.6],[197.2,568.2],[198.5,554.8],[198.9,541.5],[198.5,528.3],[197.3,515.2],[195.3,502.2],[192.5,489.4],[188.8,476.9],[184.2,464.5],[178.8,452.4],[172.4,440.5],[165.1,429],[156.8,417.8],[147.4,407.1],[137,396.9],[125.5,387.2],[112.7,378.2],[98.9,369.9],[83.9,362.5],[68,355.6],[51.5,349.2],[34.7,342.9],[17.8,336.7],[0.9,330.5]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":38,"ty":4,"ln":"layer_38","sr":1,"ks":{"a":{"a":0,"k":[1297.155,298.13]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.87,12726.14]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface181","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.4,341.7],[17.1,348.4],[33.9,355],[50.9,361.3],[67.9,367.6],[84.6,374.2],[100.6,381.3],[115.5,389.1],[129.4,397.5],[142.1,406.7],[153.5,416.5],[163.6,426.9],[172.4,437.9],[180,449.3],[186.4,461.1],[191.8,473.3],[196.1,485.7],[199.6,498.3],[202.1,511.1],[203.9,524],[205,537.1],[205.4,550.3],[205.1,563.6],[204.4,576.9],[203.3,590.3],[202.1,603.7],[201.2,617],[200.7,630.4],[200.8,643.6],[201.7,656.7],[203.5,669.7],[206.5,682.3],[210.5,694.6],[215.8,706.5],[222.3,717.9],[230,728.7],[238.9,738.8],[249,748.2],[260.2,756.8],[272.5,764.5],[285.9,771.4],[300,777.3],[315.1,782.3],[330.8,786.4],[347.2,789.6],[364,791.9],[381.3,793.5],[398.8,794.2],[416.7,794.3],[434.7,793.9],[452.9,792.9],[471.1,791.4],[489.5,789.6],[507.8,787.4],[526.3,784.9],[544.7,782],[563.2,779],[581.7,775.7],[618.7,768.7],[637.2,765],[655.7,761.1],[674.2,756.9],[692.7,752.6],[711.1,747.8],[729.4,742.5],[747.4,736.5],[765.3,729.8],[782.9,722.1],[799.8,713.5],[816.1,703.8],[831.5,692.8],[846,680.7],[859.8,667.8],[872.7,654],[884.9,639.7],[896.6,625],[908.2,610.2],[919.8,595.4],[931.7,581],[944,566.8],[956.8,553.1],[969.9,539.8],[983.6,527],[997.6,514.6],[1012,502.6],[1026.8,491],[1041.8,479.7],[1057.1,468.7],[1072.4,457.9],[1087.9,447.2],[1103.3,436.5],[1118.9,425.9],[1134.5,415.4],[1150.3,405.1],[1166.3,395.1],[1182.3,385.3],[1198.4,375.5],[1214.5,365.6],[1230.3,355.5],[1246,345.3],[1261.7,335],[1277.3,324.6],[1292.9,314.2],[1308.4,303.7],[1324,293.3],[1339.6,282.9],[1370.6,261.9],[1385.8,251.2],[1400.8,240.3],[1415.4,229.1],[1429.6,217.7],[1443.3,206.1],[1456.3,194.3],[1468.7,182.4],[1480.4,170.3],[1491.3,158.1],[1501.5,145.7],[1510.9,133.4],[1519.4,120.9],[1526.8,108.5],[1533.1,96.2],[1538,84],[1542.6,71.9],[1547.5,60.2],[1553.7,48.9],[1561.9,38.1],[1572,28.1],[1583.6,19.2],[1596.6,11.9],[1610.8,6.3],[1625.9,2.6],[1641.6,0.8],[1657.7,0.9],[1673.8,3.1],[1689.7,7.2],[1705.3,13.2],[1720.2,21.3],[1734.2,31.3],[1747.1,42.9],[1758.8,56.1],[1769,70.6],[1777.6,86.2],[1784.8,102.6],[1790.9,119.6],[1795.9,137],[1800.3,154.5],[1804.3,172.1],[1808.2,189.7],[1812.4,207.2],[1817.3,224.6],[1822.8,241.7],[1829.1,258.6],[1836.2,275.1],[1844.2,291.2],[1853,307],[1862.6,322.3],[1872.9,337.1],[1883.8,351.5],[1895.4,365.4],[1907.5,378.8],[1920.1,391.8],[1933.2,404.3],[1946.7,416.3],[1960.6,427.9],[1974.9,439],[1989.6,449.6],[2004.7,459.7],[2020,469.3],[2035.7,478.5],[2051.6,487.2],[2067.8,495.4],[2084.3,503],[2101.1,509.9],[2118.2,516],[2135.6,521.4],[2153.2,526],[2171,529.9],[2188.9,532.9],[2206.9,535.3],[2225,537.1],[2243.1,538.4],[2261.4,539.4],[2279.6,539.9],[2297.7,539.4],[2315.8,537.9],[2333.7,535.1],[2351.5,531],[2369.1,526.1],[2386.5,520.4],[2403.7,514.3],[2420.7,507.7],[2437.6,500.8],[2454.4,493.5],[2471,486.1],[2487.6,478.4],[2504.2,470.7],[2520.7,462.8],[2537.2,454.9],[2553.7,446.9],[2570.2,439.1],[2586.7,431.3],[2603.4,423.7],[2620,416.1],[2636.7,408.5],[2653.3,400.8],[2669.8,392.9],[2686.2,384.9],[2702.6,376.7],[2718.9,368.5],[2735.3,360.3],[2751.7,352.1],[2768.1,343.9],[2784.6,335.8],[2801.1,327.6],[2817.6,319.4],[2833.9,310.8],[2849.9,301.9],[2865.6,292.5],[2881.1,282.7],[2896.4,272.6],[2911.7,262.5],[2927.1,252.5],[2942.6,242.7],[2958.5,233.3],[2974.8,224.7],[2991.7,217],[3009.1,210.3],[3026.9,205],[3045,201.1],[3063.4,198.8],[3081.8,198.2],[3100.1,199.2],[3118.1,201.7],[3135.6,205.6],[3152.5,210.8],[3169.1,217.1],[3185.1,224.2],[3200.8,231.9],[3216,240.3],[3230.8,249.1],[3245.3,258.4],[3259.4,268.2],[3273.2,278.2],[3286.7,288.5],[3300,299],[3313.1,309.6],[3326,320.4],[3338.8,331.2],[3351.4,342.1],[3363.9,353.1],[3376.2,364.1],[3388.5,375.3],[3400.5,386.5],[3412.4,397.8],[3424.1,409.3],[3435.6,420.7],[3447.1,432.2],[3458.4,443.8]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":39,"ty":4,"ln":"layer_39","sr":1,"ks":{"a":{"a":0,"k":[1296.405,296.63]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.2,12723.45]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface186","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3456.3,450.7],[3445.1,439],[3433.8,427.3],[3422.4,415.7],[3410.8,404.2],[3399.1,392.7],[3387.1,381.4],[3375,370.2],[3362.7,359],[3350.3,348],[3337.7,337],[3324.9,326.2],[3311.9,315.5],[3298.8,304.9],[3285.4,294.5],[3271.7,284.3],[3257.8,274.4],[3243.7,264.7],[3229.1,255.4],[3214.3,246.6],[3199,238.3],[3183.4,230.5],[3167.3,223.4],[3150.7,217.2],[3133.7,212],[3116.2,208.1],[3098.2,205.5],[3079.9,204.4],[3061.5,204.9],[3043.1,206.9],[3024.8,210.5],[3006.8,215.5],[2989.3,221.9],[2972.3,229.4],[2955.9,237.9],[2940,247.2],[2924.4,257.1],[2909.2,267.3],[2894.1,277.8],[2879,288.2],[2863.7,298.4],[2848.3,308.3],[2832.5,317.6],[2816.4,326.5],[2800.2,335.1],[2783.8,343.5],[2767.4,351.8],[2751,360],[2734.5,368.2],[2701.5,384.2],[2684.9,392.2],[2668.4,400],[2651.7,407.6],[2635,415.1],[2618.2,422.6],[2601.5,429.9],[2584.7,437.4],[2568,444.9],[2551.3,452.5],[2534.7,460.2],[2518.1,468],[2501.6,475.8],[2485.1,483.7],[2468.5,491.5],[2451.9,499.1],[2435.2,506.5],[2418.4,513.5],[2401.3,520],[2384.1,526],[2366.5,531.2],[2348.7,535.6],[2330.8,539],[2312.7,541.3],[2294.6,542.3],[2276.4,542.4],[2258.2,541.8],[2240,540.8],[2221.8,539.7],[2203.6,538.3],[2185.6,536.4],[2167.6,533.8],[2149.7,530.2],[2132,525.9],[2114.6,520.6],[2097.4,514.5],[2080.6,507.7],[2064.1,500.1],[2047.9,491.8],[2032,483.1],[2016.4,473.8],[2001,464.1],[1986,453.9],[1971.4,443.3],[1957.1,432.1],[1943.2,420.4],[1929.7,408.3],[1916.7,395.8],[1904.1,382.7],[1892.1,369.2],[1880.7,355.2],[1869.9,340.7],[1859.9,325.7],[1850.7,310.2],[1842.3,294.2],[1834.9,277.8],[1828.4,261],[1822.8,243.8],[1818,226.4],[1813.7,208.8],[1810,191.1],[1806.4,173.4],[1802.6,155.7],[1798.2,138.1],[1792.9,120.8],[1786.6,103.9],[1779,87.7],[1770.1,72.3],[1759.6,58],[1747.9,44.9],[1734.9,33.3],[1720.9,23.3],[1706.1,15],[1690.6,8.6],[1674.7,4.1],[1658.6,1.4],[1642.5,0.6],[1626.6,1.7],[1611.1,4.7],[1596.4,9.5],[1582.7,16.1],[1570.2,24.3],[1559.3,33.8],[1550.1,44.2],[1542.9,55.3],[1537.1,66.9],[1531.7,79],[1526.1,91.2],[1519.4,103.6],[1511.8,115.9],[1503.3,128.3],[1493.9,140.7],[1483.7,153],[1472.9,165.2],[1461.2,177.4],[1449,189.4],[1436,201.2],[1422.5,212.9],[1408.5,224.3],[1393.9,235.6],[1379,246.5],[1363.8,257.2],[1348.3,267.8],[1332.7,278.2],[1317.1,288.7],[1301.6,299.1],[1254.8,330.3],[1239.1,340.7],[1223.4,351],[1207.6,361.1],[1191.5,371],[1175.4,380.8],[1159.4,390.6],[1143.4,400.6],[1127.6,410.9],[1112,421.5],[1096.6,432.2],[1081.3,443.1],[1066.1,454.2],[1051.1,465.4],[1036.2,476.9],[1021.6,488.7],[1007.4,500.8],[993.4,513.3],[979.8,526.2],[966.7,539.5],[954.1,553.4],[941.8,567.6],[930,582.2],[918.4,597],[907,612],[895.5,626.9],[883.7,641.5],[871.2,655.5],[857.7,668.7],[843.4,681],[828.2,692.4],[812.2,702.6],[795.5,711.7],[778.2,719.7],[760.4,726.7],[742.4,733],[724.1,738.6],[705.8,743.7],[687.4,748.3],[668.9,752.6],[650.4,756.7],[631.9,760.6],[613.4,764.3],[594.8,767.9],[576.3,771.3],[557.8,774.7],[539.3,777.8],[520.8,780.6],[502.4,783.1],[484,785.3],[465.7,787.2],[447.4,788.6],[429.2,789.6],[411.2,790],[393.4,789.9],[375.8,789.1],[358.5,787.6],[341.6,785.3],[325.3,782.1],[309.5,778.1],[294.5,773.1],[280.2,767.2],[266.9,760.3],[254.6,752.6],[243.3,744],[233.2,734.6],[224.3,724.5],[216.6,713.7],[210.2,702.3],[205,690.4],[201,678.1],[198.1,665.4],[196.4,652.5],[195.6,639.3],[195.7,626.1],[196.4,612.7],[197.6,599.3],[200.4,572.5],[201.4,559.2],[201.6,545.9],[201.2,532.7],[200.1,519.6],[198.1,506.7],[195.4,493.9],[191.9,481.3],[187.4,468.9],[182,456.8],[175.7,444.9],[168.3,433.4],[159.8,422.3],[150.2,411.7],[139.3,401.7],[127.2,392.3],[113.9,383.5],[99.5,375.5],[84,368.3],[67.6,361.6],[50.8,355.3],[33.8,349],[17,342.6],[0.2,336.1]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":40,"ty":4,"ln":"layer_40","sr":1,"ks":{"a":{"a":0,"k":[1291.53,300.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12804.19,12729.18]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface191","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3443.1,437.3],[3431.6,425.9],[3420,414.5],[3408.2,403.2],[3396.4,391.9],[3384.4,380.8],[3372.2,369.7],[3359.9,358.6],[3347.5,347.7],[3335,336.8],[3322.3,325.9],[3309.6,315.1],[3296.7,304.3],[3283.7,293.6],[3270.5,283],[3257.2,272.6],[3243.5,262.4],[3229.6,252.5],[3215.2,243.1],[3200.5,234.1],[3185.4,225.7],[3169.8,217.9],[3153.8,210.7],[3137.4,204.4],[3120.4,199.1],[3103,195.2],[3085,192.8],[3066.7,192],[3048.3,192.8],[3030,195.3],[3011.9,199.5],[2994.3,205.2],[2977.1,212.2],[2960.3,220.1],[2944.1,228.8],[2928.2,238.1],[2912.6,247.7],[2897.1,257.5],[2881.6,267.2],[2866,276.8],[2850.2,286.1],[2834.2,295.1],[2817.9,303.6],[2801.4,311.7],[2784.8,319.7],[2768.3,327.7],[2751.8,335.8],[2735.4,344],[2719.1,352.3],[2702.8,360.6],[2686.6,369.1],[2670.4,377.5],[2654.2,385.8],[2637.8,393.9],[2621.3,401.8],[2604.8,409.6],[2588.2,417.3],[2571.7,425.1],[2555.3,433.1],[2539,441.3],[2522.6,449.4],[2506.3,457.5],[2489.8,465.3],[2473.2,473],[2456.5,480.5],[2439.8,487.7],[2422.9,494.7],[2406,501.5],[2388.9,507.9],[2371.8,514.2],[2354.5,520.1],[2337.1,525.6],[2319.5,530.2],[2301.7,533.7],[2283.7,535.9],[2265.6,536.9],[2247.4,536.9],[2229.2,536.1],[2211.1,534.6],[2193.1,532.5],[2175.2,529.6],[2157.4,526.1],[2139.7,521.9],[2122.2,517],[2104.9,511.5],[2087.8,505.2],[2071,498.3],[2054.6,490.7],[2038.4,482.6],[2022.4,473.9],[2006.7,464.8],[1991.3,455.2],[1976.3,445.2],[1961.5,434.6],[1947.2,423.6],[1933.2,412.2],[1919.6,400.2],[1906.5,387.8],[1893.8,374.9],[1881.7,361.5],[1870.1,347.7],[1859,333.4],[1848.6,318.7],[1838.7,303.6],[1829.5,288.1],[1821,272.2],[1813.4,255.9],[1806.4,239.3],[1800.3,222.5],[1794.8,205.3],[1790,188.1],[1785.6,170.7],[1781.3,153.2],[1776.8,135.7],[1771.8,118.3],[1766.1,101.2],[1759.3,84.6],[1751.1,68.9],[1741,54.3],[1729.5,40.9],[1716.5,29.2],[1702.5,19.3],[1687.5,11.6],[1671.9,5.9],[1655.9,2.3],[1639.7,0.8],[1623.8,1.4],[1608.4,4],[1593.7,8.4],[1580.1,14.7],[1567.8,22.7],[1557,32.1],[1547.9,42.6],[1540.6,53.7],[1535.2,65.2],[1531.1,77],[1527.2,89],[1522.7,101.2],[1516.9,113.5],[1509.7,125.9],[1501.4,138.4],[1492.2,150.8],[1482,163.1],[1471,175.3],[1459.2,187.4],[1446.6,199.2],[1433.3,210.9],[1419.4,222.4],[1405,233.6],[1390.2,244.6],[1375.2,255.4],[1359.9,266],[1328.9,287],[1313.4,297.4],[1297.8,307.8],[1282.3,318.3],[1266.7,328.7],[1251.1,339],[1235.5,349.4],[1219.8,359.6],[1204,369.7],[1172,389.5],[1156,399.5],[1140.1,409.6],[1124.4,419.9],[1108.8,430.4],[1077.8,451.6],[1062.1,462],[1046.4,472.5],[1030.9,483.1],[1015.5,493.9],[1000.4,505.1],[985.6,516.6],[971.1,528.5],[957,540.8],[943.3,553.6],[930,566.8],[917.1,580.4],[904.7,594.4],[892.7,608.8],[881,623.4],[869.2,638],[857.2,652.4],[844.6,666.5],[831.4,680],[817.5,692.8],[802.7,704.4],[786.9,714.9],[770.4,724.2],[753.2,732.4],[735.5,739.7],[717.5,746],[699.3,751.6],[680.9,756.5],[662.5,761.1],[644.1,765.3],[625.6,769.2],[607.1,773],[570.1,780],[551.6,783.2],[533.1,786.3],[514.7,789.1],[496.3,791.6],[477.9,793.8],[459.6,795.7],[441.3,797.1],[423.2,798.1],[405.2,798.6],[387.4,798.5],[369.8,797.7],[352.6,796.2],[335.7,793.9],[319.4,790.7],[303.7,786.6],[288.6,781.6],[274.4,775.6],[261.2,768.7],[248.8,761],[237.7,752.4],[227.6,743],[218.7,732.8],[210.9,722.1],[204.4,710.7],[199.1,698.8],[195,686.5],[191.9,673.9],[190,661],[188.9,647.9],[188.6,634.7],[188.9,621.4],[189.6,608],[190.4,594.7],[191.3,581.3],[191.9,568],[192.2,554.7],[191.9,541.5],[191,528.4],[189.4,515.5],[186.9,502.6],[183.6,490],[179.2,477.6],[173.8,465.6],[167.1,453.8],[159.2,442.5],[150,431.7],[139.5,421.4],[127.4,411.9],[114.1,403],[99.7,394.7],[84.2,387.1],[67.9,380.2],[51.1,373.6],[34,367.3],[16.9,360.9],[0.2,354.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":41,"ty":4,"ln":"layer_41","sr":1,"ks":{"a":{"a":0,"k":[1291.905,301.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12731.88]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface196","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3444.3,431.2],[3432.6,419.9],[3420.8,408.8],[3408.9,397.6],[3396.9,386.6],[3384.8,375.6],[3372.5,364.6],[3360.1,353.8],[3347.6,342.9],[3335,332.1],[3322.3,321.3],[3309.6,310.5],[3296.8,299.7],[3283.9,288.9],[3270.9,278.2],[3257.7,267.5],[3244.2,257.2],[3230.5,247.1],[3216.3,237.5],[3201.8,228.3],[3186.8,219.7],[3171.4,211.7],[3155.5,204.4],[3139.1,198],[3122.2,192.7],[3104.8,188.8],[3086.8,186.4],[3068.6,185.7],[3050.2,186.7],[3031.9,189.5],[3014,194],[2996.5,200],[2979.4,207.3],[2962.8,215.4],[2946.5,224.1],[2930.7,233.3],[2915,242.7],[2899.3,252.1],[2883.5,261.4],[2867.5,270.5],[2851.4,279.3],[2835.1,287.8],[2818.7,295.9],[2802,303.7],[2785.4,311.5],[2768.8,319.4],[2752.3,327.5],[2736,335.8],[2719.8,344.3],[2703.7,352.8],[2687.7,361.5],[2671.6,370.1],[2655.6,378.7],[2639.4,387.1],[2623,395.1],[2606.6,403],[2590.1,410.9],[2573.7,418.9],[2557.4,427.1],[2541.2,435.5],[2525,443.8],[2508.7,451.9],[2492.3,459.8],[2475.6,467.3],[2458.9,474.6],[2442,481.5],[2425,488.2],[2407.9,494.7],[2390.8,501],[2373.7,507.2],[2356.6,513.3],[2339.4,519.2],[2322,524.4],[2304.5,528.6],[2286.6,531.6],[2268.6,533.4],[2250.5,534],[2232.3,533.6],[2214.2,532.1],[2196.2,529.7],[2178.4,526.5],[2160.6,522.5],[2143,518],[2125.7,512.8],[2108.5,507],[2091.5,500.6],[2074.8,493.6],[2058.3,486],[2042.1,477.9],[2026.1,469.3],[2010.4,460.2],[1995,450.7],[1979.9,440.7],[1965.2,430.3],[1950.7,419.4],[1936.7,408],[1923,396.1],[1909.9,383.8],[1897.2,370.9],[1885,357.6],[1873.4,343.8],[1862.2,329.6],[1851.6,315.1],[1841.5,300.1],[1832.1,284.8],[1823.3,269.1],[1815.1,253],[1807.7,236.7],[1800.9,220],[1794.8,203.2],[1789.4,186.2],[1784.4,169],[1779.7,151.7],[1775,134.3],[1770.1,116.9],[1764.7,99.7],[1758.2,83],[1750.3,67.1],[1740.4,52.3],[1728.9,39],[1716,27.3],[1701.8,17.5],[1686.7,10.1],[1671,4.9],[1654.9,1.9],[1638.9,1.1],[1623.2,2.4],[1608.1,5.8],[1593.9,11],[1580.9,18],[1569.3,26.6],[1559.4,36.5],[1551.1,47.3],[1544.7,58.6],[1540.1,70.2],[1536.5,82],[1533.2,94],[1529.3,106.1],[1523.8,118.5],[1517,130.9],[1508.9,143.4],[1499.7,155.8],[1489.6,168.1],[1478.5,180.3],[1466.5,192.3],[1453.7,204],[1440,215.4],[1425.8,226.6],[1411.1,237.5],[1396,248.3],[1380.8,258.9],[1365.5,269.5],[1350.1,280],[1334.7,290.4],[1319.2,300.8],[1303.6,311.3],[1288.1,321.7],[1272.6,332.1],[1257,342.5],[1241.4,352.8],[1225.8,363.1],[1210.1,373.3],[1194.2,383.3],[1178.4,393.4],[1162.6,403.5],[1146.8,413.8],[1131.2,424.3],[1115.8,434.9],[1100.3,445.5],[1084.7,456],[1068.9,466.3],[1053.1,476.5],[1037.3,486.8],[1021.7,497.3],[1006.3,508.1],[991.2,519.3],[976.4,530.8],[961.9,542.7],[947.7,554.9],[933.8,567.5],[920.3,580.5],[907.3,594],[894.9,607.9],[882.7,622.1],[870.8,636.5],[858.7,650.9],[846.4,665.2],[833.7,679.1],[820.3,692.4],[806.1,704.7],[790.8,715.9],[774.6,725.8],[757.8,734.7],[740.3,742.5],[722.6,749.2],[704.5,755.1],[686.2,760.3],[667.8,765],[649.4,769.3],[630.9,773.4],[612.5,777.2],[594,780.8],[575.5,784.2],[557,787.5],[538.6,790.5],[520.1,793.3],[501.7,795.8],[483.4,798],[465.1,799.9],[446.8,801.3],[428.7,802.4],[410.7,802.9],[392.9,802.8],[375.3,802],[358.1,800.5],[341.2,798.2],[324.9,795],[309.2,790.9],[294.2,785.8],[280,779.8],[266.7,772.9],[254.5,765.2],[243.3,756.5],[233.3,747.1],[224.3,737],[216.6,726.2],[210.1,714.8],[204.7,703],[200.5,690.7],[197.3,678.1],[195.2,665.3],[194,652.2],[193.5,639],[193.5,625.7],[194,612.4],[194.6,599],[195.4,585.7],[195.9,572.4],[196.2,559.1],[196,545.9],[195.3,532.8],[193.8,519.8],[191.5,507],[188.1,494.4],[183.7,482],[178.1,470],[171.1,458.4],[162.8,447.2],[153.1,436.5],[141.9,426.5],[129.3,417.2],[115.4,408.5],[100.4,400.5],[84.5,393],[68,386.1],[51.1,379.6],[34,373.2],[17,366.7],[0.4,360]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":42,"ty":4,"ln":"layer_42","sr":1,"ks":{"a":{"a":0,"k":[1291.905,304.135]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12737.61]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface201","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.2,370.5],[16.6,377.2],[33.3,383.8],[50.1,390.4],[66.9,397.1],[83.6,404],[100,411.3],[115.8,419],[130.8,427.2],[144.7,436.1],[157,445.7],[167.9,456],[177.2,466.8],[185.1,478.1],[191.3,489.9],[196.2,502.1],[199.8,514.7],[202.2,527.5],[203.6,540.5],[204.2,553.6],[204.1,566.8],[203.7,580.1],[203.2,593.4],[202.7,606.7],[202.3,620],[202.2,633.3],[202.5,646.5],[203.4,659.7],[204.9,672.7],[207.3,685.5],[210.6,698],[214.9,710.3],[220.4,722.1],[226.9,733.5],[234.6,744.3],[243.5,754.4],[253.5,763.9],[264.6,772.6],[276.9,780.4],[290.1,787.3],[304.3,793.3],[319.3,798.4],[335,802.5],[351.2,805.7],[368.1,808],[385.3,809.6],[402.8,810.3],[420.7,810.4],[438.6,809.8],[456.8,808.8],[475,807.3],[493.3,805.4],[511.6,803.2],[530,800.6],[548.4,797.8],[566.8,794.7],[585.3,791.4],[603.7,787.9],[622.2,784.2],[640.6,780.3],[659,776.1],[677.3,771.4],[695.6,766.2],[713.7,760.4],[731.4,753.6],[748.7,745.9],[765.5,736.9],[781.6,726.7],[796.9,715.5],[811.3,703.3],[824.7,690.2],[837.4,676.4],[849.8,662.2],[862,648],[874.4,634],[887.2,620.3],[900.3,607],[913.9,594.2],[928.1,582],[942.7,570.3],[957.6,558.9],[972.7,547.6],[987.9,536.5],[1003,525.5],[1018.4,514.6],[1033.8,504],[1049.6,493.7],[1065.4,483.4],[1081.2,473.2],[1096.9,462.9],[1112.3,452.3],[1127.7,441.6],[1142.9,430.7],[1158.2,419.9],[1173.5,409.3],[1188.9,398.6],[1219.9,377.6],[1235.3,367.1],[1250.6,356.6],[1281.4,335.6],[1296.9,325.2],[1312.3,314.7],[1327.7,304.2],[1343.1,293.7],[1358.4,283.2],[1373.8,272.7],[1389.1,262.4],[1404.6,252.2],[1420.3,242.3],[1435.9,232.3],[1451.1,222.2],[1465.6,211.7],[1479.2,200.6],[1491.8,188.9],[1503.2,176.9],[1513.5,164.6],[1522.6,152.2],[1530.2,139.7],[1536.5,127.2],[1541.3,114.9],[1544.5,102.9],[1546.9,91.1],[1549.3,79.3],[1552.6,67.7],[1557.5,56],[1564,44.7],[1572.2,34],[1582.1,24.4],[1593.8,16.2],[1606.9,9.6],[1621.2,4.8],[1636.4,1.9],[1652.2,1.3],[1668.2,3],[1684.1,7],[1699.5,13.6],[1713.9,22.7],[1727.1,34.1],[1738.8,47.4],[1748.6,62.2],[1756.2,78.2],[1762.4,95],[1767.6,112.3],[1772.6,129.6],[1777.9,146.7],[1783.6,163.6],[1789.8,180.3],[1796.4,196.8],[1803.5,213.2],[1811,229.5],[1819,245.6],[1827.6,261.4],[1836.7,276.9],[1846.4,292.1],[1856.7,306.9],[1867.4,321.3],[1878.7,335.4],[1890.5,349],[1902.8,362.1],[1915.6,374.7],[1929,386.8],[1942.8,398.5],[1957,409.6],[1971.6,420.3],[1986.4,430.6],[2001.5,440.5],[2017,449.9],[2032.6,458.9],[2048.5,467.5],[2064.7,475.7],[2081.1,483.4],[2097.7,490.7],[2114.4,497.5],[2131.4,503.8],[2148.5,509.5],[2165.9,514.6],[2183.6,519],[2201.4,522.5],[2219.4,524.8],[2237.4,525.7],[2255.3,524.9],[2273.2,522.7],[2290.8,519.2],[2308.2,514.6],[2325.2,509],[2342.1,502.8],[2358.9,496.4],[2375.8,490],[2392.9,483.9],[2410.2,478.1],[2427.5,472.3],[2444.8,466.3],[2461.9,460],[2478.8,453.3],[2495.6,446.2],[2512.2,438.7],[2528.5,430.8],[2544.7,422.6],[2560.8,414.2],[2576.9,405.7],[2593.1,397.4],[2609.3,389.1],[2625.4,380.7],[2641.5,372.2],[2657.5,363.6],[2673.4,354.8],[2689.2,345.9],[2705.1,337],[2720.9,328],[2736.8,319.1],[2752.7,310.4],[2768.9,301.9],[2785.3,293.8],[2801.8,285.9],[2818.5,278.2],[2835.2,270.5],[2851.9,262.8],[2868.6,254.9],[2885.1,246.8],[2901.4,238.5],[2917.5,229.9],[2933.6,221.1],[2949.7,212.3],[2965.9,203.7],[2982.5,195.5],[2999.4,187.9],[3016.7,181.5],[3034.4,176.5],[3052.6,173.4],[3070.9,172.2],[3089.2,172.8],[3107.1,175.1],[3124.5,179.2],[3141.2,184.7],[3157.3,191.5],[3172.8,199.3],[3187.8,207.8],[3202.2,217.1],[3216.2,226.9],[3229.7,237.2],[3243,247.9],[3255.9,258.7],[3268.7,269.7],[3281.4,280.8],[3294.1,291.7],[3306.8,302.6],[3319.5,313.4],[3332.2,324.1],[3344.9,334.7],[3357.5,345.2],[3370.2,355.7],[3382.7,366.2],[3395.1,376.8],[3407.4,387.4],[3419.7,398.1],[3431.9,408.7],[3444,419.5]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":43,"ty":4,"ln":"layer_43","sr":1,"ks":{"a":{"a":0,"k":[1292.28,302.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.86,12734.91]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface206","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3444.9,424.5],[3433,413.5],[3409,391.7],[3396.8,380.8],[3384.5,370],[3372.1,359.3],[3359.6,348.6],[3347,337.9],[3334.4,327.2],[3321.7,316.4],[3309,305.6],[3296.3,294.8],[3283.5,283.9],[3270.6,273],[3257.6,262.2],[3244.4,251.6],[3230.9,241.3],[3217,231.4],[3202.7,221.9],[3187.9,213.1],[3172.7,204.8],[3157,197.3],[3140.7,190.7],[3123.9,185.3],[3106.6,181.4],[3088.6,179.1],[3070.3,178.5],[3051.9,179.6],[3033.7,182.6],[3015.9,187.4],[2998.5,193.7],[2981.6,201.1],[2965,209.3],[2948.8,218.1],[2932.8,227],[2917,236.1],[2901.1,245.2],[2885,254],[2868.7,262.5],[2852.3,270.8],[2835.8,278.9],[2819.2,286.7],[2802.5,294.5],[2785.8,302.2],[2769.3,310.1],[2753,318.3],[2736.8,326.8],[2720.7,335.4],[2704.8,344.2],[2688.9,353.1],[2672.9,361.9],[2657,370.6],[2640.9,379.2],[2624.7,387.4],[2608.3,395.5],[2592,403.6],[2575.7,411.8],[2559.6,420.1],[2543.4,428.6],[2527.3,436.9],[2511,445],[2494.5,452.8],[2477.9,460.1],[2461,467.1],[2444,473.8],[2426.9,480.1],[2409.7,486.2],[2392.5,492.3],[2375.4,498.4],[2358.3,504.7],[2341.4,510.9],[2324.3,516.6],[2307,521.6],[2289.3,525.4],[2271.5,528],[2253.4,529.5],[2235.3,529.5],[2217.3,528.3],[2199.3,525.8],[2181.5,522.3],[2163.8,518],[2146.4,513.2],[2129.1,507.7],[2112,501.7],[2095.1,495.1],[2078.5,487.9],[2062,480.3],[2045.8,472.2],[2029.9,463.6],[2014.2,454.6],[1998.8,445.1],[1983.7,435.2],[1968.9,424.8],[1954.4,414],[1940.2,402.8],[1926.5,391],[1913.3,378.8],[1900.5,366],[1888.3,352.8],[1876.6,339],[1865.4,324.9],[1854.7,310.4],[1844.5,295.6],[1834.8,280.4],[1825.8,264.8],[1817.4,248.9],[1809.6,232.7],[1802.3,216.3],[1795.7,199.7],[1789.6,182.9],[1784.1,166],[1778.8,148.9],[1773.8,131.7],[1769,114.3],[1763.7,97],[1757.5,80.2],[1749.8,64.2],[1740,49.4],[1728.4,36],[1715.4,24.4],[1701.1,14.9],[1685.9,7.9],[1670.1,3.2],[1654,0.9],[1638.1,0.8],[1622.6,2.9],[1607.9,7],[1594.2,13],[1581.9,20.6],[1571.1,29.7],[1562,40],[1554.7,51.1],[1549,62.6],[1545.1,74.3],[1542.1,86],[1539.3,98],[1535.7,110.1],[1530.6,122.4],[1524.1,134.8],[1516.3,147.3],[1507.2,159.7],[1497,172.1],[1485.8,184.2],[1473.5,196],[1460.4,207.5],[1446.3,218.6],[1431.7,229.3],[1416.6,239.8],[1401.2,250.2],[1385.9,260.7],[1370.6,271.1],[1355.2,281.6],[1339.8,292],[1324.3,302.5],[1308.8,312.9],[1293.3,323.4],[1277.8,333.8],[1262.3,344.2],[1246.8,354.6],[1231.3,364.9],[1215.7,375.2],[1200.1,385.5],[1184.4,395.8],[1168.8,406.2],[1153.2,416.7],[1137.8,427.3],[1107,448.7],[1091.5,459.2],[1075.7,469.4],[1059.8,479.6],[1043.9,489.7],[1028.2,500.1],[1012.7,510.7],[997.4,521.6],[982.4,532.8],[967.5,544.3],[952.8,556],[938.4,568],[924.3,580.4],[910.7,593.2],[897.7,606.6],[885.1,620.4],[872.8,634.5],[860.6,648.7],[848.4,663.1],[836,677.2],[823,690.8],[809.3,703.7],[794.5,715.4],[778.8,726],[762.2,735.5],[745.1,743.9],[727.5,751.1],[709.6,757.4],[691.4,762.9],[673.1,767.8],[654.7,772.3],[636.2,776.4],[617.8,780.3],[599.3,783.9],[580.9,787.4],[562.4,790.6],[544,793.7],[525.6,796.5],[507.2,799],[488.8,801.2],[470.5,803.1],[452.3,804.6],[434.2,805.6],[416.2,806.1],[398.4,806.1],[380.8,805.3],[363.6,803.8],[346.8,801.4],[330.4,798.2],[314.7,794.1],[299.7,789],[285.6,783.1],[272.3,776.2],[260.1,768.4],[248.9,759.7],[238.9,750.3],[230,740.1],[222.3,729.3],[215.7,718],[210.3,706.1],[206,693.9],[202.8,681.3],[200.5,668.5],[199.1,655.4],[198.5,642.3],[198.3,629],[198.5,615.7],[199,602.4],[199.6,589.1],[200.1,575.8],[200.5,562.5],[200.4,549.3],[199.8,536.2],[198.4,523.2],[196.1,510.3],[192.7,497.8],[188.1,485.5],[182.2,473.5],[174.8,462],[166,451],[155.7,440.6],[144,430.8],[130.8,421.7],[116.3,413.2],[100.8,405.3],[84.7,398],[68,391.1],[51.1,384.5],[34.1,378],[17.2,371.5],[0.7,364.8]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":44,"ty":4,"ln":"layer_44","sr":1,"ks":{"a":{"a":0,"k":[1296.405,305.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.2,12740.98]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface211","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3455.8,424.6],[3443.5,414],[3431.2,403.6],[3418.8,393.2],[3406.3,382.8],[3381.3,362.2],[3368.6,351.9],[3355.9,341.6],[3343.2,331.3],[3330.4,320.8],[3317.7,310.2],[3305,299.4],[3292.4,288.5],[3279.8,277.5],[3267.2,266.3],[3254.6,255.1],[3241.9,243.9],[3229,233],[3215.9,222.2],[3202.3,211.9],[3188.3,202.1],[3173.7,193.1],[3158.4,184.9],[3142.4,177.9],[3125.8,172.2],[3108.6,168],[3090.7,165.6],[3072.4,165],[3054.1,166.2],[3035.9,169.3],[3018.2,174.3],[3001,180.8],[2984.1,188.4],[2967.5,196.6],[2951.2,205],[2935,213.5],[2918.8,221.9],[2902.4,230.1],[2885.8,238],[2869.1,245.7],[2852.2,253.3],[2835.4,260.8],[2818.7,268.5],[2802.1,276.4],[2785.8,284.5],[2769.6,292.9],[2753.7,301.7],[2737.9,310.7],[2722.2,319.9],[2706.6,329],[2690.8,338],[2674.9,346.8],[2659,355.6],[2643.1,364.3],[2627.2,373],[2595.2,390.2],[2579.2,398.7],[2563.1,407.1],[2546.9,415.4],[2530.6,423.4],[2514.1,431],[2497.4,438.1],[2480.5,444.9],[2463.5,451.2],[2446.2,457.2],[2428.9,462.9],[2411.4,468.5],[2394.1,474.2],[2377,480.1],[2360.2,486.6],[2343.6,493.3],[2327.1,499.9],[2310.3,506],[2293.3,511.3],[2275.9,515.7],[2258.3,518.7],[2240.4,520.2],[2222.5,519.8],[2204.5,517.9],[2186.7,514.6],[2169,510.2],[2151.7,504.9],[2134.6,499],[2117.8,492.4],[2101.2,485.4],[2084.7,477.9],[2068.4,470.1],[2052.3,461.9],[2036.4,453.3],[2020.7,444.2],[2005.3,434.8],[1990.2,424.9],[1975.3,414.7],[1960.7,404.1],[1946.4,393.1],[1932.6,381.6],[1919.1,369.6],[1906.1,357.2],[1893.7,344.2],[1881.7,330.7],[1870.3,316.8],[1859.6,302.4],[1849.3,287.6],[1839.6,272.4],[1830.5,256.9],[1821.9,241.1],[1813.7,225.1],[1806,208.9],[1798.7,192.7],[1791.7,176.3],[1785.1,159.9],[1778.8,143.2],[1773.1,126.3],[1767.9,109],[1762.6,91.7],[1756.4,74.9],[1748.7,59],[1738.8,44.3],[1726.9,31.3],[1713.4,20.2],[1698.8,11.5],[1683.3,5.5],[1667.4,2.1],[1651.4,1.1],[1635.8,2.4],[1620.9,6],[1607.1,11.5],[1594.6,18.8],[1583.6,27.5],[1574.5,37.5],[1567.2,48.4],[1561.5,59.9],[1557.4,71.7],[1554.8,83.4],[1552.8,95],[1550.8,106.8],[1547.9,118.8],[1543.4,131],[1537.4,143.5],[1529.8,156],[1520.7,168.4],[1510.2,180.7],[1498.4,192.6],[1485.5,204],[1471.4,214.7],[1456.3,224.6],[1440.6,233.9],[1424.6,243.1],[1408.5,252.5],[1392.8,262.3],[1377.4,272.6],[1362.1,283],[1346.8,293.6],[1331.5,304.1],[1316.1,314.6],[1300.8,325.1],[1285.4,335.6],[1270.1,346.2],[1254.9,356.9],[1239.7,367.6],[1224.5,378.3],[1209.2,389.1],[1194,399.9],[1178.9,410.7],[1163.7,421.6],[1148.6,432.6],[1133.4,443.5],[1118.2,454.3],[1102.8,465],[1087.3,475.5],[1071.7,486],[1056.1,496.4],[1040.5,507],[1025.2,517.7],[1009.9,528.6],[994.6,539.5],[979.3,550.4],[963.9,561.2],[948.6,572.1],[933.4,583.2],[918.7,594.8],[904.6,607],[890.9,619.8],[877.8,633.1],[865,646.7],[852.5,660.7],[840.1,674.7],[827.4,688.5],[814.2,701.9],[800.1,714.4],[785.3,726.2],[769.6,736.9],[753.3,746.5],[736.2,754.8],[718.7,762.1],[700.7,768.3],[682.5,773.8],[664.2,778.7],[645.9,783],[627.5,787],[609.1,790.7],[590.7,794.3],[572.2,797.7],[553.8,800.8],[535.4,803.7],[517,806.3],[498.7,808.6],[480.4,810.5],[462.2,812],[444.1,813],[426.1,813.6],[408.3,813.6],[390.8,812.8],[373.5,811.3],[356.8,809],[340.5,805.7],[324.8,801.6],[309.8,796.5],[295.6,790.5],[282.4,783.6],[270.1,775.8],[259,767.1],[249.1,757.6],[240.2,747.4],[232.5,736.6],[226,725.2],[220.6,713.4],[216.2,701.2],[212.8,688.6],[210.4,675.8],[208.7,662.9],[207.8,649.7],[207.4,636.5],[207.4,623.3],[207.7,610],[208.2,596.7],[208.7,583.4],[209.1,570.1],[209.1,556.8],[208.6,543.7],[207.1,530.8],[204.5,518],[200.6,505.6],[195.4,493.5],[188.6,481.8],[180.2,470.7],[170.3,460],[158.8,450],[145.9,440.6],[131.6,431.9],[116.1,423.8],[100,416.2],[83.4,409],[66.8,402.1],[50.2,395.3],[33.6,388.7],[17.1,382],[0.7,375.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":45,"ty":4,"ln":"layer_45","sr":1,"ks":{"a":{"a":0,"k":[1295.655,306.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12744.02]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface216","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3454,419.5],[3441.5,409.2],[3429,399.1],[3416.4,389],[3403.7,379],[3391.1,368.9],[3378.3,358.9],[3365.6,348.9],[3352.8,338.8],[3340,328.6],[3327.2,318.3],[3314.5,307.7],[3301.8,297],[3289.2,286.1],[3276.7,274.9],[3264.2,263.6],[3251.8,252.3],[3239.4,240.8],[3226.8,229.5],[3214.1,218.3],[3201,207.4],[3187.4,197],[3173.2,187.4],[3158.2,178.9],[3142.4,171.5],[3126,165.5],[3108.8,161.1],[3091,158.6],[3072.8,157.9],[3054.5,159],[3036.3,162],[3018.7,166.9],[3001.4,173.3],[2984.5,180.8],[2967.8,188.8],[2951.3,197],[2935,205.2],[2918.6,213.3],[2902.1,221.2],[2885.3,228.8],[2868.4,236.2],[2851.4,243.5],[2834.6,251],[2818,258.8],[2801.6,266.9],[2785.4,275.3],[2769.5,284.1],[2753.8,293.2],[2738.2,302.5],[2722.7,311.9],[2707.2,321.1],[2691.4,330.1],[2675.6,339],[2659.7,347.8],[2643.8,356.5],[2628,365.4],[2612.2,374.2],[2596.4,383],[2580.4,391.5],[2564.3,399.9],[2548,407.9],[2531.4,415.5],[2514.8,422.8],[2497.9,429.5],[2481,435.9],[2463.8,441.9],[2446.5,447.6],[2429,453.1],[2411.6,458.5],[2394.2,464.2],[2377.2,470.2],[2360.6,476.8],[2344.3,483.7],[2328,490.7],[2311.5,497.3],[2294.8,503.3],[2277.6,508.4],[2260.3,512.2],[2242.6,514.3],[2224.7,514.5],[2206.7,512.9],[2188.8,509.8],[2171.1,505.5],[2153.9,500.2],[2136.9,494.1],[2120.2,487.3],[2103.7,480],[2087.3,472.4],[2071.1,464.5],[2055,456.2],[2039.1,447.6],[2023.5,438.5],[2008.1,429.1],[1993,419.2],[1978.1,409.1],[1963.5,398.5],[1949.2,387.6],[1935.2,376.2],[1921.6,364.4],[1908.5,352.1],[1895.9,339.3],[1883.8,326],[1872.3,312.2],[1861.5,297.9],[1851.2,283.1],[1841.5,267.9],[1832.4,252.4],[1823.8,236.7],[1815.7,220.7],[1807.9,204.5],[1800.4,188.3],[1793.1,172.1],[1786.2,155.8],[1779.6,139.3],[1773.5,122.5],[1768.1,105.3],[1762.5,88.2],[1756.1,71.5],[1748.2,55.7],[1737.9,41.3],[1725.7,28.6],[1712,18],[1697.1,9.8],[1681.5,4.3],[1665.6,1.5],[1649.7,1.2],[1634.3,3.2],[1619.8,7.5],[1606.5,13.7],[1594.7,21.5],[1584.5,30.8],[1576.3,41.1],[1569.8,52.3],[1565,63.9],[1561.6,75.7],[1559.6,87.3],[1558,98.9],[1556.3,110.6],[1553.6,122.5],[1549.3,134.8],[1543.4,147.3],[1535.8,159.8],[1526.6,172.2],[1515.9,184.4],[1503.8,196.1],[1490.4,207.2],[1475.8,217.5],[1460.2,226.7],[1444,235.2],[1427.5,243.7],[1411.1,252.4],[1395.1,261.8],[1379.6,271.8],[1364.3,282.2],[1333.7,303.2],[1318.4,313.7],[1303.1,324.3],[1287.8,334.9],[1272.7,345.6],[1257.6,356.5],[1242.6,367.4],[1212.6,389.4],[1197.7,400.5],[1167.7,422.7],[1152.7,433.7],[1137.6,444.7],[1122.5,455.6],[1107.3,466.5],[1092,477.3],[1076.6,488],[1061.3,498.8],[1046,509.6],[1030.8,520.6],[1015.7,531.6],[1000.4,542.5],[985.1,553.3],[969.4,563.8],[953.8,574.3],[938.3,584.9],[923.1,596],[908.5,607.7],[894.3,620],[880.7,632.7],[867.5,646],[854.7,659.6],[842.1,673.4],[829.3,687],[816.2,700.4],[802.4,713.3],[787.9,725.4],[772.7,736.7],[756.7,746.8],[740,755.7],[722.6,763.5],[704.8,770.2],[686.7,776],[668.5,781.1],[650.2,785.6],[631.8,789.6],[613.4,793.4],[595,797.1],[576.6,800.5],[558.2,803.8],[539.8,806.8],[521.5,809.4],[503.2,811.7],[484.9,813.6],[466.7,815.1],[448.6,816.2],[430.6,816.8],[412.8,816.8],[395.3,816.1],[378,814.5],[361.2,812.2],[344.9,809],[329.3,804.8],[314.3,799.8],[300.2,793.7],[286.9,786.8],[274.7,779],[263.6,770.3],[253.6,760.8],[244.8,750.6],[237.1,739.8],[230.6,728.4],[225.2,716.5],[220.8,704.3],[217.4,691.8],[214.9,679],[213.2,666],[212.1,652.9],[211.7,639.7],[211.6,626.5],[211.9,613.2],[212.4,599.9],[212.9,586.6],[213.3,573.3],[213.3,560.1],[212.7,547],[211,534.1],[208.1,521.4],[203.9,509.1],[198.2,497.1],[190.9,485.6],[181.9,474.6],[171.3,464.2],[159.2,454.4],[145.8,445.2],[130.9,436.7],[115.2,428.7],[98.7,421.2],[82.1,414],[65.6,407.1],[49.2,400.3],[32.9,393.6],[16.6,386.9],[0.2,380.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":46,"ty":4,"ln":"layer_46","sr":1,"ks":{"a":{"a":0,"k":[1293.03,309.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.53,12750.09]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface221","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1,397.1],[17,403.7],[49,417.3],[65.3,424.2],[82,431.3],[98.6,438.7],[114.9,446.4],[130.5,454.6],[144.9,463.5],[158.2,472.9],[170,482.9],[180.2,493.5],[188.7,504.6],[195.6,516.3],[200.8,528.4],[204.6,540.8],[206.9,553.6],[208,566.5],[208.3,579.7],[208.1,592.9],[207.6,606.2],[207.1,619.5],[206.7,632.8],[206.6,646.1],[207.1,659.3],[208.1,672.4],[209.9,685.3],[212.4,698.1],[215.9,710.6],[220.2,722.8],[225.7,734.7],[232.2,746.1],[239.8,756.9],[248.7,767.1],[258.6,776.6],[269.7,785.3],[281.9,793.2],[295.2,800.1],[309.3,806.2],[324.3,811.3],[339.9,815.4],[356.2,818.6],[373,821],[390.2,822.5],[407.7,823.2],[425.5,823.1],[443.5,822.5],[461.6,821.4],[479.8,819.8],[498,817.8],[516.3,815.3],[534.7,812.6],[553.1,809.4],[571.4,806],[589.8,802.3],[608.1,798.4],[626.5,794.4],[644.8,790],[662.9,785.1],[681,779.5],[698.8,773],[716.3,765.4],[733.2,756.8],[749.5,747],[764.9,736.1],[779.5,724.1],[793.5,711.5],[807,698.4],[820.2,685.2],[833.4,671.9],[846.6,658.8],[860.2,646.1],[874.3,633.8],[888.9,622],[903.9,610.7],[919.2,599.8],[934.8,589.2],[950.6,578.9],[966.3,568.6],[981.8,558],[997,547.1],[1012,536],[1026.8,524.6],[1041.6,513.1],[1056.3,501.6],[1085.7,478.6],[1100.4,467.3],[1115.3,456.1],[1130.3,445],[1145.2,433.9],[1160,422.7],[1174.8,411.4],[1189.5,400],[1204.1,388.5],[1218.7,376.9],[1233.1,365.3],[1247.6,353.8],[1262.3,342.4],[1277.1,331.2],[1292.1,320.4],[1307.3,309.8],[1322.7,299.4],[1338.2,289.2],[1353.7,279.2],[1369.4,269.5],[1385.5,260.4],[1401.9,252.1],[1419,244.7],[1436.3,237.8],[1453.3,230.6],[1469.8,222.7],[1485.2,213.3],[1499.5,202.9],[1512.3,191.5],[1523.6,179.6],[1533.2,167.2],[1541,154.7],[1547,142.3],[1551.3,130],[1553.9,118.1],[1555.3,106.4],[1556.3,94.9],[1557.4,83.3],[1559.3,71.6],[1562.4,59.9],[1566.9,48.5],[1573.2,37.7],[1581.7,27.7],[1592.1,18.8],[1604.2,11.4],[1617.8,5.8],[1632.6,2.5],[1648.2,1.4],[1664.1,2.9],[1679.9,7.1],[1695.2,14.2],[1709.5,23.7],[1722.5,35.5],[1733.6,49.1],[1742.6,64.2],[1750,80.3],[1756.4,97.1],[1762.5,114],[1769,130.6],[1775.7,147.1],[1782.7,163.4],[1789.9,179.6],[1797.3,195.8],[1805,211.9],[1813.1,227.9],[1821.7,243.7],[1831,259.1],[1840.8,274.1],[1851.3,288.7],[1862.5,302.7],[1874.3,316.2],[1886.7,329.1],[1899.6,341.6],[1913,353.6],[1926.7,365.2],[1940.8,376.4],[1955.1,387.3],[1969.7,397.8],[1984.6,407.9],[1999.7,417.7],[2015.1,427.1],[2030.7,436.2],[2046.5,444.8],[2062.6,453.1],[2078.7,461.1],[2095,468.8],[2111.4,476.3],[2127.9,483.4],[2144.7,489.8],[2161.9,495.2],[2179.6,499.3],[2197.5,502],[2215.5,503.1],[2233.3,502.2],[2250.8,499.1],[2267.8,494.4],[2284.5,488.3],[2300.7,481.3],[2316.6,473.8],[2332.2,466],[2348,458.4],[2364,451.1],[2380.7,444.6],[2397.7,438.6],[2415,432.9],[2432.5,427.5],[2449.9,422.1],[2467.2,416.6],[2484.5,411],[2501.6,405],[2518.6,398.5],[2535.5,391.6],[2552.1,384.3],[2568.4,376.4],[2584.5,368],[2600.3,359.3],[2616,350.4],[2631.6,341.4],[2647.4,332.5],[2663.1,323.5],[2678.8,314.5],[2694.4,305.3],[2709.8,295.9],[2725.1,286.4],[2755.9,267.4],[2771.4,258],[2787.1,248.9],[2803.1,240.1],[2819.3,231.8],[2835.9,224],[2852.8,216.5],[2869.8,209.2],[2886.7,201.9],[2903.4,194.4],[2920.1,186.7],[2936.7,179],[2953.4,171.4],[2970.4,163.9],[2987.5,157.1],[3005,151.3],[3022.8,146.9],[3040.9,144.4],[3059.1,143.8],[3077.1,145.1],[3094.7,148.2],[3111.6,153.3],[3127.7,160],[3142.9,168.3],[3157.1,177.9],[3170.4,188.8],[3182.9,200.5],[3195,212.7],[3206.9,225.1],[3218.8,237.2],[3230.8,249.1],[3242.9,260.8],[3255.2,272.2],[3267.6,283.4],[3280.2,294.4],[3292.9,305.1],[3305.7,315.5],[3318.5,325.6],[3331.4,335.5],[3344.3,345.1],[3357.3,354.7],[3383.3,373.5],[3396.2,382.8],[3422,401.8],[3434.8,411.4],[3447.5,421.1]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":47,"ty":4,"ln":"layer_47","sr":1,"ks":{"a":{"a":0,"k":[1294.905,307.885]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12796.54,12747.05]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface226","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3452.6,415.1],[3440,405.1],[3427.3,395.3],[3414.5,385.5],[3401.7,375.8],[3388.9,366.1],[3376,356.4],[3363.1,346.6],[3350.3,336.8],[3337.4,326.8],[3324.6,316.5],[3311.8,306],[3299.2,295.3],[3286.6,284.4],[3274.1,273.2],[3261.8,261.8],[3249.5,250.3],[3237.3,238.6],[3225.1,226.8],[3212.8,215.1],[3200.2,203.5],[3187.1,192.5],[3173.3,182.4],[3158.7,173.3],[3143.2,165.5],[3126.9,159.2],[3109.9,154.5],[3092.1,151.7],[3074,150.8],[3055.7,151.7],[3037.6,154.5],[3019.9,159.3],[3002.6,165.4],[2985.5,172.6],[2968.8,180.4],[2952.2,188.3],[2935.7,196.3],[2919.1,204.1],[2902.5,211.8],[2885.6,219.1],[2868.6,226.4],[2851.6,233.7],[2834.9,241.3],[2818.4,249.3],[2802.2,257.7],[2786.3,266.5],[2770.6,275.6],[2755,284.9],[2739.6,294.4],[2724.3,303.9],[2708.8,313.3],[2693.1,322.3],[2677.3,331.2],[2661.5,340],[2645.7,348.9],[2629.9,357.8],[2614.2,366.8],[2598.5,375.6],[2582.5,384.1],[2566.3,392.3],[2549.8,400],[2533.2,407.3],[2516.3,414.1],[2499.3,420.5],[2482.2,426.5],[2464.9,432.2],[2447.5,437.7],[2430.1,443.1],[2412.6,448.5],[2395.4,454.2],[2378.5,460.4],[2362.1,467.3],[2346.1,474.5],[2330.1,481.8],[2313.9,488.9],[2297.5,495.5],[2280.6,501.2],[2263.4,505.5],[2245.9,508.2],[2228,508.8],[2210,507.6],[2192.1,504.8],[2174.4,500.5],[2157.2,495.2],[2140.3,488.9],[2123.7,481.9],[2107.3,474.5],[2091,466.8],[2074.8,458.8],[2058.8,450.5],[2042.9,441.9],[2027.3,432.8],[2011.9,423.4],[1996.8,413.6],[1981.9,403.4],[1967.3,392.9],[1952.9,382],[1938.9,370.8],[1925.2,359.1],[1912,346.9],[1899.2,334.3],[1886.9,321.2],[1875.3,307.5],[1864.3,293.3],[1854,278.6],[1844.3,263.5],[1835.2,248],[1826.6,232.2],[1818.5,216.2],[1810.7,200.1],[1803.2,183.9],[1795.8,167.8],[1788.8,151.5],[1782,135.1],[1775.6,118.4],[1769.9,101.3],[1764,84.4],[1757.2,67.9],[1748.8,52.4],[1738.1,38.4],[1725.6,26.1],[1711.6,16],[1696.5,8.3],[1680.8,3.5],[1664.8,1.3],[1649.1,1.7],[1634,4.4],[1619.9,9.3],[1607.2,16.1],[1596.1,24.5],[1586.7,34.2],[1579.4,44.8],[1573.9,56.1],[1569.9,67.8],[1567.3,79.6],[1565.7,91.2],[1564.5,102.7],[1563,114.4],[1560.4,126.3],[1556.2,138.5],[1550.2,151],[1542.6,163.5],[1533.2,175.9],[1522.3,188],[1509.8,199.5],[1496,210.3],[1480.9,220.1],[1464.9,228.6],[1448.2,236.5],[1431.2,244.1],[1414.5,252.1],[1398.3,261.1],[1382.5,270.7],[1367.1,280.9],[1351.8,291.2],[1336.4,301.6],[1321.1,312.1],[1305.8,322.7],[1290.7,333.4],[1275.7,344.3],[1260.8,355.4],[1246.1,366.6],[1231.3,377.9],[1216.6,389.2],[1201.8,400.6],[1187,411.8],[1172.2,423.1],[1157.2,434.2],[1127.2,456.2],[1112.2,467.3],[1097.1,478.3],[1067.1,500.5],[1052.1,511.7],[1037.1,523],[1022.1,534.2],[1007,545.2],[991.6,556],[976,566.3],[960.2,576.6],[944.5,587],[929,597.7],[914,608.9],[899.3,620.7],[885.2,633],[871.6,645.8],[858.4,658.9],[832.6,685.9],[819.4,699.2],[805.8,712.3],[791.6,724.7],[776.8,736.4],[761.1,747],[744.6,756.4],[727.5,764.6],[709.8,771.7],[691.8,777.9],[673.7,783.2],[655.5,787.9],[637.2,792.1],[618.8,796],[600.4,799.7],[582,803.3],[563.6,806.7],[545.2,809.7],[526.9,812.4],[508.6,814.8],[490.3,816.7],[472.1,818.3],[454,819.4],[436.1,820],[418.3,820],[400.7,819.3],[383.5,817.8],[366.7,815.4],[350.4,812.2],[334.8,808.1],[319.8,803],[305.6,796.9],[292.4,790],[280.2,782.2],[269.1,773.5],[259.1,764],[250.3,753.7],[242.7,742.9],[236.1,731.5],[230.7,719.7],[226.3,707.4],[222.9,694.9],[220.4,682.1],[218.6,669.2],[217.6,656.1],[217.1,642.9],[217.1,629.7],[217.4,616.4],[217.9,603.1],[218.4,589.8],[218.7,576.5],[218.6,563.3],[217.8,550.3],[215.9,537.4],[212.6,524.9],[207.9,512.6],[201.6,500.8],[193.8,489.5],[184.1,478.7],[172.9,468.5],[160.3,458.9],[146.3,449.9],[131,441.5],[115,433.7],[98.4,426.2],[81.7,419.1],[65.4,412.1],[49.2,405.3],[33,398.6],[16.9,391.9],[0.6,385.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":48,"ty":4,"ln":"layer_48","sr":1,"ks":{"a":{"a":0,"k":[1292.28,309.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.86,12753.46]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface231","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3445.4,416.9],[3432.6,407.4],[3419.6,398.1],[3406.7,388.9],[3393.6,379.8],[3380.5,370.7],[3367.4,361.6],[3354.4,352.5],[3341.3,343.1],[3328.3,333.6],[3315.4,323.9],[3302.5,313.9],[3289.7,303.5],[3277,292.9],[3264.5,282],[3252.1,270.7],[3239.8,259.2],[3227.8,247.4],[3216,235.3],[3204.3,222.8],[3192.9,209.9],[3181.4,197.1],[3169.4,184.6],[3156.6,173.1],[3142.8,162.8],[3127.9,154],[3112.1,146.7],[3095.4,141.2],[3078,137.7],[3060.1,136],[3041.9,136.1],[3023.8,138.2],[3005.9,142.1],[2988.4,147.4],[2971,153.9],[2954,160.9],[2937.1,168.2],[2920.3,175.7],[2903.6,183.3],[2886.8,190.8],[2870,198.2],[2853.1,205.7],[2836.4,213.5],[2819.9,221.6],[2803.9,230.3],[2788.2,239.4],[2772.7,248.8],[2757.4,258.4],[2742,267.9],[2726.7,277.4],[2711.3,286.9],[2695.9,296.3],[2680.4,305.6],[2664.9,314.8],[2649.3,324],[2633.7,333],[2618,342],[2602.3,350.7],[2586.3,359.2],[2570.1,367.3],[2553.6,374.8],[2536.8,381.8],[2519.8,388.3],[2502.7,394.4],[2485.4,400.1],[2468.1,405.5],[2450.7,410.9],[2433.3,416.3],[2416.1,421.9],[2398.9,427.9],[2382.2,434.4],[2365.9,441.4],[2350.2,449.2],[2334.8,457.3],[2319.5,465.5],[2303.9,473.4],[2287.8,480.7],[2271.3,487],[2254.3,492],[2236.9,495.2],[2219.1,496.2],[2201.1,495.2],[2183.2,492.5],[2165.6,488.4],[2148.4,482.9],[2131.7,476.5],[2115.2,469.4],[2098.9,461.9],[2082.6,454.1],[2066.4,446.2],[2050.4,438],[2034.5,429.4],[2018.9,420.4],[2003.5,411],[1988.4,401.3],[1973.6,391.1],[1958.9,380.6],[1944.6,369.8],[1930.6,358.6],[1916.9,347],[1903.4,335.1],[1890.4,322.8],[1877.8,310],[1865.8,296.7],[1854.4,282.9],[1843.7,268.5],[1833.6,253.6],[1824.2,238.3],[1815.4,222.7],[1807.3,206.7],[1799.7,190.6],[1792.4,174.3],[1785.5,157.9],[1778.9,141.5],[1772.3,125],[1765.8,108.4],[1759.3,91.6],[1752.3,75.1],[1744.2,59.4],[1734.6,44.8],[1722.8,31.7],[1709.4,20.6],[1694.8,11.7],[1679.3,5.3],[1663.5,1.7],[1647.6,0.9],[1632.2,2.6],[1617.8,6.6],[1604.8,12.8],[1593.3,20.7],[1583.7,30.1],[1576.1,40.4],[1570.8,51.3],[1567.3,62.7],[1565.1,74.3],[1563.9,85.9],[1563.2,97.5],[1562.3,109],[1560.9,120.7],[1558.2,132.6],[1553.8,144.9],[1547.6,157.5],[1539.5,170],[1529.7,182.2],[1518.1,194],[1504.8,205.1],[1490.2,215.3],[1474.4,224.2],[1457.7,231.7],[1440.4,238.3],[1422.9,244.6],[1405.5,251.3],[1388.7,259],[1372.3,267.4],[1356.3,276.5],[1340.5,286],[1324.8,295.9],[1309.3,306.1],[1294.1,316.7],[1279.1,327.7],[1264.5,339],[1250.1,350.7],[1235.8,362.5],[1221.6,374.4],[1207.2,386.1],[1192.7,397.8],[1178.1,409.3],[1163.4,420.7],[1148.6,431.9],[1133.7,443],[1118.9,454.2],[1104.2,465.6],[1089.6,477.2],[1075.2,489],[1060.8,500.8],[1046.4,512.6],[1031.9,524.4],[1017.3,536],[1002.5,547.3],[987.5,558.5],[972.2,569.3],[956.8,579.9],[941.2,590.4],[925.6,601],[910.1,611.7],[894.8,622.7],[879.9,634.1],[865.4,645.9],[851.4,658.2],[837.8,670.9],[824.4,683.9],[811,697],[797.5,710.1],[783.5,722.8],[769.1,734.8],[753.9,746],[737.9,756.1],[721.1,765],[703.8,772.9],[686,779.8],[668.1,785.7],[650,790.9],[631.8,795.5],[613.5,799.7],[595.2,803.7],[576.8,807.5],[558.5,811.1],[540.1,814.3],[521.8,817.2],[503.5,819.6],[485.3,821.7],[467.1,823.4],[449,824.6],[431,825.3],[413.2,825.3],[395.7,824.6],[378.5,823.1],[361.7,820.8],[345.4,817.6],[329.7,813.4],[314.8,808.3],[300.7,802.3],[287.4,795.3],[275.2,787.5],[264.1,778.8],[254.2,769.3],[245.3,759],[237.7,748.2],[231.2,736.8],[225.7,725],[221.4,712.8],[217.9,700.2],[215.4,687.5],[213.6,674.5],[212.6,661.4],[212.2,648.2],[212.4,635],[212.8,621.6],[213.4,608.3],[213.9,595.1],[213.9,581.9],[213.3,568.8],[211.8,555.9],[209,543.2],[204.7,530.9],[198.9,519],[191.4,507.5],[182.3,496.5],[171.4,486.1],[159,476.3],[145.3,467.1],[130.4,458.4],[114.6,450.3],[98.1,442.6],[81.4,435.3],[64.8,428.3],[48.6,421.5],[32.7,414.7],[16.8,408],[0.9,401.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":49,"ty":4,"ln":"layer_49","sr":1,"ks":{"a":{"a":0,"k":[1296.405,310.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12756.83]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface236","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3455.8,422.5],[3443,413.3],[3430,404.1],[3417,395],[3390.8,377.2],[3377.6,368.4],[3364.4,359.5],[3351.3,350.5],[3338.2,341.4],[3325.2,332],[3312.2,322.4],[3299.3,312.5],[3286.5,302.2],[3273.8,291.6],[3261.2,280.7],[3248.8,269.5],[3236.6,258],[3224.7,246.1],[3213,233.7],[3201.6,220.9],[3190.6,207.5],[3179.6,194],[3168.1,180.9],[3155.9,168.6],[3142.5,157.8],[3127.9,148.4],[3112.4,140.6],[3095.9,134.6],[3078.7,130.5],[3060.9,128.3],[3042.8,128],[3024.7,129.5],[3006.8,132.9],[2989.1,137.7],[2971.6,143.7],[2954.4,150.3],[2937.3,157.3],[2920.5,164.6],[2903.7,172.1],[2887,179.7],[2870.2,187.3],[2853.5,195.1],[2837,203.2],[2820.8,211.6],[2804.9,220.7],[2789.4,230.1],[2774.1,239.7],[2758.9,249.4],[2743.6,259],[2728.2,268.4],[2712.9,277.9],[2697.5,287.3],[2682.1,296.7],[2666.8,306.1],[2651.3,315.4],[2635.7,324.5],[2620,333.4],[2604.1,341.9],[2587.9,350.1],[2571.6,357.7],[2554.9,364.9],[2538,371.5],[2520.9,377.7],[2503.6,383.5],[2486.2,389],[2468.8,394.3],[2451.5,399.6],[2434.2,405.2],[2417.2,411.2],[2400.4,417.7],[2384,424.8],[2368.1,432.4],[2352.8,440.7],[2337.8,449.4],[2322.8,458],[2307.4,466.2],[2291.5,473.7],[2275,480.1],[2258,485.1],[2240.6,488.2],[2222.9,489.2],[2204.9,488.2],[2187,485.4],[2169.5,481.2],[2152.3,475.8],[2135.6,469.3],[2119.2,462.2],[2102.8,454.7],[2086.5,447.1],[2070.3,439.2],[2054.2,431.1],[2038.4,422.6],[2022.7,413.7],[2007.3,404.4],[1992.2,394.7],[1977.3,384.5],[1962.8,374],[1948.5,363.1],[1934.5,351.9],[1920.8,340.4],[1907.3,328.5],[1894.2,316.3],[1881.6,303.6],[1869.4,290.5],[1857.7,276.9],[1846.7,262.7],[1836.3,248.1],[1826.7,233],[1817.8,217.4],[1809.6,201.5],[1802,185.3],[1794.9,169],[1788.3,152.5],[1775.7,119.3],[1769.3,102.7],[1762.4,86.1],[1754.7,69.9],[1745.9,54.6],[1735.5,40.5],[1723.2,28.1],[1709.3,17.6],[1694.4,9.3],[1678.8,3.7],[1662.9,0.8],[1647.1,0.6],[1632,3],[1618,7.6],[1605.5,14.4],[1594.8,22.8],[1586,32.5],[1579.3,43.1],[1575,54.1],[1572.5,65.5],[1571.2,77],[1570.6,88.5],[1570.2,100],[1569.5,111.6],[1567.9,123.3],[1565,135.3],[1560.4,147.6],[1553.9,160.2],[1545.7,172.7],[1535.6,184.8],[1523.6,196.5],[1510,207.4],[1495.1,217.2],[1479,225.8],[1462,232.9],[1444.6,239],[1426.9,244.9],[1409.3,251],[1392.2,257.9],[1375.4,265.6],[1359,274],[1342.8,283],[1326.9,292.5],[1311.3,302.5],[1296,312.9],[1281,323.9],[1266.5,335.4],[1252.3,347.3],[1238.2,359.3],[1224.1,371.4],[1209.8,383.3],[1195.4,395],[1180.9,406.5],[1166.2,418],[1151.5,429.2],[1136.7,440.5],[1122,451.8],[1107.4,463.3],[1093.1,475.1],[1078.8,487.2],[1064.7,499.3],[1050.5,511.3],[1036.2,523.3],[1021.8,535.1],[1007.3,546.8],[992.6,558.2],[977.7,569.4],[962.6,580.5],[947.3,591.4],[932,602.2],[916.5,612.9],[901,623.6],[885.8,634.7],[870.9,646.1],[856.6,658.1],[842.8,670.5],[829.1,683.2],[801.9,709],[787.9,721.7],[773.5,733.8],[758.4,745.1],[742.5,755.3],[725.9,764.5],[708.7,772.6],[691.1,779.8],[673.3,786],[655.2,791.4],[637.1,796.3],[618.8,800.7],[600.5,804.9],[582.2,808.9],[563.9,812.6],[545.6,815.9],[527.3,818.8],[509,821.4],[490.7,823.6],[472.5,825.3],[454.4,826.6],[436.5,827.3],[418.7,827.4],[401.1,826.8],[383.9,825.3],[367.1,823],[350.9,819.8],[335.2,815.6],[320.3,810.5],[306.1,804.5],[292.9,797.5],[280.7,789.6],[269.6,780.9],[259.7,771.4],[250.8,761.2],[243.2,750.3],[236.6,739],[231.2,727.1],[226.8,714.9],[223.4,702.4],[220.9,689.6],[219.1,676.7],[218.2,663.6],[217.8,650.4],[218.1,637.1],[218.7,623.8],[219.3,610.4],[219.6,597.2],[219.5,584],[218.5,571],[216.6,558.2],[213.3,545.7],[208.4,533.5],[201.9,521.7],[193.8,510.4],[184,499.6],[172.5,489.4],[159.6,479.8],[145.4,470.7],[130.1,462.2],[114.1,454.2],[97.5,446.6],[80.8,439.4],[64.2,432.5],[48.1,425.7],[32.2,418.9],[16.4,412.3],[0.7,405.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":50,"ty":4,"ln":"layer_50","sr":1,"ks":{"a":{"a":0,"k":[1294.53,312.385]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12796.21,12763.24]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface241","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.4,415.1],[16.1,421.8],[31.9,428.4],[47.8,435],[63.9,441.8],[80.5,448.7],[97.1,455.7],[113.8,463.1],[130.1,470.9],[145.9,479.2],[160.9,487.9],[174.9,497.2],[187.5,507.1],[198.5,517.5],[207.9,528.5],[215.8,539.9],[221.9,551.8],[226.3,564.1],[229.4,576.6],[231.1,589.5],[231.8,602.5],[231.7,615.7],[231.2,629],[230.5,642.3],[230.1,655.6],[230.3,668.9],[231.2,682],[232.9,694.9],[235.4,707.7],[238.8,720.2],[243.2,732.4],[248.5,744.3],[255.1,755.7],[262.7,766.5],[271.5,776.7],[281.5,786.2],[292.6,795],[304.8,802.8],[318,809.8],[332.1,815.9],[347.1,821],[362.8,825.1],[379.1,828.3],[395.9,830.5],[413.1,831.9],[430.6,832.5],[448.4,832.3],[466.4,831.5],[484.5,830.1],[502.7,828.1],[520.9,825.8],[539.2,822.9],[557.5,819.7],[575.7,816],[594,812],[612.2,807.7],[630.4,803],[648.5,798],[666.5,792.5],[684.4,786.5],[702,779.8],[719.4,772.3],[736.5,763.9],[753,754.7],[769,744.6],[784.2,733.5],[798.8,721.7],[813.1,709.5],[827.1,697],[841.2,684.6],[855.2,672.3],[869.5,660.2],[884.2,648.6],[899.2,637.4],[914.5,626.4],[929.7,615.4],[944.8,604.2],[959.4,592.6],[973.6,580.7],[987.7,568.5],[1001.6,556.2],[1015.6,543.9],[1029.5,531.7],[1043.5,519.4],[1057.5,507.2],[1071.5,494.9],[1085.5,482.7],[1099.6,470.5],[1113.7,458.5],[1128,446.6],[1142.4,434.9],[1156.9,423.3],[1171.4,411.8],[1185.9,400.2],[1200.4,388.6],[1214.8,376.9],[1229.1,365.1],[1243.2,353.1],[1257.3,341.1],[1271.6,329.3],[1286.3,318.1],[1301.5,307.4],[1317.1,297.5],[1333.1,288.2],[1349.6,279.7],[1366.4,272],[1383.5,265],[1400.9,258.6],[1418.6,252.9],[1436.4,247.7],[1454.3,242.6],[1471.9,237],[1489.1,230.4],[1505.5,222.3],[1521,212.9],[1535.1,202.4],[1547.7,191.1],[1558.3,179.1],[1567.2,166.6],[1574.1,154.1],[1579.3,141.6],[1582.6,129.5],[1584.5,117.6],[1585.2,106],[1585.2,94.6],[1584.7,83.2],[1584.4,72],[1585.1,60.8],[1587.5,49.8],[1592.4,38.9],[1599.5,28.5],[1608.7,19.2],[1619.9,11.4],[1633,5.6],[1647.4,2],[1662.8,0.7],[1678.7,2.1],[1694.6,6.3],[1710,13.1],[1724.7,22.2],[1738,33.4],[1749.7,46.4],[1759.9,60.9],[1768.7,76.4],[1776.3,92.7],[1782.8,109.2],[1788.6,126],[1794.4,142.8],[1800.5,159.5],[1807.4,175.9],[1815.3,191.9],[1823.9,207.6],[1833.3,222.8],[1843.6,237.4],[1854.6,251.5],[1866.2,265.2],[1878.2,278.4],[1890.6,291.4],[1903.3,303.9],[1916.3,316.2],[1929.6,328.2],[1943.2,339.8],[1957.1,351.1],[1971.3,362.1],[1985.9,372.6],[2000.7,382.6],[2015.9,392.1],[2031.5,401.2],[2047.2,409.8],[2063.2,417.9],[2079.4,425.8],[2095.7,433.4],[2112,440.8],[2128.4,448.1],[2144.9,455.1],[2161.6,461.5],[2178.7,467],[2196.2,471.5],[2213.9,474.5],[2231.8,476],[2249.5,475.6],[2267.1,473],[2284.2,468.6],[2300.8,462.5],[2316.7,455.1],[2331.8,446.5],[2346.4,437.2],[2360.7,427.6],[2375.2,418],[2390.1,409],[2405.4,400.5],[2421.2,392.6],[2437.5,385.4],[2454.2,378.9],[2471.3,373],[2488.6,367.4],[2506,361.9],[2523.3,356.4],[2540.6,350.7],[2557.7,344.8],[2574.7,338.4],[2591.4,331.5],[2608,324.1],[2624.2,316.1],[2640.2,307.7],[2655.8,298.8],[2671.3,289.5],[2686.6,280.1],[2701.8,270.5],[2717,260.9],[2732.3,251.4],[2747.5,241.8],[2762.6,232.1],[2777.8,222.3],[2792.9,212.5],[2808.3,202.9],[2823.8,193.5],[2839.7,184.5],[2855.8,175.8],[2872.2,167.4],[2888.7,159.4],[2905.4,151.6],[2922.2,144.2],[2939.1,137.2],[2956.4,130.7],[2973.9,124.8],[2991.6,119.8],[3009.5,116],[3027.5,113.7],[3045.6,113.3],[3063.5,114.7],[3080.9,118],[3097.7,123.1],[3113.7,130.2],[3128.6,139.1],[3142.5,149.6],[3155.1,161.5],[3166.4,174.9],[3176.9,189],[3187.1,203.5],[3197.3,217.7],[3208.2,231.2],[3219.6,244],[3231.3,256.2],[3243.4,267.9],[3255.8,279.1],[3268.4,289.9],[3281.1,300.3],[3294,310.3],[3306.9,320],[3320,329.4],[3333.1,338.5],[3346.3,347.5],[3359.4,356.4],[3372.6,365.3],[3385.8,374],[3398.9,382.8],[3412.1,391.6],[3425.2,400.3],[3438.3,409],[3451.4,417.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":51,"ty":4,"ln":"layer_51","sr":1,"ks":{"a":{"a":0,"k":[1295.655,311.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12759.87]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface246","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3454.2,420.3],[3441.2,411.3],[3428.2,402.4],[3415.1,393.5],[3402,384.7],[3388.8,376],[3375.6,367.3],[3362.4,358.5],[3349.2,349.6],[3336.1,340.6],[3323,331.3],[3310,321.8],[3297.1,312],[3284.2,301.9],[3271.5,291.4],[3258.9,280.5],[3246.6,269.3],[3234.4,257.7],[3222.5,245.7],[3211,233.1],[3199.9,219.9],[3189.3,206],[3178.7,192],[3167.8,178.3],[3156,165.5],[3143,154],[3128.8,144.1],[3113.6,135.7],[3097.4,129.2],[3080.3,124.6],[3062.7,121.9],[3044.7,121],[3026.6,122],[3008.6,124.8],[2990.8,129.1],[2973.2,134.6],[2955.8,140.8],[2938.7,147.6],[2921.7,154.7],[2904.9,162.1],[2888.2,169.8],[2871.6,177.7],[2855.1,185.7],[2838.7,194.1],[2822.7,202.9],[2807.1,212.2],[2791.7,221.8],[2776.5,231.6],[2761.4,241.4],[2746.1,250.9],[2730.8,260.4],[2715.4,269.9],[2700.1,279.3],[2684.8,288.9],[2669.6,298.4],[2654.2,307.7],[2638.6,316.8],[2622.8,325.5],[2606.7,333.7],[2590.4,341.5],[2573.7,348.8],[2556.9,355.5],[2539.9,361.8],[2522.7,367.7],[2505.3,373.3],[2488,378.7],[2470.6,384.1],[2453.3,389.6],[2436.2,395.5],[2419.5,402.1],[2403.2,409.2],[2387.3,416.9],[2371.9,425.3],[2357,434.2],[2342.3,443.3],[2327.5,452.3],[2312.4,460.8],[2296.5,468.3],[2280,474.6],[2262.9,479.4],[2245.5,482.4],[2227.7,483.1],[2209.8,481.9],[2192,479.1],[2174.5,474.7],[2157.4,469.3],[2140.7,462.8],[2124.2,455.8],[2107.9,448.3],[2091.5,440.8],[2075.3,433.1],[2059.2,425.1],[2043.3,416.7],[2027.6,408],[2012.1,398.7],[1997,389.1],[1982.1,379],[1967.6,368.5],[1953.3,357.6],[1939.4,346.3],[1925.7,334.7],[1912.3,322.8],[1899.2,310.6],[1886.5,298.1],[1874.2,285.1],[1862.3,271.7],[1851,257.7],[1840.3,243.4],[1830.3,228.5],[1821.2,213.1],[1812.8,197.3],[1805.2,181.1],[1798.2,164.7],[1792,148.1],[1786,131.4],[1780,114.7],[1773.5,98.1],[1766.3,81.7],[1758,65.8],[1748.5,50.9],[1737.4,37.4],[1724.5,25.6],[1710.2,15.8],[1695,8.2],[1679.2,3.3],[1663.3,1.2],[1647.7,1.7],[1632.9,4.7],[1619.4,9.9],[1607.5,17.2],[1597.5,26.1],[1589.6,36.2],[1583.8,46.9],[1580.5,58],[1578.9,69.2],[1578.4,80.6],[1578.4,92.1],[1578.3,103.5],[1577.6,115.1],[1575.8,126.9],[1572.7,138.9],[1567.9,151.3],[1561.1,163.9],[1552.6,176.4],[1542.2,188.5],[1529.9,200],[1516,210.6],[1500.8,220.2],[1484.5,228.5],[1467.4,235.3],[1449.9,241.1],[1432,246.5],[1414.3,252.1],[1396.9,258.4],[1379.7,265.4],[1362.9,273.1],[1346.5,281.5],[1330.3,290.5],[1314.5,300.1],[1299,310.4],[1284,321.3],[1269.5,332.8],[1255.4,344.7],[1241.3,356.8],[1227.2,368.9],[1213,380.8],[1198.7,392.6],[1184.2,404.2],[1169.6,415.6],[1154.9,427],[1140.3,438.4],[1125.7,449.9],[1111.3,461.6],[1097,473.6],[1082.9,485.7],[1068.9,498],[1054.9,510.2],[1040.8,522.3],[1026.6,534.4],[1012.3,546.3],[998,558.1],[983.5,569.9],[968.9,581.5],[954.1,592.9],[939.1,604],[923.7,614.9],[908.3,625.6],[892.9,636.5],[877.9,647.7],[863.4,659.4],[849.2,671.6],[835.3,684.1],[821.5,696.8],[807.7,709.5],[793.7,722],[779.2,734],[764.1,745.2],[748.2,755.5],[731.6,764.7],[714.6,773],[697.1,780.4],[679.4,786.9],[661.4,792.6],[643.3,797.8],[625.1,802.5],[606.9,806.9],[588.6,811.1],[570.3,814.9],[552,818.3],[533.7,821.4],[515.4,824.1],[497.2,826.4],[479,828.2],[460.9,829.6],[442.9,830.4],[425.2,830.5],[407.6,829.9],[390.4,828.4],[373.6,826.1],[357.3,822.9],[341.7,818.8],[326.7,813.7],[312.6,807.6],[299.4,800.7],[287.2,792.8],[276.1,784.1],[266.1,774.6],[257.3,764.3],[249.6,753.5],[243.1,742.1],[237.7,730.3],[233.3,718.1],[229.9,705.5],[227.3,692.8],[225.7,679.8],[224.7,666.7],[224.5,653.5],[224.8,640.2],[225.5,626.9],[226.1,613.6],[226.3,600.3],[225.9,587.2],[224.6,574.3],[222.1,561.6],[218.2,549.2],[212.7,537.2],[205.6,525.6],[196.8,514.4],[186.4,503.8],[174.3,493.8],[160.9,484.3],[146.2,475.4],[130.7,467],[114.5,459.1],[97.9,451.7],[81.1,444.5],[64.6,437.6],[48.4,430.9],[32.6,424.2],[16.9,417.6],[1.1,410.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":52,"ty":4,"ln":"layer_52","sr":1,"ks":{"a":{"a":0,"k":[1292.655,313.135]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12766.61]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface251","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.6,423.8],[3433.4,415.5],[3420.2,407.1],[3394,389.9],[3380.9,381.1],[3367.7,372.2],[3354.6,363.3],[3341.5,354.3],[3328.3,345.3],[3315.2,336.3],[3302.1,327.2],[3289,318],[3276,308.4],[3263.1,298.5],[3250.3,288.2],[3237.7,277.5],[3225.4,266.2],[3213.4,254.4],[3201.7,242],[3190.6,229],[3179.9,215.2],[3170,200.7],[3160.2,185.9],[3150.1,171.4],[3139.1,157.7],[3126.8,145.3],[3113.3,134.3],[3098.7,124.9],[3083,117.3],[3066.5,111.6],[3049.2,107.8],[3031.5,105.8],[3013.5,105.7],[2995.5,107.4],[2977.5,110.7],[2959.7,115.2],[2942.1,120.8],[2924.8,127.1],[2907.7,134],[2891,141.4],[2874.4,149.3],[2858,157.6],[2841.8,166.1],[2825.7,175],[2810,184.1],[2794.5,193.6],[2779.2,203.2],[2764,212.9],[2748.9,222.7],[2733.8,232.5],[2718.7,242.3],[2703.6,252],[2688.5,261.6],[2673.3,271.2],[2657.9,280.6],[2642.3,289.6],[2626.5,298.3],[2610.4,306.4],[2594,314],[2577.3,321.1],[2560.4,327.7],[2543.3,333.7],[2526.1,339.4],[2508.9,345],[2491.5,350.5],[2474.3,356.2],[2457.1,362.2],[2440.4,368.8],[2424,375.9],[2408.3,383.9],[2393.2,392.6],[2378.4,401.9],[2364.1,411.7],[2350,421.8],[2335.8,431.8],[2321.3,441.3],[2306.2,449.9],[2290.3,457.1],[2273.5,462.8],[2256.3,466.8],[2238.7,468.8],[2220.9,468.8],[2203.1,467],[2185.5,463.6],[2168.1,459],[2151,453.4],[2134.3,447],[2117.8,440.1],[2101.3,433],[2084.9,425.7],[2068.6,418.3],[2052.3,410.6],[2036.3,402.7],[2020.4,394.2],[2004.8,385.4],[1989.5,376],[1974.6,366.1],[1960,355.7],[1945.8,344.8],[1931.9,333.4],[1918.4,321.7],[1905.3,309.6],[1892.4,297.2],[1879.9,284.6],[1867.5,271.7],[1855.3,258.5],[1843.6,245],[1832.3,231.2],[1821.6,216.8],[1811.9,201.9],[1802.9,186.4],[1794.8,170.5],[1787.7,154.2],[1781.7,137.5],[1776,120.7],[1770.2,103.9],[1763.7,87.4],[1755.8,71.3],[1746.5,56.1],[1735.8,42],[1723.6,29.5],[1709.7,19],[1694.8,10.6],[1679.1,4.6],[1663.2,1.2],[1647.4,0.6],[1632.3,2.5],[1618.2,6.8],[1605.7,13.2],[1595.2,21.5],[1586.7,31.1],[1580.5,41.7],[1576.5,52.7],[1574.9,63.7],[1574.9,74.7],[1575.9,85.9],[1576.8,97.1],[1577.1,108.5],[1576.3,120.2],[1574.3,132.1],[1570.7,144.3],[1565.3,156.8],[1558,169.4],[1548.9,181.7],[1538,193.7],[1525.2,204.9],[1510.8,215.2],[1495.2,224.4],[1478.7,232.4],[1461.5,238.9],[1443.9,244.4],[1426,249.3],[1408,254.2],[1390.2,259.5],[1372.6,265.2],[1355.2,271.6],[1338.2,278.7],[1321.4,286.7],[1305.1,295.4],[1289.2,305],[1273.8,315.2],[1258.9,326.1],[1244.4,337.6],[1230,349.3],[1215.8,361],[1201.3,372.7],[1186.9,384.3],[1172.4,395.9],[1158,407.5],[1143.6,419.3],[1129.4,431.1],[1115.2,443.1],[1101,455],[1086.8,467.1],[1072.7,479.2],[1058.6,491.3],[1044.6,503.6],[1030.7,516],[1017,528.4],[1003.3,541],[989.8,553.7],[976.3,566.4],[962.8,579.2],[949,591.7],[934.9,603.9],[920.3,615.5],[905.4,626.9],[890.4,638.2],[875.5,649.5],[860.9,661.2],[846.5,673.2],[832.3,685.3],[803.7,709.7],[789.2,721.6],[774.3,733.2],[758.9,744],[742.9,753.9],[726.3,763],[709.3,771.3],[691.9,778.9],[674.4,785.8],[656.6,792.1],[638.7,797.9],[620.7,803.2],[602.5,808.2],[584.4,812.8],[566.1,817],[547.9,820.9],[529.6,824.3],[511.4,827.3],[493.1,829.8],[475,831.8],[456.9,833.3],[438.9,834.2],[421.1,834.5],[403.5,834],[386.3,832.6],[369.5,830.4],[353.2,827.2],[337.5,823.1],[322.6,818],[308.4,812],[295.2,805],[283,797.2],[271.9,788.4],[261.9,778.9],[253.1,768.7],[245.5,757.8],[239,746.4],[233.6,734.6],[229.2,722.3],[225.9,709.8],[223.4,697],[221.7,684.1],[220.9,671],[220.7,657.8],[221.1,644.5],[221.7,631.2],[222.2,617.9],[222.1,604.7],[221.1,591.7],[218.9,579],[215.4,566.5],[210.3,554.4],[203.4,542.7],[195,531.4],[184.9,520.7],[173.3,510.4],[160.2,500.7],[145.8,491.6],[130.5,482.9],[114.5,474.8],[98.1,467.1],[81.4,459.8],[64.7,452.8],[48.2,446],[32,439.2],[16.1,432.5],[0.3,425.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":53,"ty":4,"ln":"layer_53","sr":1,"ks":{"a":{"a":0,"k":[1291.905,313.885]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12769.99]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface256","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3444.6,421.6],[3431.3,413.6],[3418.1,405.3],[3405,396.9],[3391.8,388.3],[3378.7,379.5],[3365.7,370.5],[3339.5,352.3],[3326.4,343.2],[3313.3,334.1],[3300.2,325.1],[3287.1,315.9],[3274,306.5],[3261.1,296.7],[3248.3,286.5],[3235.7,275.7],[3223.5,264.4],[3211.5,252.5],[3200,239.9],[3189,226.6],[3178.6,212.6],[3169,197.8],[3159.5,182.8],[3149.7,168.1],[3139,154],[3127.1,141.2],[3113.9,129.8],[3099.7,119.9],[3084.3,111.7],[3068,105.5],[3050.9,101.1],[3033.3,98.6],[3015.4,97.9],[2997.4,99.1],[2979.4,101.9],[2961.6,106],[2943.9,111.2],[2926.5,117.3],[2909.4,124.1],[2892.6,131.5],[2876.1,139.5],[2859.8,147.9],[2843.7,156.6],[2827.9,165.6],[2812.2,174.9],[2796.7,184.3],[2781.4,193.8],[2766.2,203.5],[2751.1,213.4],[2736.1,223.3],[2721.2,233.2],[2706.3,243.1],[2691.2,252.8],[2675.9,262.2],[2660.4,271.4],[2644.6,280.2],[2628.6,288.5],[2612.3,296.3],[2595.7,303.5],[2578.9,310.3],[2561.9,316.6],[2544.8,322.4],[2527.6,328],[2510.3,333.6],[2493.1,339.3],[2476.1,345.4],[2459.3,352],[2442.9,359.3],[2427.1,367.2],[2412,376.1],[2397.5,385.6],[2383.4,395.7],[2369.5,406.1],[2355.6,416.6],[2341.7,426.9],[2327.2,436.5],[2312,445],[2295.9,451.8],[2279,457],[2261.6,460.4],[2243.9,461.9],[2226.2,461.5],[2208.4,459.3],[2190.9,455.6],[2173.5,450.8],[2156.5,445.2],[2139.7,438.8],[2123.2,432],[2090.2,417.8],[2073.8,410.6],[2057.6,403.1],[2041.4,395.3],[2025.4,387.1],[2009.7,378.5],[1994.3,369.3],[1979.3,359.6],[1964.7,349.3],[1950.4,338.5],[1936.6,327.1],[1923.2,315.3],[1910.2,303.1],[1897.5,290.6],[1885,277.8],[1872.8,264.9],[1860.6,251.8],[1848.7,238.5],[1837.2,224.8],[1826.3,210.7],[1816.2,196],[1806.8,180.8],[1798.5,165.1],[1791.1,148.9],[1785,132.2],[1779.3,115.4],[1773.5,98.6],[1766.8,82.2],[1758.6,66.3],[1748.9,51.4],[1737.6,37.8],[1724.9,25.9],[1710.7,16],[1695.5,8.3],[1679.6,3.1],[1663.7,0.5],[1648.1,0.6],[1633.3,3.3],[1619.6,8.3],[1607.7,15.2],[1597.8,23.9],[1590.2,33.8],[1584.7,44.6],[1581.6,55.6],[1580.8,66.6],[1581.5,77.5],[1583,88.5],[1584.3,99.7],[1584.7,111.1],[1583.9,122.8],[1581.7,134.8],[1577.9,147],[1572.2,159.6],[1564.7,172.1],[1555.3,184.4],[1544.1,196.2],[1531.1,207.3],[1516.7,217.5],[1501,226.6],[1484.4,234.5],[1467.2,241],[1449.5,246.5],[1431.6,251.3],[1413.6,256],[1395.7,260.8],[1377.9,266.1],[1360.4,271.8],[1343,278.3],[1326.1,285.7],[1309.5,294],[1293.3,303],[1277.6,312.8],[1262.4,323.3],[1247.6,334.3],[1233,345.6],[1218.4,357.1],[1203.9,368.5],[1189.3,380],[1174.8,391.6],[1160.4,403.3],[1146.2,415.2],[1132.1,427.2],[1118.1,439.3],[1104,451.4],[1089.8,463.4],[1075.7,475.4],[1061.5,487.5],[1047.5,499.8],[1033.7,512.2],[1020.2,524.9],[1006.8,537.8],[993.6,550.8],[967.4,577.2],[954.2,590.2],[940.6,602.9],[926.5,615.1],[912,626.9],[897.4,638.6],[882.7,650.3],[868.3,662.2],[853.8,674.1],[839.4,686.1],[825,698],[810.4,709.9],[795.6,721.6],[780.5,732.7],[764.9,743.3],[748.7,753],[732.1,762],[715.1,770.3],[697.8,777.9],[680.3,785],[662.7,791.5],[644.8,797.6],[626.9,803.3],[608.8,808.5],[590.7,813.4],[572.5,817.9],[554.3,821.9],[536.1,825.5],[517.8,828.7],[499.6,831.4],[481.5,833.5],[463.4,835.1],[445.4,836.1],[427.6,836.4],[410,835.9],[392.8,834.6],[376,832.4],[359.6,829.3],[343.9,825.3],[329,820.2],[314.8,814.2],[301.5,807.2],[289.3,799.4],[278.2,790.6],[268.3,781.1],[259.5,770.9],[251.8,760],[245.3,748.6],[240,736.7],[235.7,724.5],[232.3,711.9],[229.9,699.2],[228.3,686.2],[227.4,673.2],[227.3,660],[227.7,646.7],[228.3,633.3],[228.6,620.1],[228.3,607],[226.8,594.1],[224.1,581.4],[220,569.1],[214.3,557.1],[206.9,545.6],[197.7,534.5],[187,523.8],[174.8,513.8],[161.2,504.2],[146.5,495.2],[130.9,486.7],[114.7,478.7],[98.3,471.1],[81.6,463.9],[65,456.9],[48.5,450.1],[32.2,443.4],[16.3,436.7],[0.4,430.1]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":54,"ty":4,"ln":"layer_54","sr":1,"ks":{"a":{"a":0,"k":[1295.655,315.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.21,12776.39]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface261","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.9,439.4],[16.7,446],[32.7,452.7],[49,459.4],[65.4,466.1],[82,473],[98.7,480.1],[115.2,487.6],[131.6,495.4],[147.6,503.7],[162.9,512.4],[177.2,521.6],[190.4,531.4],[202.3,541.7],[212.7,552.4],[221.5,563.6],[228.5,575.3],[233.8,587.4],[237.6,599.8],[239.9,612.6],[240.9,625.6],[241.1,638.7],[240.8,652],[240.5,665.2],[240.7,678.4],[241.4,691.5],[242.9,704.4],[245.2,717.2],[248.4,729.8],[252.7,742.1],[258,753.9],[264.4,765.4],[272.1,776.3],[280.9,786.5],[290.9,796],[302,804.8],[314.3,812.6],[327.5,819.5],[341.7,825.5],[356.7,830.5],[372.5,834.5],[388.8,837.5],[405.7,839.6],[423,840.8],[440.6,841.1],[458.4,840.7],[476.3,839.5],[494.5,837.6],[512.6,835.2],[530.8,832.2],[549,828.7],[567.2,824.7],[585.3,820.3],[603.4,815.4],[621.4,810],[639.3,804.3],[657.1,798.1],[674.7,791.5],[692.2,784.4],[709.5,776.9],[726.6,768.9],[743.4,760.4],[760,751.5],[776.3,741.9],[792.2,731.9],[807.8,721.3],[823.1,710.3],[838.1,699],[852.9,687.4],[867.4,675.6],[881.7,663.5],[895.8,651.3],[909.8,638.8],[923.4,626.1],[936.9,613.2],[950.1,600.1],[963.1,586.7],[975.9,573.2],[988.6,559.7],[1001.4,546.1],[1014.2,532.7],[1027.2,519.5],[1040.4,506.4],[1053.9,493.7],[1067.6,481.2],[1081.6,469],[1095.7,456.9],[1109.8,444.8],[1123.8,432.6],[1137.7,420.4],[1151.8,408.3],[1165.9,396.4],[1180.4,384.8],[1195,373.4],[1209.8,362.3],[1224.7,351.3],[1239.6,340.5],[1254.8,329.9],[1270.3,319.9],[1286.1,310.3],[1302.4,301.6],[1319.1,293.6],[1336.2,286.4],[1353.6,280.1],[1371.2,274.7],[1389.1,269.9],[1407.1,265.6],[1425.2,261.4],[1443.2,257],[1461.1,252.2],[1478.7,246.6],[1495.9,240.1],[1512.5,232.3],[1528.3,223.3],[1542.9,213.3],[1556.2,202.4],[1567.8,190.8],[1577.7,178.6],[1585.7,166.1],[1591.9,153.6],[1596.2,141.2],[1598.6,129.1],[1599.5,117.3],[1598.8,105.9],[1596.9,94.9],[1594.5,84.1],[1592.7,73.4],[1592.1,62.6],[1593.8,51.5],[1597.7,40.5],[1603.9,30.1],[1612.4,20.8],[1623.1,12.8],[1635.7,6.6],[1649.7,2.6],[1664.9,0.9],[1680.7,1.9],[1696.7,5.5],[1712.4,11.6],[1727.3,20.1],[1740.9,30.8],[1753.1,43.4],[1763.7,57.6],[1772.7,72.9],[1779.9,89.1],[1786.1,105.7],[1792.1,122.3],[1798.7,138.8],[1806.7,154.5],[1815.9,169.8],[1826,184.5],[1836.7,198.8],[1847.8,212.7],[1859.3,226.2],[1871,239.6],[1882.9,252.8],[1894.8,266],[1907,279],[1919.4,291.7],[1932.2,304],[1945.7,315.8],[1959.6,326.9],[1974,337.4],[1989,347.3],[2004.3,356.4],[2020,365],[2036,373],[2052.1,380.7],[2068.4,388],[2084.9,395.2],[2101.3,402.2],[2117.8,409.1],[2134.4,416],[2150.9,422.8],[2167.7,429.2],[2184.6,435],[2201.8,440.1],[2219.3,444.2],[2236.9,447.1],[2254.6,448.4],[2272.4,448],[2290,445.8],[2307.2,441.8],[2323.7,436],[2339.3,428.3],[2354,419.2],[2368.1,408.9],[2381.7,398],[2394.9,386.7],[2408,375.4],[2421.3,364.3],[2435.1,353.7],[2449.6,343.9],[2464.8,334.9],[2480.5,326.7],[2496.8,319.3],[2513.5,312.6],[2530.4,306.5],[2547.5,300.7],[2564.7,294.9],[2581.8,288.9],[2598.8,282.6],[2615.6,276],[2632.3,268.9],[2648.7,261.3],[2664.8,253.2],[2680.7,244.6],[2696.2,235.5],[2711.3,226],[2726.3,216.1],[2741.1,206.1],[2755.9,196],[2770.8,186.1],[2785.9,176.3],[2801,166.6],[2816.4,157.1],[2831.9,147.7],[2847.6,138.5],[2863.5,129.6],[2879.7,121.1],[2896.2,113.2],[2913.1,105.8],[2930.2,99.3],[2947.7,93.7],[2965.5,89.1],[2983.4,85.9],[3001.4,84.1],[3019.3,83.9],[3037,85.7],[3054.2,89.3],[3070.9,94.8],[3086.6,102.2],[3101.4,111.3],[3115,122.1],[3127.5,134.4],[3138.8,147.9],[3148.8,162.4],[3158,177.6],[3167,192.9],[3176.3,208],[3186.2,222.5],[3196.8,236.2],[3208,249.2],[3219.7,261.5],[3231.9,273],[3244.3,283.9],[3257.1,294.2],[3270,304],[3283,313.4],[3296.1,322.5],[3309.2,331.5],[3322.4,340.5],[3335.4,349.7],[3348.5,358.9],[3361.5,368.1],[3374.6,377],[3387.7,385.7],[3400.9,394],[3414.1,402.2],[3427.4,410.2],[3440.6,418.1],[3453.9,426]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":55,"ty":4,"ln":"layer_55","sr":1,"ks":{"a":{"a":0,"k":[1296.405,315.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.53,12773.02]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface266","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3455.9,428.3],[3442.6,420.4],[3429.3,412.5],[3416.1,404.4],[3402.9,396.1],[3389.7,387.6],[3376.6,378.9],[3363.6,369.8],[3350.5,360.6],[3337.5,351.4],[3324.4,342.2],[3311.3,333.2],[3298.2,324.2],[3285.1,315],[3272,305.7],[3259.1,295.9],[3246.3,285.7],[3233.8,274.9],[3221.6,263.5],[3209.7,251.4],[3198.4,238.6],[3187.6,225.1],[3177.4,210.8],[3168,195.9],[3158.7,180.7],[3149.2,165.7],[3138.9,151.4],[3127.3,138.3],[3114.5,126.4],[3100.5,116],[3085.5,107.4],[3069.4,100.5],[3052.6,95.6],[3035.1,92.5],[3017.4,91.3],[2999.4,92],[2981.4,94.2],[2963.5,97.9],[2945.8,102.8],[2928.3,108.7],[2911.2,115.4],[2894.4,122.8],[2877.9,130.8],[2861.7,139.3],[2845.7,148.1],[2829.9,157.2],[2814.3,166.5],[2798.9,176],[2783.6,185.5],[2768.4,195.2],[2753.4,205.1],[2738.5,215.1],[2723.7,225.1],[2708.8,235.1],[2693.7,244.8],[2678.4,254.1],[2662.7,263],[2646.8,271.4],[2630.5,279.4],[2614,286.8],[2597.3,293.7],[2580.4,300.2],[2563.3,306.3],[2546.2,312],[2529,317.7],[2511.8,323.4],[2494.9,329.5],[2478.1,336.2],[2461.8,343.5],[2445.9,351.6],[2430.7,360.5],[2416.3,370.2],[2402.4,380.5],[2388.8,391.3],[2375.3,402.2],[2361.7,413.1],[2347.7,423.5],[2333.2,432.9],[2317.9,441.1],[2301.6,447.5],[2284.5,452.1],[2267,454.9],[2249.2,455.8],[2231.5,454.9],[2213.8,452.3],[2196.3,448.5],[2179,443.5],[2162,437.7],[2145.3,431.4],[2128.7,424.6],[2095.7,410.6],[2079.3,403.5],[2062.9,396.2],[2046.7,388.7],[2030.6,380.7],[2014.8,372.4],[1999.3,363.5],[1984.1,354],[1969.3,343.9],[1955,333.2],[1941.2,321.9],[1927.8,310.1],[1914.9,297.8],[1902.4,285.2],[1890.1,272.3],[1878,259.2],[1865.9,246.1],[1854,232.8],[1842.4,219.3],[1831.3,205.3],[1820.8,190.9],[1811.2,175.9],[1802.4,160.4],[1794.8,144.4],[1788.5,127.8],[1782.6,111.1],[1776.7,94.4],[1769.8,78.1],[1761.2,62.4],[1751.1,47.9],[1739.4,34.7],[1726.2,23.4],[1711.6,14.2],[1696.1,7.3],[1680.2,2.9],[1664.3,1],[1648.9,2],[1634.4,5.4],[1621.2,11],[1609.9,18.4],[1600.8,27.5],[1593.9,37.6],[1589.2,48.5],[1586.8,59.6],[1586.7,70.5],[1588.1,81.3],[1590,92.2],[1591.7,103.2],[1592.2,114.7],[1591.4,126.4],[1589,138.5],[1585,150.8],[1579,163.3],[1571.2,175.8],[1561.6,188.1],[1550.2,199.8],[1537,210.8],[1522.5,220.9],[1506.7,229.9],[1490.1,237.8],[1472.9,244.2],[1455.3,249.7],[1437.4,254.6],[1401.4,263.6],[1383.5,268.3],[1365.7,273.6],[1348.2,279.5],[1331,286.3],[1314.1,294],[1297.7,302.6],[1281.7,311.8],[1266.2,321.8],[1251,332.4],[1236.1,343.3],[1221.4,354.4],[1206.6,365.6],[1191.9,377],[1177.4,388.4],[1163.1,400.1],[1148.9,412.1],[1134.9,424.3],[1120.9,436.5],[1106.9,448.6],[1092.8,460.7],[1078.6,472.7],[1064.5,484.7],[1050.5,497],[1036.9,509.6],[1023.5,522.5],[1010.3,535.6],[997.4,548.9],[984.6,562.3],[971.8,575.8],[958.9,589.2],[945.7,602.3],[932,615],[918.1,627.4],[903.9,639.6],[889.6,651.7],[875.3,663.7],[860.9,675.7],[846.4,687.5],[831.8,699.3],[817,710.9],[801.9,722.2],[786.5,733],[770.7,743.3],[754.5,752.9],[737.8,761.8],[720.9,770.1],[703.6,777.9],[686.3,785.2],[668.7,792],[650.9,798.3],[633.1,804.3],[615.1,809.8],[597.1,814.9],[578.9,819.6],[560.8,823.9],[542.6,827.7],[524.3,831],[506.1,833.8],[487.9,836.1],[469.9,837.8],[451.9,838.9],[434.1,839.3],[416.5,838.9],[399.2,837.6],[382.4,835.5],[366,832.4],[350.3,828.4],[335.3,823.4],[321.1,817.4],[307.9,810.4],[295.7,802.6],[284.6,793.8],[274.6,784.3],[265.8,774.1],[258.2,763.2],[251.7,751.8],[246.4,739.9],[242.1,727.6],[238.8,715.1],[236.4,702.3],[234.9,689.4],[234,676.3],[233.8,663.1],[234.2,649.8],[234.7,636.5],[234.8,623.3],[234.2,610.3],[232.3,597.4],[229.1,584.9],[224.4,572.7],[218.1,560.8],[209.9,549.4],[200.2,538.5],[188.8,528.1],[176.1,518.2],[162.1,508.8],[147.1,499.9],[131.3,491.6],[115,483.6],[98.5,476.1],[81.8,469],[65.2,462],[48.8,455.3],[32.5,448.5],[16.5,441.8],[0.6,435.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":56,"ty":4,"ln":"layer_56","sr":1,"ks":{"a":{"a":0,"k":[1293.78,316.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.53,12779.77]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface271","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.1,431.9],[3435.9,423.8],[3422.7,415.7],[3396.3,399.7],[3383,391.7],[3369.8,383.5],[3356.6,375],[3343.4,366.2],[3330.4,357.2],[3317.3,348.1],[3304.2,339],[3291.1,330],[3278,321.1],[3264.9,311.9],[3251.9,302.5],[3239,292.6],[3226.3,282.2],[3213.9,271.1],[3201.9,259.4],[3190.4,246.9],[3179.3,233.7],[3168.9,219.8],[3159.1,205.2],[3150.1,190],[3141.3,174.5],[3132.3,159.1],[3122.5,144.4],[3111.6,130.6],[3099.4,118],[3086.1,106.8],[3071.7,97.2],[3056.2,89.3],[3039.8,83.3],[3022.8,79.1],[3005.2,76.8],[2987.4,76.3],[2969.4,77.7],[2951.5,80.5],[2933.7,84.7],[2916.1,90.1],[2899,96.4],[2882.1,103.6],[2865.5,111.5],[2849.3,119.9],[2833.4,128.8],[2817.7,138],[2802.3,147.5],[2787.1,157.2],[2772.1,167.1],[2757.2,177],[2742.4,187],[2727.6,197.1],[2712.8,207.1],[2697.8,216.8],[2682.4,226.1],[2666.7,234.9],[2650.7,243.2],[2634.4,251],[2617.8,258.2],[2601,265],[2584.1,271.3],[2567.1,277.4],[2550,283.4],[2532.9,289.5],[2516,295.7],[2499.3,302.4],[2483.1,309.8],[2467.4,318.1],[2452.4,327.2],[2437.9,337.1],[2424.1,347.8],[2411,359.2],[2398.2,370.9],[2385.4,382.7],[2372.4,394.2],[2358.7,405],[2344.4,414.9],[2329.3,423.6],[2313.5,430.7],[2296.8,435.8],[2279.5,439.2],[2261.9,440.8],[2244,440.7],[2226.3,439],[2208.8,435.9],[2191.4,431.6],[2174.2,426.4],[2157.3,420.5],[2140.6,414],[2124.1,407.2],[2107.6,400.3],[2091.1,393.4],[2074.6,386.4],[2058.2,379.4],[2041.8,372.3],[2025.5,364.9],[2009.4,357.2],[1993.5,349],[1978,340.3],[1962.9,330.7],[1948.2,320.5],[1934.1,309.6],[1920.6,298],[1907.7,285.8],[1895.3,273.1],[1883.3,260],[1871.6,246.7],[1860,233.3],[1848.6,219.7],[1837.3,206],[1826.3,192.1],[1815.4,178],[1805,163.5],[1795.5,148.5],[1787.1,132.9],[1780.1,116.7],[1773.8,100.2],[1767.2,83.7],[1759.6,67.8],[1750.2,52.8],[1739.1,39.1],[1726.4,27.1],[1712.4,17],[1697.2,9.3],[1681.3,4],[1665.3,1.2],[1649.6,1],[1634.7,3.4],[1621.1,8.2],[1609.1,14.9],[1599,23.2],[1591.3,32.9],[1585.8,43.5],[1582.6,54.5],[1581.5,65.6],[1582.6,76.3],[1584.9,86.9],[1587.7,97.6],[1589.8,108.5],[1590.5,120],[1589.7,131.8],[1587.1,143.9],[1582.7,156.3],[1576.3,168.9],[1568,181.3],[1558,193.5],[1546.2,205],[1532.8,215.8],[1518.1,225.7],[1502.3,234.6],[1485.7,242.4],[1468.5,249],[1451,254.6],[1433.1,259.5],[1415,263.8],[1396.9,267.8],[1378.9,271.8],[1360.9,276.1],[1343.1,281],[1325.5,286.8],[1308.2,293.5],[1291.3,301],[1274.7,309.3],[1258.7,318.3],[1242.9,328],[1227.5,338.1],[1212.3,348.7],[1197.3,359.4],[1182.4,370.4],[1167.7,381.6],[1153.2,393.1],[1138.8,404.8],[1124.7,416.8],[1110.7,428.9],[1096.6,441],[1082.7,453.2],[1068.8,465.5],[1055,477.9],[1041.5,490.6],[1028.2,503.5],[1015.1,516.7],[1002.2,530.1],[989.4,543.5],[976.6,557],[963.8,570.5],[938.2,597.5],[925.3,610.9],[912.3,624.3],[899.1,637.4],[885.5,650.3],[871.7,662.8],[857.4,674.9],[842.9,686.7],[828,698.2],[812.8,709.3],[797.4,720],[781.7,730.4],[765.7,740.3],[749.5,749.9],[733,759],[716.3,767.7],[699.3,775.9],[682.1,783.7],[664.7,791],[647.2,797.9],[629.5,804.3],[611.7,810.2],[593.7,815.8],[575.7,820.8],[557.6,825.4],[539.5,829.6],[521.3,833.3],[503.1,836.5],[485,839.1],[466.9,841],[448.9,842.3],[431.1,842.9],[413.5,842.6],[396.2,841.5],[379.3,839.5],[362.9,836.5],[347.1,832.6],[332.1,827.6],[317.9,821.7],[304.6,814.8],[292.3,806.9],[281.2,798.2],[271.1,788.7],[262.3,778.5],[254.7,767.6],[248.2,756.1],[242.9,744.2],[238.7,732],[235.5,719.4],[233.4,706.6],[232,693.6],[231.4,680.6],[231.2,667.4],[231.3,654.1],[231.4,640.9],[230.9,627.8],[229.4,614.9],[226.6,602.3],[222.1,590],[216.2,578],[208.6,566.5],[199.1,555.4],[188.2,544.8],[175.8,534.7],[162.2,525.2],[147.5,516.1],[132,507.5],[115.8,499.3],[99.4,491.5],[82.8,484.1],[66.2,477.1],[49.7,470.2],[33.2,463.5],[17,456.8],[1.1,450.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":57,"ty":4,"ln":"layer_57","sr":1,"ks":{"a":{"a":0,"k":[1292.655,317.26]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.53,12783.14]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface276","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.1,429.9],[3433,421.6],[3419.8,413.3],[3406.7,405.2],[3393.4,397.1],[3380.1,389.2],[3366.8,381.1],[3353.6,372.8],[3340.4,364.2],[3327.3,355.4],[3314.2,346.4],[3301.1,337.4],[3288,328.6],[3274.8,319.6],[3261.8,310.5],[3248.8,301],[3236,291],[3223.4,280.4],[3211.1,269.2],[3199.2,257.3],[3187.7,244.6],[3176.9,231.2],[3166.6,217.1],[3157,202.4],[3148.1,187],[3139.5,171.4],[3130.7,155.9],[3121.2,141],[3110.6,126.9],[3098.8,114],[3085.8,102.4],[3071.7,92.3],[3056.5,84],[3040.4,77.4],[3023.6,72.6],[3006.1,69.7],[2988.4,68.8],[2970.5,69.6],[2952.5,72.1],[2934.7,75.9],[2917.1,81],[2899.9,87.1],[2882.9,94.2],[2866.3,101.9],[2850.1,110.3],[2834.2,119.1],[2818.6,128.3],[2803.3,137.9],[2788.2,147.8],[2773.4,157.8],[2758.7,167.9],[2744,178.1],[2729.2,188.1],[2714.2,197.9],[2699,207.4],[2683.5,216.5],[2667.6,224.9],[2651.4,232.9],[2634.9,240.4],[2618.2,247.3],[2601.3,253.8],[2584.4,260],[2567.4,266],[2550.4,272.2],[2533.5,278.6],[2516.8,285.5],[2500.6,292.9],[2484.9,301.2],[2469.9,310.4],[2455.6,320.4],[2441.9,331.2],[2428.8,342.7],[2416.2,354.7],[2403.8,367],[2391.3,379],[2378.2,390.5],[2364.4,401.1],[2349.8,410.6],[2334.4,418.6],[2318.3,425],[2301.4,429.6],[2284,432.3],[2266.3,433.3],[2248.5,432.8],[2230.8,430.7],[2213.3,427.4],[2195.9,423],[2178.8,417.7],[2162,411.6],[2145.4,405],[2128.9,398.1],[2112.5,391.1],[2096,384.2],[2079.5,377.3],[2063,370.5],[2046.6,363.5],[2030.2,356.4],[2013.9,349.1],[1997.9,341.3],[1982.2,332.9],[1966.8,323.8],[1952,314],[1937.6,303.3],[1924,292],[1911,279.9],[1898.5,267.3],[1886.6,254.2],[1875.1,240.7],[1863.8,227.1],[1852.7,213.3],[1841.7,199.4],[1830.8,185.4],[1819.9,171.3],[1809.4,157],[1799.5,142.2],[1790.7,126.9],[1783.4,110.9],[1776.6,94.5],[1769.6,78.3],[1761.6,62.7],[1751.6,48.2],[1739.9,35],[1726.8,23.5],[1712.4,14.1],[1697,7.2],[1680.9,2.7],[1664.9,0.8],[1649.4,1.3],[1634.9,4.5],[1621.8,9.9],[1610.3,17.1],[1600.9,25.9],[1593.8,35.8],[1589,46.4],[1586.5,57.5],[1586,68.6],[1587.6,79.2],[1590.3,89.8],[1593.3,100.3],[1595.7,111.2],[1596.5,122.7],[1595.6,134.5],[1592.9,146.7],[1588.4,159.1],[1581.8,171.6],[1573.4,184.1],[1563.1,196.1],[1551.2,207.7],[1537.7,218.4],[1522.9,228.2],[1507.1,237],[1490.5,244.8],[1473.3,251.5],[1455.8,257.1],[1437.9,262],[1419.9,266.2],[1401.8,270],[1383.7,273.7],[1365.6,277.6],[1347.7,282.1],[1330,287.5],[1312.6,293.7],[1295.4,300.7],[1278.6,308.6],[1262.3,317.2],[1246.3,326.4],[1230.7,336.2],[1215.3,346.4],[1200.1,356.9],[1185.1,367.7],[1170.3,378.8],[1155.6,390.1],[1141.1,401.6],[1126.8,413.4],[1112.7,425.3],[1098.7,437.4],[1084.7,449.7],[1071,462.1],[1057.5,474.8],[1044.1,487.6],[1031,500.7],[1018.1,514],[1005.2,527.4],[992.4,540.8],[979.5,554.2],[966.6,567.6],[953.8,581.1],[941,594.7],[928.4,608.3],[915.8,622],[902.9,635.5],[889.7,648.7],[876.1,661.4],[861.9,673.7],[847.5,685.6],[832.6,697],[817.4,707.9],[801.9,718.5],[786.1,728.8],[770.1,738.7],[753.9,748.3],[737.5,757.6],[720.9,766.5],[704.1,775],[687,783],[669.8,790.5],[652.3,797.6],[634.7,804.3],[616.9,810.4],[599.1,816.1],[581.1,821.3],[563.1,826.1],[545,830.5],[526.8,834.3],[508.6,837.7],[490.5,840.4],[472.4,842.5],[454.4,844],[436.6,844.6],[419,844.5],[401.7,843.4],[384.7,841.5],[368.3,838.5],[352.5,834.6],[337.5,829.7],[323.2,823.8],[309.9,816.9],[297.6,809.1],[286.4,800.4],[276.4,790.9],[267.5,780.7],[259.9,769.8],[253.4,758.4],[248.1,746.4],[243.9,734.1],[240.9,721.5],[238.8,708.7],[237.6,695.8],[237.1,682.7],[236.8,669.5],[236.8,656.3],[236.6,643.2],[235.7,630.1],[233.7,617.3],[230.3,604.8],[225.2,592.6],[218.6,580.8],[210.3,569.4],[200.3,558.5],[188.8,548.1],[176,538.1],[162,528.7],[147,519.7],[131.3,511.2],[115.1,503.2],[98.6,495.5],[82,488.1],[65.4,481.1],[48.9,474.3],[32.5,467.6],[16.4,461],[0.5,454.5]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":58,"ty":4,"ln":"layer_58","sr":1,"ks":{"a":{"a":0,"k":[1295.655,318.385]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.54,12789.55]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface281","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.6,463.1],[16.2,469.4],[32.2,475.9],[48.4,482.5],[64.8,489.2],[81.4,496.2],[98,503.4],[114.6,511],[131,518.9],[146.9,527.2],[162.3,535.9],[176.9,545],[190.5,554.7],[203,564.8],[214.1,575.4],[223.6,586.4],[231.5,598],[237.8,609.9],[242.6,622.2],[245.7,634.8],[247.6,647.6],[248.7,660.6],[249.2,673.7],[249.5,686.8],[249.9,699.9],[250.9,713],[252.6,725.8],[255.5,738.5],[259.5,750.8],[264.7,762.8],[271.2,774.3],[278.9,785.1],[287.8,795.4],[297.9,804.8],[309.1,813.5],[321.5,821.2],[334.9,828],[349.2,833.8],[364.4,838.7],[380.2,842.5],[396.7,845.3],[413.7,847.1],[431,847.9],[448.7,847.9],[466.5,847],[484.5,845.3],[502.6,842.9],[520.7,839.8],[538.8,836.1],[556.9,831.9],[574.9,827.3],[592.9,822.1],[610.7,816.6],[628.5,810.6],[646.1,804.1],[663.5,797.1],[680.8,789.6],[697.9,781.6],[714.8,773.2],[731.4,764.4],[747.8,755.2],[764,745.6],[780,735.8],[795.9,725.8],[811.6,715.5],[826.9,704.8],[841.9,693.6],[856.5,681.9],[870.7,669.7],[884.4,657.1],[897.7,644],[910.5,630.5],[923.1,616.8],[935.6,602.9],[948,589.1],[960.6,575.4],[973.2,561.8],[985.9,548.3],[998.7,534.9],[1011.5,521.4],[1024.3,508],[1037.2,494.7],[1050.2,481.5],[1063.4,468.5],[1076.8,455.8],[1090.5,443.3],[1104.4,431],[1118.5,419.1],[1132.8,407.4],[1147.4,396],[1162.2,384.9],[1177,373.9],[1192.1,363.2],[1207.4,352.9],[1222.9,342.9],[1238.7,333.3],[1254.8,324.3],[1271.2,315.8],[1288,308.1],[1305.1,301.1],[1322.6,294.9],[1340.3,289.4],[1358.1,284.7],[1376.1,280.9],[1394.3,277.4],[1412.4,274.1],[1430.5,270.6],[1448.5,266.5],[1466.4,261.7],[1484,256.1],[1501.1,249.5],[1517.8,241.8],[1533.7,233.1],[1548.6,223.5],[1562.2,212.9],[1574.5,201.5],[1585,189.5],[1593.8,177.2],[1600.6,164.7],[1605.4,152.2],[1608.1,140],[1609,128.1],[1608.1,116.7],[1605.4,105.9],[1601.9,95.4],[1598.5,85.1],[1596.1,74.5],[1595.5,63.5],[1597,52.5],[1600.5,41.6],[1606.3,31.4],[1614.4,22],[1624.7,13.8],[1636.8,7.4],[1650.5,2.9],[1665.5,0.8],[1681.3,1.2],[1697.4,4],[1713.3,9.3],[1728.4,17.2],[1742.4,27.3],[1755.2,39.2],[1766.4,52.7],[1775.8,67.4],[1784,82.9],[1791.9,98.7],[1800.1,114.3],[1809.4,129.3],[1819.4,143.9],[1829.9,158.2],[1840.4,172.5],[1850.7,186.9],[1860.9,201.2],[1871.3,215.5],[1882.2,229.4],[1893.6,242.9],[1905.7,255.8],[1918.4,268.1],[1931.9,279.6],[1946.1,290.2],[1961,299.9],[1976.4,308.9],[1992.2,317.1],[2008.3,324.5],[2024.7,331.5],[2041.2,338.1],[2057.8,344.6],[2074.4,351.2],[2090.9,358],[2107.3,364.9],[2123.7,372],[2140,379.2],[2156.2,386.5],[2172.6,393.4],[2189.2,399.8],[2206.1,405.5],[2223.3,410.3],[2240.8,414],[2258.4,416.6],[2276.2,417.9],[2293.9,417.8],[2311.4,416.1],[2328.6,412.8],[2345.3,407.7],[2361.3,401],[2376.5,392.7],[2390.9,383],[2404.3,372],[2417,360],[2429.2,347.4],[2441.1,334.6],[2453,321.9],[2465.3,309.5],[2477.9,297.6],[2491.3,286.5],[2505.6,276.3],[2520.6,267.1],[2536.3,258.6],[2552.5,251],[2569,244],[2585.8,237.5],[2602.7,231.2],[2619.6,224.8],[2636.5,218.3],[2653.2,211.4],[2669.8,204.1],[2686,196.3],[2701.9,187.9],[2717.5,178.9],[2732.7,169.5],[2747.7,159.6],[2762.3,149.5],[2776.8,139.1],[2791.3,128.8],[2806.1,118.7],[2821.2,109],[2836.8,99.7],[2852.7,91],[2869,82.8],[2885.7,75.3],[2902.8,68.7],[2920.1,63],[2937.8,58.6],[2955.7,55.5],[2973.6,54],[2991.4,54.2],[3008.9,56.2],[3026,60.2],[3042.4,66],[3058,73.7],[3072.5,83.1],[3085.9,94],[3098.3,106.4],[3109.4,119.9],[3119.5,134.4],[3128.5,149.7],[3136.8,165.4],[3145,181.3],[3153.6,196.8],[3162.9,211.8],[3172.9,226.2],[3183.5,239.8],[3194.7,252.8],[3206.4,265],[3218.5,276.5],[3231,287.3],[3243.8,297.5],[3256.7,307],[3269.8,316.1],[3283,324.9],[3296.2,333.5],[3309.3,342.2],[3322.5,350.9],[3335.7,359.4],[3348.9,367.9],[3362.1,376.1],[3375.4,384.2],[3388.6,392.3],[3401.8,400.5],[3415,408.8],[3428,417.2],[3441.1,425.6],[3454.2,433.9]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":59,"ty":4,"ln":"layer_59","sr":1,"ks":{"a":{"a":0,"k":[1296.78,317.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.53,12786.17]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface286","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.1,436.1],[3444.1,427.8],[3417.9,411],[3404.8,402.7],[3391.5,394.6],[3378.3,386.6],[3365,378.6],[3351.7,370.4],[3338.5,362],[3325.4,353.3],[3312.2,344.5],[3299.1,335.7],[3285.9,326.9],[3272.8,318],[3259.7,308.9],[3246.7,299.3],[3234,289.2],[3221.4,278.5],[3209.2,267.1],[3197.4,255.1],[3186.1,242.2],[3175.4,228.7],[3165.2,214.5],[3155.8,199.6],[3147.1,184.1],[3138.7,168.4],[3130.1,152.8],[3120.9,137.6],[3110.6,123.4],[3099.1,110.1],[3086.4,98.1],[3072.7,87.6],[3057.8,78.8],[3041.9,71.6],[3025.3,66.3],[3008.1,62.9],[2990.4,61.4],[2972.5,61.8],[2954.6,63.7],[2936.7,67.2],[2919.1,72],[2901.8,77.9],[2884.8,84.7],[2868.2,92.4],[2851.8,100.6],[2835.9,109.4],[2820.4,118.6],[2805.2,128.3],[2790.3,138.3],[2775.6,148.5],[2761,158.8],[2746.4,169],[2731.6,178.9],[2716.5,188.5],[2701.1,197.8],[2685.4,206.5],[2669.3,214.7],[2652.9,222.3],[2636.3,229.4],[2619.5,236.2],[2602.6,242.5],[2585.6,248.6],[2568.7,254.8],[2551.9,261.3],[2535.3,268.3],[2519,275.9],[2503.2,284.2],[2488.2,293.3],[2474,303.5],[2460.5,314.5],[2447.6,326.2],[2435.1,338.4],[2423,350.9],[2410.8,363.4],[2398.3,375.5],[2385.1,386.9],[2371,397.1],[2356.1,406],[2340.4,413.4],[2324,419.1],[2306.9,423],[2289.5,425.1],[2271.7,425.7],[2253.9,424.7],[2236.3,422.4],[2218.8,418.9],[2201.5,414.3],[2184.5,408.8],[2167.8,402.6],[2151.3,395.9],[2134.9,388.8],[2118.5,381.7],[2102.1,374.7],[2085.6,367.9],[2069.1,361.1],[2052.6,354.3],[2036.1,347.5],[2019.7,340.5],[2003.5,333.2],[1987.5,325.2],[1972,316.6],[1956.9,307.1],[1942.3,296.9],[1928.4,285.9],[1915.2,274.1],[1902.7,261.5],[1890.7,248.5],[1879.3,235],[1868.2,221.2],[1857.5,207.2],[1846.9,193],[1836.3,178.9],[1825.5,164.7],[1814.9,150.5],[1804.9,135.8],[1795.8,120.7],[1788,104.9],[1780.7,88.8],[1773.1,72.9],[1764.5,57.7],[1753.9,43.6],[1741.7,31],[1728.1,20.2],[1713.4,11.6],[1697.7,5.4],[1681.6,1.8],[1665.6,0.6],[1650.3,2],[1636.3,5.8],[1623.6,11.8],[1612.8,19.5],[1604,28.6],[1597.6,38.7],[1593.4,49.4],[1591.5,60.5],[1591.5,71.5],[1593.5,82.2],[1596.6,92.6],[1599.9,103.1],[1602.4,114],[1603.3,125.4],[1602.4,137.2],[1599.7,149.5],[1595,161.9],[1588.3,174.4],[1579.7,186.8],[1569.3,198.8],[1557.2,210.3],[1543.6,220.9],[1528.8,230.7],[1512.9,239.4],[1496.3,247.2],[1479.2,253.8],[1461.6,259.5],[1443.8,264.3],[1425.7,268.5],[1407.6,272.2],[1389.5,275.6],[1371.4,279.3],[1353.4,283.4],[1335.6,288.4],[1318,294.2],[1300.7,300.8],[1283.8,308.2],[1267.2,316.4],[1251,325.2],[1235.1,334.6],[1219.5,344.5],[1204.1,354.8],[1189,365.4],[1174.1,376.3],[1159.3,387.4],[1144.7,398.7],[1130.2,410.2],[1115.9,422],[1101.9,434],[1088,446.3],[1074.4,458.9],[1061,471.7],[1047.7,484.6],[1034.7,497.8],[1021.9,511.2],[1009,524.6],[996.2,538],[983.3,551.4],[970.4,564.7],[957.6,578.2],[944.9,591.8],[932.4,605.6],[920,619.4],[907.4,633.1],[894.4,646.6],[881,659.5],[867.1,672],[852.7,683.9],[837.9,695.4],[822.7,706.4],[807.2,717],[791.5,727.2],[775.5,737.1],[759.4,746.8],[743.1,756.3],[726.6,765.4],[709.9,774.1],[693,782.3],[675.8,790.1],[658.4,797.4],[640.9,804.2],[623.2,810.5],[605.4,816.4],[587.5,821.8],[569.5,826.7],[551.4,831.2],[533.3,835.3],[515.2,838.8],[497,841.7],[478.9,843.9],[461,845.5],[443.1,846.3],[425.5,846.2],[408.2,845.3],[391.2,843.4],[374.8,840.5],[359,836.7],[343.9,831.8],[329.6,825.9],[316.2,819.1],[303.9,811.3],[292.7,802.6],[282.6,793.1],[273.7,782.9],[266,772],[259.6,760.6],[254.3,748.6],[250.2,736.3],[247.2,723.7],[245.4,710.9],[244.3,697.9],[243.8,684.8],[243.5,671.6],[243.3,658.5],[242.7,645.4],[241.3,632.4],[238.8,619.7],[234.7,607.3],[229,595.2],[221.7,583.6],[212.8,572.3],[202.3,561.6],[190.3,551.3],[177,541.6],[162.7,532.3],[147.5,523.4],[131.7,515],[115.3,507.1],[98.8,499.4],[82.2,492.2],[65.6,485.2],[49.1,478.4],[32.8,471.7],[16.8,465.2],[1,458.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":60,"ty":4,"ln":"layer_60","sr":1,"ks":{"a":{"a":0,"k":[1293.78,319.135]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12804.86,12792.92]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface291","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.4,439.4],[3436.3,431.4],[3423.2,423.3],[3397,406.7],[3383.9,398.3],[3370.7,390.1],[3357.5,381.8],[3344.3,373.6],[3331.1,365.2],[3317.9,356.8],[3304.7,348.3],[3291.5,339.7],[3278.3,331.1],[3265.1,322.6],[3251.9,313.9],[3238.8,305],[3225.8,295.5],[3213.1,285.3],[3200.7,274.4],[3188.6,262.8],[3177,250.5],[3165.9,237.5],[3155.3,223.7],[3145.5,209.2],[3136.3,194.1],[3127.9,178.5],[3119.8,162.6],[3111.7,146.7],[3102.9,131.2],[3093.2,116.5],[3082.3,102.7],[3070.4,90],[3057.3,78.6],[3043,68.8],[3027.8,60.6],[3011.6,54.2],[2994.8,49.7],[2977.4,47.1],[2959.7,46.4],[2941.8,47.4],[2923.9,50.1],[2906.2,54.1],[2888.7,59.5],[2871.6,65.9],[2854.9,73.3],[2838.5,81.3],[2822.6,90],[2807.1,99.3],[2792,109.1],[2777.3,119.2],[2762.9,129.6],[2748.4,140],[2733.8,150.1],[2718.7,159.8],[2703.3,169],[2687.5,177.7],[2671.4,185.8],[2655,193.3],[2638.4,200.3],[2621.6,207],[2604.7,213.5],[2587.8,220],[2571.1,226.6],[2554.6,233.6],[2538.4,241.2],[2522.8,249.7],[2507.8,259.1],[2493.5,269.3],[2480.1,280.5],[2467.5,292.5],[2455.6,305.2],[2444,318.2],[2432.4,331.3],[2420.6,344.2],[2408.3,356.6],[2395.3,368.2],[2381.6,378.8],[2366.9,387.9],[2351.3,395.6],[2335,401.7],[2318.2,406.2],[2300.9,409],[2283.3,410.2],[2265.6,410],[2247.8,408.4],[2230.3,405.5],[2212.9,401.6],[2195.8,396.6],[2178.9,390.7],[2162.5,384.1],[2146.3,376.9],[2130.1,369.4],[2114,361.9],[2097.7,354.7],[2081.3,347.8],[2064.8,341],[2048.2,334.5],[2031.5,328.3],[2014.9,322],[1998.4,315.4],[1982,308.4],[1966,300.8],[1950.3,292.4],[1935.2,283.2],[1920.6,273],[1906.8,262],[1893.8,250],[1881.5,237.3],[1869.9,223.9],[1859.2,209.9],[1849,195.5],[1829.2,166.3],[1819,151.8],[1808.9,137.4],[1799,122.8],[1789.6,107.8],[1772.4,77],[1763.4,62],[1753.3,47.9],[1741.4,35],[1728,23.7],[1713.5,14.4],[1698.1,7.4],[1682.2,2.8],[1666.1,0.8],[1650.4,1.3],[1635.7,4],[1622.4,9.1],[1610.9,16.1],[1601.2,24.6],[1593.7,34.2],[1588.6,44.6],[1585.6,55.5],[1584.7,66.6],[1585.8,77.5],[1588.6,87.9],[1592.2,98.2],[1595.9,108.6],[1598.7,119.4],[1599.7,130.8],[1598.8,142.7],[1596,155],[1591.2,167.4],[1584.3,180],[1575.4,192.3],[1564.7,204.2],[1552.4,215.5],[1538.6,226],[1523.6,235.5],[1507.6,244.1],[1490.9,251.7],[1473.7,258.2],[1456.1,263.7],[1438.3,268.4],[1420.2,272.4],[1402.1,275.9],[1384,279.1],[1365.9,282.4],[1347.9,286.1],[1329.9,290.5],[1312.2,295.7],[1294.6,301.6],[1277.4,308.2],[1260.4,315.6],[1243.8,323.7],[1227.5,332.3],[1211.5,341.6],[1195.8,351.2],[1180.4,361.4],[1165.2,371.8],[1150.2,382.6],[1135.3,393.6],[1120.7,404.9],[1106.2,416.4],[1092,428.3],[1078.1,440.4],[1064.4,452.8],[1050.9,465.4],[1037.6,478.3],[1024.5,491.4],[1011.5,504.7],[998.8,518.1],[986.1,531.6],[973.5,545.2],[961,558.9],[948.6,572.7],[936.1,586.4],[923.7,600.2],[911.2,614],[898.6,627.6],[885.7,641.1],[872.6,654.3],[859.1,667.2],[845.2,679.6],[830.9,691.6],[816.1,703],[800.9,713.9],[785.4,724.5],[769.6,734.6],[753.6,744.5],[737.5,754.2],[721.2,763.5],[704.6,772.4],[687.9,780.9],[670.8,789],[653.7,796.7],[636.3,803.9],[618.8,810.5],[601.1,816.7],[583.3,822.5],[565.4,827.8],[547.4,832.6],[529.3,837],[511.2,840.8],[493.1,844],[475.1,846.6],[457.1,848.4],[439.2,849.4],[421.6,849.6],[404.2,848.8],[387.2,847.1],[370.7,844.4],[354.8,840.6],[339.6,835.9],[325.2,830.1],[311.8,823.3],[299.4,815.6],[288.1,807],[278,797.6],[269,787.4],[261.3,776.5],[254.9,765],[249.7,753],[245.7,740.7],[242.9,728],[241.4,715.1],[240.6,702],[240.2,688.9],[239.7,675.8],[238.9,662.8],[237.4,649.9],[234.9,637.1],[231.1,624.7],[225.7,612.5],[218.7,600.8],[210.2,589.4],[200.1,578.4],[188.5,568],[175.7,558],[161.7,548.5],[146.9,539.5],[131.3,530.9],[115.3,522.7],[98.8,514.9],[82.2,507.4],[65.6,500.2],[49.1,493.3],[32.7,486.7],[16.6,480.1],[0.8,473.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":61,"ty":4,"ln":"layer_61","sr":1,"ks":{"a":{"a":0,"k":[1292.655,319.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.86,12795.95]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface296","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.6,436.6],[3433.4,428.7],[3420.3,420.8],[3407.2,412.7],[3394,404.5],[3380.9,396.2],[3367.8,387.9],[3354.6,379.5],[3341.5,371.1],[3328.3,362.7],[3315.1,354.2],[3301.9,345.7],[3288.8,337.2],[3275.5,328.7],[3262.3,320.3],[3249,311.7],[3235.9,302.8],[3223,293.4],[3210.2,283.2],[3197.9,272.3],[3185.8,260.6],[3174.3,248.2],[3163.2,235],[3152.8,221.2],[3143,206.6],[3134,191.5],[3125.7,175.7],[3117.8,159.7],[3109.8,143.8],[3101.3,128.2],[3091.8,113.2],[3081.3,99.1],[3069.7,86.1],[3057,74.3],[3043,64],[3028.1,55.3],[3012.2,48.4],[2995.6,43.3],[2978.4,40.2],[2960.7,38.9],[2942.9,39.5],[2925,41.7],[2907.3,45.4],[2889.7,50.4],[2872.5,56.6],[2855.7,63.8],[2839.4,71.7],[2823.4,80.4],[2808,89.7],[2792.9,99.4],[2778.3,109.6],[2763.8,120],[2749.4,130.3],[2734.6,140.3],[2719.5,149.8],[2703.9,158.8],[2688,167.2],[2671.7,175],[2655.2,182.3],[2638.5,189.1],[2621.6,195.7],[2604.8,202.3],[2588,209],[2571.5,216.1],[2555.4,223.8],[2539.8,232.2],[2524.8,241.6],[2510.6,252],[2497.2,263.2],[2484.5,275.2],[2472.8,288],[2461.5,301.3],[2450.3,314.8],[2439,328.1],[2427.1,340.9],[2414.5,353.1],[2401.2,364.2],[2387.1,374.2],[2372,382.8],[2356.2,389.8],[2339.7,395.4],[2322.7,399.3],[2305.3,401.7],[2287.7,402.5],[2270,402],[2252.3,400.1],[2234.7,397],[2217.4,392.8],[2200.4,387.6],[2183.7,381.5],[2167.4,374.5],[2151.3,367.1],[2135.4,359.4],[2119.4,351.7],[2103.1,344.4],[2086.8,337.3],[2070.3,330.6],[2053.6,324.2],[2037,318.1],[2020.3,312.1],[2003.6,305.9],[1987.1,299.4],[1970.8,292.3],[1954.9,284.4],[1939.4,275.8],[1924.6,266.2],[1910.4,255.6],[1897,244],[1884.4,231.6],[1872.7,218.4],[1861.9,204.5],[1851.8,190],[1842.1,175.2],[1832.5,160.4],[1822.8,145.7],[1813,131],[1803.4,116.3],[1794,101.4],[1784.9,86.3],[1775.7,71.2],[1765.9,56.7],[1755,43.2],[1742.4,31],[1728.6,20.5],[1713.7,12],[1698,5.7],[1681.9,2],[1665.9,0.8],[1650.5,1.9],[1636.1,5.4],[1623.3,11],[1612.3,18.4],[1603.2,27.3],[1596.4,37.1],[1591.8,47.7],[1589.4,58.6],[1589.1,69.6],[1590.5,80.4],[1593.6,90.8],[1597.5,101],[1601.4,111.4],[1604.3,122.1],[1605.3,133.5],[1604.5,145.5],[1601.7,157.7],[1596.8,170.2],[1589.8,182.7],[1580.8,195],[1569.9,206.9],[1557.5,218.1],[1543.6,228.5],[1528.5,238],[1512.5,246.5],[1495.7,253.9],[1478.5,260.3],[1460.9,265.7],[1443,270.3],[1424.9,274.2],[1406.9,277.6],[1388.8,280.7],[1370.6,283.9],[1352.6,287.4],[1334.7,291.7],[1316.8,296.6],[1299.2,302.1],[1281.9,308.5],[1264.8,315.5],[1248,323.2],[1231.5,331.6],[1215.3,340.5],[1199.4,349.9],[1183.8,359.7],[1168.5,369.9],[1153.4,380.5],[1138.4,391.4],[1123.7,402.5],[1109.2,414],[1094.9,425.7],[1080.9,437.7],[1067,449.9],[1053.4,462.4],[1040,475.2],[1026.8,488.1],[1013.8,501.3],[1001.1,514.7],[988.5,528.3],[976.1,542.1],[963.9,556],[951.7,569.9],[939.3,583.8],[926.9,597.6],[914.3,611.2],[901.6,624.7],[888.7,638.1],[875.6,651.4],[862.3,664.5],[848.7,677.2],[834.6,689.4],[820.1,701.1],[805.1,712.3],[789.8,723.1],[774.2,733.4],[758.3,743.5],[742.3,753.2],[726,762.6],[709.5,771.6],[692.8,780.3],[675.9,788.5],[658.8,796.3],[641.5,803.6],[624,810.5],[606.4,816.8],[588.7,822.7],[570.8,828.2],[552.9,833.2],[534.9,837.7],[516.8,841.7],[498.7,845.1],[480.6,847.8],[462.7,849.8],[444.8,850.9],[427.1,851.2],[409.7,850.6],[392.7,848.9],[376.2,846.3],[360.2,842.6],[345,837.9],[330.6,832.1],[317.1,825.4],[304.6,817.8],[293.3,809.2],[283.1,799.8],[274.1,789.6],[266.4,778.7],[260,767.2],[254.8,755.2],[250.9,742.8],[248.3,730.1],[246.8,717.2],[246.1,704.1],[245.7,691],[245.1,677.9],[243.9,665],[241.9,652.1],[238.8,639.5],[234.3,627.2],[228.3,615.2],[220.7,603.6],[211.5,592.4],[200.9,581.6],[188.9,571.3],[175.7,561.4],[161.4,552.1],[146.4,543.1],[130.7,534.6],[114.6,526.5],[98.1,518.8],[81.5,511.4],[64.9,504.3],[48.4,497.5],[32,490.8],[16,484.4],[0.3,478]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":62,"ty":4,"ln":"layer_62","sr":1,"ks":{"a":{"a":0,"k":[1296.03,320.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.2,12802.36]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface301","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.5,486.7],[16,492.9],[31.8,499.3],[48,505.8],[64.4,512.5],[80.9,519.5],[97.5,526.7],[114.1,534.3],[130.4,542.2],[146.3,550.5],[161.8,559.2],[176.5,568.3],[190.4,577.9],[203.1,587.9],[214.7,598.4],[224.9,609.4],[233.6,620.7],[240.9,632.4],[246.6,644.5],[250.9,656.9],[254,669.5],[255.9,682.4],[256.9,695.4],[257.5,708.5],[258.2,721.5],[259.6,734.5],[262.2,747.2],[266.1,759.6],[271.2,771.6],[277.7,783.1],[285.4,793.9],[294.4,804.1],[304.7,813.5],[316.2,822],[328.7,829.6],[342.3,836.2],[356.8,841.8],[372.1,846.4],[388.1,849.9],[404.7,852.4],[421.8,853.9],[439.2,854.4],[456.9,853.8],[474.8,852.4],[492.8,850.1],[510.8,847.1],[528.9,843.4],[546.9,839],[564.8,834.2],[582.6,828.8],[600.4,823],[618,816.8],[635.5,810.1],[652.9,803],[670,795.4],[687,787.4],[703.8,778.9],[720.3,770.1],[736.6,760.8],[752.6,751.1],[768.4,741],[783.9,730.5],[799.2,719.7],[814.1,708.5],[828.7,696.8],[842.9,684.7],[856.6,672.2],[870,659.2],[883.2,646.1],[896.1,632.7],[908.9,619.3],[921.6,605.8],[934.1,592.1],[946.4,578.3],[958.6,564.3],[970.6,550.3],[982.7,536.3],[994.9,522.4],[1007.3,508.8],[1020.1,495.4],[1033.1,482.2],[1046.3,469.4],[1059.8,456.8],[1073.6,444.5],[1087.6,432.5],[1101.9,420.7],[1116.3,409.3],[1131,398.2],[1146,387.3],[1161.2,376.9],[1176.6,366.8],[1192.3,357.1],[1208.2,347.9],[1224.5,339.1],[1240.9,330.8],[1257.7,323],[1274.7,315.8],[1292,309.3],[1309.5,303.5],[1327.2,298.3],[1345.1,293.9],[1363.1,290],[1381.1,286.7],[1399.2,283.8],[1417.3,280.9],[1435.4,277.7],[1453.4,274],[1471.3,269.6],[1488.9,264.4],[1506.3,258.2],[1523.1,251],[1539.3,242.7],[1554.6,233.5],[1568.7,223.3],[1581.3,212.2],[1592.4,200.4],[1601.6,188.2],[1608.9,175.7],[1613.9,163.2],[1616.8,150.8],[1617.7,138.9],[1616.5,127.5],[1613.5,116.8],[1609.3,106.5],[1605,96.4],[1601.3,86.2],[1599,75.5],[1598.4,64.6],[1599.7,53.7],[1603.1,43.1],[1608.8,32.8],[1616.6,23.4],[1626.6,15.2],[1638.4,8.6],[1652,3.9],[1666.8,1.4],[1682.6,1.1],[1698.7,3.2],[1714.7,7.9],[1730.2,14.8],[1745,23.8],[1758.8,34.6],[1771.1,46.9],[1782.3,60.3],[1792.6,74.6],[1802.2,89.4],[1811.6,104.3],[1820.7,119.3],[1829.7,134.4],[1838.8,149.5],[1848,164.5],[1857.7,179.3],[1868.1,193.5],[1879.3,207.1],[1891.7,219.6],[1905,231.2],[1919.3,241.8],[1934.2,251.3],[1949.7,259.7],[1965.7,267.2],[1982.1,274],[1998.7,280.2],[2015.5,286],[2032.3,291.5],[2049.1,297.1],[2065.8,303],[2082.4,309.3],[2098.9,316],[2115.2,323.3],[2131.2,330.9],[2147,338.9],[2162.6,347.1],[2178.3,355],[2194.3,362.5],[2210.7,369.1],[2227.5,374.9],[2244.7,379.6],[2262.1,383.2],[2279.7,385.7],[2297.4,386.9],[2315.1,386.8],[2332.6,385.2],[2349.9,382.2],[2366.7,377.6],[2382.9,371.6],[2398.5,364.1],[2413.3,355.1],[2427.3,344.9],[2440.4,333.5],[2452.7,321.1],[2464.2,308],[2475.1,294.3],[2485.7,280.4],[2496.5,266.6],[2507.7,253.1],[2519.4,240.2],[2531.8,227.9],[2545.1,216.6],[2559.3,206.4],[2574.4,197.1],[2590.2,188.7],[2606.4,181],[2622.8,173.8],[2639.5,166.9],[2656.1,160.1],[2672.8,153.1],[2689.2,145.6],[2705.4,137.6],[2721.3,129.1],[2736.8,120.1],[2751.8,110.4],[2766.4,100.3],[2781,90.2],[2795.7,80.1],[2810.8,70.4],[2826.2,61.2],[2842.2,52.6],[2858.5,44.9],[2875.5,38.1],[2892.8,32.4],[2910.4,28.1],[2928.2,25.2],[2946.1,23.9],[2963.8,24.5],[2981.2,26.8],[2998,31],[3014.2,37.2],[3029.5,45.3],[3043.8,55],[3057,66.2],[3069.1,78.7],[3080,92.4],[3089.9,107],[3098.8,122.3],[3106.9,138.1],[3114.6,154.2],[3122.3,170.3],[3130.4,186.2],[3139.2,201.4],[3148.8,216.1],[3159.1,230.2],[3170,243.5],[3181.4,256],[3193.3,267.8],[3205.7,278.9],[3218.3,289.2],[3231.2,298.7],[3244.3,307.6],[3257.5,316.2],[3270.7,324.6],[3284,333],[3297.2,341.4],[3310.4,349.9],[3323.5,358.3],[3336.7,366.7],[3349.8,375.1],[3362.9,383.5],[3376.1,391.6],[3389.3,399.6],[3402.5,407.4],[3415.7,415.1],[3429,422.7],[3442.2,430.2],[3455.4,437.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":63,"ty":4,"ln":"layer_63","sr":1,"ks":{"a":{"a":0,"k":[1292.28,320.26]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12799.33]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface306","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3444.9,433.5],[3431.7,425.8],[3418.5,418.1],[3405.3,410.2],[3392.1,402.2],[3379,394],[3365.8,385.7],[3352.7,377.3],[3339.6,368.8],[3326.4,360.3],[3313.3,351.8],[3300.1,343.4],[3286.9,334.9],[3273.7,326.5],[3260.4,318.1],[3247.2,309.6],[3234.1,300.7],[3221.1,291.2],[3208.4,281],[3196.1,270.1],[3184.1,258.3],[3172.6,245.9],[3161.7,232.6],[3151.3,218.7],[3141.6,204],[3132.7,188.8],[3124.5,173],[3116.8,157],[3108.9,140.9],[3100.6,125.2],[3091.4,110],[3081.2,95.7],[3069.9,82.3],[3057.6,70.2],[3044,59.4],[3029.3,50.2],[3013.7,42.7],[2997.3,37.1],[2980.3,33.4],[2962.8,31.6],[2945,31.6],[2927.1,33.4],[2909.3,36.7],[2891.7,41.4],[2874.5,47.3],[2857.6,54.3],[2841.2,62.2],[2825.3,70.8],[2809.9,80],[2794.8,89.8],[2780.2,99.9],[2765.7,110.2],[2751.1,120.4],[2736.3,130.3],[2721,139.6],[2705.3,148.3],[2689.2,156.5],[2672.8,164.1],[2656.2,171.2],[2639.5,178],[2622.7,184.6],[2606,191.4],[2589.5,198.6],[2573.3,206.3],[2557.6,214.7],[2542.6,224],[2528.5,234.3],[2515.1,245.6],[2502.6,257.8],[2490.7,270.6],[2479.5,284],[2468.7,297.8],[2457.8,311.4],[2446.5,324.8],[2434.4,337.4],[2421.5,349.2],[2407.9,359.9],[2393.4,369.3],[2378.1,377.3],[2362,383.8],[2345.3,388.8],[2328.2,392.3],[2310.7,394.3],[2293.1,394.7],[2275.4,393.9],[2257.7,391.7],[2240.2,388.3],[2223,383.9],[2206,378.4],[2189.5,372],[2173.3,364.9],[2157.5,357.2],[2141.6,349.2],[2125.8,341.4],[2109.7,333.9],[2093.3,326.7],[2076.8,320],[2060.2,313.6],[2043.5,307.7],[2026.7,301.9],[2010,296.1],[1993.3,290],[1976.9,283.3],[1960.7,276],[1945,268],[1929.7,258.9],[1915.2,248.9],[1901.3,237.8],[1888.4,225.8],[1876.4,212.8],[1865.5,199],[1855.4,184.6],[1845.7,169.8],[1836.4,154.8],[1827,139.9],[1817.7,125],[1808.3,110.1],[1798.9,95.2],[1789.5,80.3],[1779.7,65.6],[1769.2,51.6],[1757.5,38.7],[1744.4,27.3],[1730,17.5],[1714.7,9.8],[1698.9,4.3],[1682.7,1.4],[1666.8,1],[1651.6,2.8],[1637.7,6.9],[1625.3,13],[1614.9,20.9],[1606.4,30],[1600.2,40.1],[1596.2,50.7],[1594.3,61.6],[1594.5,72.6],[1596.4,83.3],[1599.8,93.6],[1603.9,103.8],[1607.9,114.1],[1610.9,124.8],[1612,136.2],[1611.2,148.2],[1608.3,160.5],[1603.3,173],[1596.2,185.4],[1587.1,197.7],[1576.1,209.5],[1563.6,220.7],[1549.6,231],[1534.4,240.4],[1518.3,248.7],[1501.5,256.1],[1484.2,262.3],[1466.6,267.6],[1448.7,272.1],[1430.7,275.9],[1412.6,279.2],[1394.5,282.3],[1376.4,285.3],[1358.4,288.8],[1340.4,292.8],[1322.5,297.5],[1304.8,302.8],[1287.4,308.9],[1270.2,315.6],[1253.3,323],[1236.7,331.1],[1220.3,339.7],[1204.3,348.7],[1188.5,358.3],[1173,368.3],[1157.7,378.6],[1142.7,389.3],[1127.8,400.3],[1113.3,411.6],[1098.9,423.2],[1084.7,435],[1070.7,447.2],[1057,459.5],[1043.5,472.1],[1030.2,485],[1017.3,498.2],[1004.5,511.6],[992,525.2],[979.8,539.1],[967.7,553.1],[955.7,567.2],[943.4,581.1],[931,594.9],[918.4,608.5],[905.6,621.9],[892.7,635.3],[879.8,648.6],[866.6,661.8],[853.1,674.6],[839.3,687.1],[824.9,699.1],[810.2,710.5],[795,721.5],[779.6,732.1],[763.9,742.4],[748,752.2],[731.8,761.7],[715.4,770.8],[698.8,779.6],[681.9,787.9],[664.9,795.9],[647.7,803.3],[630.3,810.3],[612.7,816.9],[595,822.9],[577.2,828.5],[559.3,833.7],[541.4,838.4],[523.4,842.6],[505.3,846.1],[487.2,849],[469.2,851.1],[451.4,852.4],[433.7,852.8],[416.2,852.3],[399.2,850.7],[382.6,848.1],[366.6,844.5],[351.4,839.9],[336.9,834.2],[323.4,827.5],[310.9,819.9],[299.5,811.3],[289.3,801.9],[280.3,791.8],[272.5,780.9],[266.1,769.4],[261,757.4],[257.1,745],[254.5,732.3],[253.1,719.3],[252.4,706.3],[252,693.2],[251.2,680.1],[249.6,667.2],[247.1,654.5],[243.4,642],[238.3,629.8],[231.6,617.9],[223.3,606.5],[213.7,595.4],[202.6,584.7],[190.2,574.6],[176.6,564.9],[162.1,555.6],[146.9,546.8],[131.1,538.4],[114.8,530.4],[98.3,522.8],[81.7,515.4],[65.1,508.4],[48.7,501.6],[32.4,495.1],[16.5,488.6],[0.9,482.4]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":64,"ty":4,"ln":"layer_64","sr":1,"ks":{"a":{"a":0,"k":[1295.655,321.385]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.21,12805.73]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface311","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3453.8,434.2],[3440.6,426.9],[3427.3,419.5],[3414.1,412],[3400.8,404.5],[3387.5,396.9],[3374.3,389.1],[3361.1,381.1],[3347.9,372.9],[3334.7,364.7],[3321.6,356.4],[3308.4,348.1],[3295.2,339.7],[3282,331.4],[3268.8,323],[3255.5,314.5],[3242.4,305.8],[3229.3,296.7],[3216.5,287.1],[3203.9,276.7],[3191.6,265.6],[3179.8,253.7],[3168.4,241.1],[3157.6,227.7],[3147.4,213.6],[3137.9,198.8],[3129,183.5],[3121,167.7],[3113.4,151.6],[3105.9,135.4],[3097.9,119.5],[3089.2,104],[3079.6,89.1],[3069.1,75.2],[3057.4,62.3],[3044.5,50.7],[3030.5,40.5],[3015.5,31.9],[2999.7,25.1],[2983,20.3],[2965.8,17.5],[2948.1,16.4],[2930.4,17.1],[2912.5,19.6],[2894.8,23.6],[2877.5,29],[2860.5,35.5],[2844,43.1],[2828.1,51.6],[2812.6,60.7],[2797.5,70.3],[2782.7,80.3],[2768,90.3],[2753.2,100.2],[2738.1,109.6],[2722.5,118.5],[2706.5,126.8],[2690.2,134.6],[2673.7,142],[2657.1,149.1],[2640.5,156.1],[2624.1,163.4],[2608,171.1],[2592.2,179.5],[2577,188.7],[2562.6,198.8],[2549.1,210],[2536.8,222.2],[2525.3,235.3],[2514.4,248.9],[2503.8,262.9],[2493.3,277],[2482.6,290.8],[2471.5,304.3],[2459.8,317.2],[2447.2,329.2],[2433.8,340.2],[2419.5,350],[2404.5,358.5],[2388.7,365.6],[2372.2,371.2],[2355.3,375.3],[2338,378],[2320.5,379.2],[2302.8,379],[2285.1,377.5],[2267.5,374.7],[2250.2,370.7],[2233.2,365.7],[2216.4,359.7],[2200.2,352.8],[2184.3,345.1],[2168.8,337],[2153.3,328.6],[2137.7,320.4],[2121.7,312.6],[2105.5,305.3],[2089.1,298.5],[2072.4,292.2],[2055.7,286.4],[2038.9,280.9],[2022.1,275.5],[2005.3,270],[1988.5,264.3],[1972,258],[1955.8,251],[1939.9,243.2],[1924.6,234.3],[1910,224.3],[1896.2,213.2],[1883.4,201.1],[1871.7,187.9],[1861.1,174],[1851.1,159.4],[1841.8,144.4],[1832.9,129.2],[1824.2,114],[1815.3,98.8],[1806,83.9],[1796.1,69.3],[1785.4,55.4],[1773.6,42.4],[1760.7,30.7],[1746.5,20.7],[1731.4,12.4],[1715.6,6.2],[1699.5,2.4],[1683.5,1],[1668,2],[1653.4,5.2],[1640.2,10.4],[1628.9,17.5],[1619.6,26],[1612.3,35.7],[1607.2,46.1],[1604.4,56.8],[1603.6,67.6],[1604.7,78.5],[1607.4,89],[1611.3,99.2],[1615.9,109.2],[1620.1,119.4],[1623.2,130.1],[1624.4,141.5],[1623.5,153.5],[1620.6,165.9],[1615.4,178.4],[1608.1,190.8],[1598.7,203],[1587.5,214.8],[1574.7,225.8],[1560.5,235.9],[1545.2,245.1],[1528.9,253.2],[1512,260.4],[1494.7,266.4],[1477,271.6],[1459.1,275.9],[1441.1,279.5],[1423,282.5],[1404.9,285.3],[1386.9,288.1],[1368.8,291.2],[1350.8,294.9],[1332.9,299.2],[1315.1,304.2],[1297.6,309.8],[1280.2,316.2],[1263.2,323.1],[1246.3,330.7],[1229.7,338.7],[1213.4,347.2],[1197.2,356.2],[1181.4,365.6],[1165.8,375.3],[1150.4,385.5],[1135.3,396.1],[1120.5,407],[1105.9,418.3],[1091.6,429.9],[1077.6,441.9],[1063.8,454.2],[1050.3,466.8],[1037.1,479.7],[1024.1,492.8],[1011.4,506.2],[998.9,519.8],[986.7,533.6],[974.5,547.5],[962.4,561.5],[950.3,575.4],[938.1,589.3],[925.7,603.1],[913.3,616.8],[900.6,630.3],[887.7,643.7],[874.6,656.9],[861.2,669.7],[847.4,682.3],[833.3,694.5],[818.9,706.3],[804.2,717.7],[789.1,728.8],[773.8,739.5],[758.2,749.8],[742.3,759.8],[726.2,769.3],[709.8,778.3],[693.1,786.9],[676.1,795],[659,802.7],[641.7,809.9],[624.3,816.7],[606.8,823],[589.1,829],[571.3,834.5],[553.4,839.6],[535.4,844.1],[517.4,848],[499.4,851.2],[481.4,853.6],[463.5,855.2],[445.8,855.9],[428.3,855.5],[411.2,854.1],[394.6,851.7],[378.5,848.3],[363.2,843.7],[348.7,838.2],[335,831.6],[322.4,824.1],[311,815.6],[300.7,806.2],[291.6,796.1],[283.8,785.2],[277.3,773.8],[272.1,761.8],[268.3,749.4],[265.6,736.7],[264.2,723.8],[263.4,710.7],[262.6,697.7],[261.4,684.7],[259,671.9],[255.4,659.3],[250.6,647.1],[244.3,635.1],[236.5,623.5],[227.2,612.3],[216.5,601.5],[204.6,591.1],[191.5,581.2],[177.3,571.8],[162.3,562.8],[146.7,554.2],[130.7,546],[114.3,538.2],[97.8,530.7],[81.2,523.5],[64.7,516.6],[48.4,510],[32.3,503.6],[16.5,497.3],[1.1,491.1]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":65,"ty":4,"ln":"layer_65","sr":1,"ks":{"a":{"a":0,"k":[1293.78,321.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.53,12808.77]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface316","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.5,438],[3436.2,430.8],[3423,423.5],[3409.7,416.2],[3396.4,408.9],[3383.1,401.5],[3369.8,394],[3356.5,386.4],[3343.3,378.6],[3330,370.6],[3316.8,362.6],[3303.6,354.4],[3290.4,346.3],[3277.2,338.1],[3264,329.7],[3250.8,321.3],[3237.6,312.8],[3224.5,304],[3211.5,294.7],[3198.7,285],[3186.2,274.5],[3174,263.3],[3162.2,251.3],[3150.8,238.6],[3140.1,225.2],[3129.9,211],[3120.5,196.2],[3111.7,180.9],[3103.7,165.1],[3096.2,148.9],[3088.7,132.8],[3080.9,116.8],[3072.4,101.1],[3063.1,86.1],[3052.9,71.8],[3041.6,58.5],[3029.1,46.5],[3015.5,35.8],[3000.8,26.8],[2985.2,19.4],[2968.8,14.1],[2951.7,10.6],[2934.2,9],[2916.4,9.3],[2898.6,11.3],[2880.9,14.9],[2863.4,19.9],[2846.4,26.2],[2829.9,33.6],[2813.9,41.9],[2798.4,50.9],[2783.2,60.4],[2768.2,70.2],[2753.4,80.1],[2738.4,89.8],[2723.2,99.1],[2707.5,107.7],[2691.4,115.8],[2675.1,123.6],[2658.6,131],[2642.1,138.3],[2625.8,145.7],[2609.6,153.4],[2593.9,161.7],[2578.6,170.9],[2564.1,181],[2550.4,192],[2537.7,204],[2526.2,217],[2515.6,230.8],[2505.4,245],[2495.3,259.4],[2484.8,273.5],[2474.1,287.3],[2462.7,300.5],[2450.6,313],[2437.7,324.6],[2424,335.2],[2409.5,344.6],[2394.3,352.7],[2378.3,359.4],[2361.8,364.6],[2344.7,368.4],[2327.4,370.7],[2309.8,371.5],[2292.1,371],[2274.5,369.1],[2256.9,366],[2239.7,361.8],[2222.7,356.5],[2206.2,350.2],[2190,343.1],[2174.3,335.2],[2158.9,326.8],[2143.6,318.3],[2128.1,310],[2112.2,302.1],[2096.1,294.7],[2079.7,287.7],[2063.1,281.4],[2046.4,275.5],[2029.5,270.1],[2012.7,264.9],[1995.8,259.6],[1979,254.2],[1962.4,248.4],[1945.9,242],[1929.9,234.7],[1914.3,226.4],[1899.2,217],[1885,206.5],[1871.8,194.9],[1859.6,182.2],[1848.4,168.6],[1838.2,154.3],[1828.7,139.5],[1819.9,124.2],[1811.4,108.9],[1802.6,93.6],[1793.4,78.7],[1783.3,64.2],[1772.1,50.7],[1759.8,38.2],[1746.5,27.1],[1731.9,17.8],[1716.4,10.3],[1700.4,4.9],[1684.3,1.7],[1668.4,1.1],[1653.1,2.8],[1638.9,6.6],[1626.2,12.3],[1615.4,19.8],[1606.7,28.7],[1600,38.6],[1595.5,49.1],[1593.3,59.8],[1593,70.6],[1594.5,81.3],[1597.6,91.8],[1601.8,101.9],[1606.5,111.9],[1610.8,122],[1614,132.7],[1615.1,144.1],[1614.2,156.2],[1611.2,168.5],[1606,181.1],[1598.5,193.5],[1589,205.7],[1577.6,217.3],[1564.7,228.3],[1550.4,238.3],[1535,247.4],[1518.7,255.4],[1501.8,262.5],[1484.4,268.5],[1466.7,273.5],[1448.8,277.7],[1430.8,281.2],[1412.8,284.2],[1394.7,286.8],[1376.6,289.5],[1358.5,292.4],[1340.5,296],[1322.6,300.2],[1304.8,305],[1287.2,310.4],[1269.8,316.6],[1252.7,323.3],[1235.8,330.6],[1219,338.4],[1202.6,346.7],[1186.3,355.4],[1170.3,364.4],[1154.5,373.9],[1139,383.9],[1123.7,394.2],[1108.7,404.9],[1094.1,416],[1079.7,427.5],[1065.6,439.4],[1051.8,451.7],[1038.4,464.3],[1025.2,477.2],[1012.3,490.3],[999.6,503.7],[987.1,517.3],[974.7,531],[962.5,544.8],[950.3,558.6],[938.2,572.6],[914,600.6],[901.7,614.4],[889.2,628.1],[876.4,641.5],[863.3,654.6],[849.8,667.4],[836.1,679.9],[822.1,692.2],[807.7,704.1],[793.2,715.7],[778.3,727],[763.2,737.9],[747.8,748.5],[732.1,758.7],[716.1,768.4],[699.7,777.6],[683.1,786.3],[666.3,794.5],[649.2,802.2],[632,809.6],[614.6,816.5],[597.1,823],[579.5,829.1],[561.7,834.8],[543.9,840.1],[526,844.8],[508,848.9],[490,852.3],[472,854.8],[454.1,856.5],[436.4,857.3],[418.9,857.1],[401.8,855.8],[385.1,853.5],[369,850.1],[353.6,845.7],[339,840.2],[325.4,833.6],[312.7,826.1],[301.2,817.6],[290.9,808.3],[281.7,798.2],[273.9,787.4],[267.4,775.9],[262.2,764],[258.2,751.6],[255.5,738.9],[254,726],[252,700],[250.5,687],[247.7,674.3],[243.7,661.9],[238.3,649.7],[231.5,637.8],[223.1,626.4],[213.3,615.3],[202.2,604.6],[189.9,594.4],[176.5,584.6],[162.1,575.3],[146.9,566.4],[131.1,557.9],[115,549.8],[98.6,542.1],[82,534.7],[65.4,527.6],[49,520.8],[32.7,514.2],[16.7,507.8],[1,501.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":66,"ty":4,"ln":"layer_66","sr":1,"ks":{"a":{"a":0,"k":[1297.155,325.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.86,12812.82]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface321","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1.1,517.3],[16.7,523.5],[32.6,529.8],[48.7,536.2],[65,542.9],[81.4,549.8],[98,557],[114.5,564.5],[130.8,572.4],[146.9,580.7],[162.4,589.4],[177.3,598.5],[191.3,608],[204.3,617.9],[216.2,628.3],[226.9,639.2],[236.2,650.4],[244,662],[250.4,674],[255.4,686.3],[259,698.9],[261.2,711.7],[262.7,724.6],[264.1,737.6],[266,750.4],[269,763],[273.2,775.3],[278.5,787.2],[285.2,798.6],[293.1,809.4],[302.3,819.4],[312.7,828.7],[324.3,837.2],[337,844.6],[350.7,851.1],[365.4,856.5],[380.9,860.8],[397.1,864],[413.8,866.1],[431.1,867.1],[448.6,867.1],[466.4,866],[484.3,864],[502.2,861.1],[520.2,857.4],[538.1,853],[555.9,847.9],[573.6,842.3],[591.3,836.2],[608.8,829.7],[626.1,822.9],[643.4,815.8],[660.5,808.2],[677.4,800.2],[694.2,791.8],[710.6,782.9],[726.8,773.5],[742.6,763.5],[758.1,753],[773.2,742.1],[788.1,730.8],[802.7,719.2],[817,707.3],[831,695.2],[844.9,682.8],[858.4,670.1],[871.8,657.2],[884.8,644],[897.5,630.5],[909.7,616.7],[921.7,602.7],[933.6,588.5],[945.4,574.4],[957.5,560.4],[969.6,546.5],[981.8,532.7],[994.2,519.1],[1006.7,505.6],[1019.4,492.2],[1032.3,479.1],[1045.6,466.4],[1059.1,453.9],[1073,441.8],[1087.2,430.2],[1101.8,418.9],[1116.7,408.2],[1132,397.9],[1147.5,388],[1163.3,378.6],[1179.4,369.6],[1195.6,361],[1212.1,352.8],[1228.8,345],[1245.7,337.7],[1262.8,330.8],[1280.1,324.5],[1297.5,318.8],[1315.2,313.7],[1333.1,309.3],[1351,305.4],[1369,302.1],[1387.1,299.3],[1405.1,296.8],[1423.2,294.3],[1441.2,291.5],[1459.3,288.2],[1477.2,284.2],[1494.9,279.4],[1512.3,273.6],[1529.3,266.8],[1545.7,259],[1561.3,250.1],[1575.8,240.3],[1588.9,229.5],[1600.5,217.9],[1610.3,205.8],[1618,193.4],[1623.4,180.9],[1626.6,168.4],[1627.7,156.4],[1626.6,144.9],[1623.5,134.2],[1619.2,124],[1614.3,114.1],[1609.6,104.2],[1605.9,93.9],[1603.4,83.4],[1602.6,72.7],[1603.6,62.1],[1606.9,51.4],[1612.3,41.2],[1619.9,31.8],[1629.6,23.5],[1641.3,16.8],[1654.8,11.9],[1669.4,8.9],[1685,8.1],[1701.1,9.7],[1717.3,13.6],[1733.2,19.6],[1748.4,27.6],[1762.6,37.5],[1775.6,49],[1787.6,61.9],[1798.2,75.9],[1807.6,90.7],[1816.3,105.9],[1824.8,121.3],[1833.8,136.4],[1843.8,150.8],[1854.9,164.4],[1867.1,177.1],[1880.2,188.7],[1894.4,199.1],[1909.5,208.4],[1925.2,216.5],[1941.3,223.6],[1957.7,229.8],[1974.4,235.2],[1991.2,240.2],[2008.1,245],[2025,250],[2041.9,255.2],[2058.7,260.7],[2075.3,266.8],[2091.8,273.4],[2108,280.6],[2124,288.3],[2139.6,296.4],[2154.9,305],[2170.1,313.7],[2185.2,322.3],[2200.7,330.5],[2216.6,338],[2233,344.8],[2249.7,350.6],[2266.8,355.5],[2284.2,359.2],[2301.7,361.7],[2319.4,362.9],[2337,362.7],[2354.4,361.1],[2371.7,358],[2388.4,353.5],[2404.7,347.6],[2420.3,340.3],[2435.2,331.7],[2449.4,321.8],[2462.8,310.9],[2475.5,299.1],[2487.4,286.4],[2498.5,272.9],[2508.8,258.8],[2518.4,244.1],[2527.8,229.3],[2537.3,214.5],[2547.4,200.3],[2558.6,186.9],[2570.8,174.4],[2584,162.7],[2597.9,152],[2612.6,142.2],[2627.9,133.3],[2643.7,124.8],[2659.7,116.8],[2675.9,108.9],[2692.1,101.1],[2708.2,93],[2724,84.5],[2739.5,75.5],[2754.7,66.1],[2769.8,56.6],[2785.1,47.1],[2800.5,38],[2816.3,29.4],[2832.5,21.6],[2849.2,14.8],[2866.4,9.2],[2884,4.9],[2901.8,2.2],[2919.5,1.2],[2937.2,1.9],[2954.4,4.6],[2971.1,9.1],[2987.1,15.6],[3002.2,23.9],[3016.2,34],[3029.1,45.5],[3040.9,58.4],[3051.3,72.4],[3060.7,87.2],[3069.3,102.7],[3077.3,118.7],[3084.8,134.8],[3092.2,151],[3099.8,167],[3107.8,182.8],[3116.6,198.1],[3126,212.9],[3136.1,227.1],[3146.8,240.6],[3158,253.4],[3169.7,265.5],[3181.8,276.9],[3194.2,287.6],[3206.9,297.6],[3219.7,307.1],[3232.8,316.1],[3245.9,324.7],[3259.1,333],[3272.4,341],[3285.7,348.9],[3299,356.7],[3312.3,364.5],[3325.6,372.2],[3338.9,379.9],[3352.2,387.5],[3365.5,395],[3378.8,402.4],[3392.1,409.8],[3405.3,417.1],[3418.6,424.4],[3431.9,431.6],[3445.1,438.8],[3458.3,446]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":67,"ty":4,"ln":"layer_67","sr":1,"ks":{"a":{"a":0,"k":[1293.03,322.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.86,12812.14]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface326","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3446.9,434.7],[3433.6,427.5],[3420.3,420.3],[3407,413.1],[3393.7,405.8],[3380.4,398.5],[3367.1,391],[3353.8,383.5],[3340.5,375.8],[3327.3,368.1],[3314,360.2],[3300.7,352.3],[3287.5,344.3],[3274.2,336.2],[3261,328],[3247.8,319.6],[3234.6,311],[3221.6,302.1],[3208.7,292.7],[3195.9,282.8],[3183.5,272.2],[3171.3,260.9],[3159.6,248.9],[3148.3,236.1],[3137.6,222.6],[3127.5,208.4],[3118,193.7],[3109.3,178.3],[3101.3,162.5],[3093.7,146.4],[3086.3,130.2],[3078.6,114.1],[3070.4,98.4],[3061.5,83.1],[3051.7,68.5],[3040.8,54.9],[3028.7,42.4],[3015.4,31.3],[3001,21.8],[2985.7,13.9],[2969.5,8],[2952.6,4],[2935.2,1.9],[2917.5,1.6],[2899.7,3.1],[2882,6.3],[2864.4,11],[2847.3,17],[2830.8,24.1],[2814.7,32.2],[2799,41],[2783.7,50.4],[2768.6,60],[2753.6,69.7],[2738.5,79.2],[2723.2,88.3],[2707.4,96.9],[2691.3,104.9],[2675,112.6],[2658.6,120.2],[2642.3,127.8],[2626.2,135.7],[2610.5,144],[2595.2,153],[2580.6,163],[2566.7,173.9],[2553.7,185.7],[2541.8,198.4],[2531.1,212.2],[2521.1,226.6],[2511.5,241.2],[2501.7,255.8],[2491.3,269.9],[2480.3,283.5],[2468.7,296.4],[2456.3,308.6],[2443.1,319.8],[2429.2,330],[2414.4,339],[2399,346.7],[2382.9,353],[2366.2,357.9],[2349.1,361.3],[2331.7,363.3],[2314.1,363.8],[2296.4,362.9],[2278.8,360.7],[2261.4,357.3],[2244.2,352.8],[2227.4,347.2],[2210.9,340.6],[2194.9,333.3],[2179.3,325.2],[2164.1,316.7],[2148.8,308.1],[2133.4,299.6],[2117.7,291.6],[2101.6,284],[2085.3,277],[2068.7,270.5],[2052,264.6],[2035.2,259.2],[2018.3,254],[2001.5,248.9],[1984.6,243.8],[1967.8,238.4],[1951.3,232.5],[1935,225.8],[1919.1,218.1],[1903.7,209.3],[1889.1,199.4],[1875.3,188.4],[1862.7,176.3],[1851,163.1],[1840.4,149.1],[1830.6,134.5],[1821.8,119.3],[1813.3,103.9],[1804.7,88.6],[1795.5,73.7],[1785.1,59.5],[1773.5,46.2],[1760.8,34.2],[1747,23.8],[1732.1,15.1],[1716.4,8.3],[1700.3,3.7],[1684.2,1.3],[1668.4,1.4],[1653.4,3.7],[1639.6,8.1],[1627.3,14.4],[1617.1,22.3],[1608.9,31.4],[1602.9,41.5],[1599,52.1],[1597.3,62.8],[1597.6,73.5],[1599.6,84.2],[1603,94.5],[1607.5,104.5],[1612.3,114.5],[1616.6,124.6],[1619.8,135.3],[1620.9,146.7],[1619.9,158.8],[1616.8,171.2],[1611.5,183.7],[1603.9,196.2],[1594.2,208.3],[1582.8,219.9],[1569.7,230.8],[1555.3,240.7],[1539.9,249.7],[1523.5,257.6],[1506.5,264.6],[1489.2,270.4],[1471.4,275.4],[1453.5,279.5],[1435.5,282.9],[1417.5,285.8],[1399.4,288.3],[1381.3,290.9],[1363.3,293.7],[1345.2,297.1],[1327.3,301.2],[1309.5,305.8],[1291.9,311.1],[1274.4,317],[1257.2,323.6],[1240.2,330.7],[1223.4,338.2],[1206.8,346.2],[1190.4,354.6],[1174.3,363.5],[1158.4,372.7],[1142.7,382.3],[1127.3,392.4],[1112.1,402.9],[1097.4,413.9],[1082.9,425.3],[1068.8,437.1],[1054.9,449.3],[1041.5,461.8],[1028.3,474.7],[1015.4,487.9],[1002.7,501.2],[990.2,514.7],[977.8,528.4],[965.5,542.1],[953.3,555.9],[941.2,569.9],[929.3,584],[917.3,598.1],[905.2,612.1],[892.9,625.8],[880.1,639.3],[867,652.4],[853.6,665.2],[839.9,677.7],[825.9,690],[811.7,702.1],[797.3,713.8],[782.6,725.3],[767.7,736.4],[752.4,747.3],[736.8,757.6],[721,767.5],[704.7,776.8],[688.2,785.6],[671.4,793.9],[654.4,801.8],[637.2,809.2],[619.9,816.2],[602.4,822.9],[584.8,829.1],[567.2,835],[549.4,840.5],[531.5,845.4],[513.6,849.7],[495.6,853.2],[477.6,856],[459.7,857.8],[442,858.7],[424.5,858.6],[407.3,857.4],[390.6,855.2],[374.4,852],[359,847.6],[344.4,842.1],[330.7,835.6],[318,828.1],[306.5,819.7],[296.1,810.4],[286.9,800.3],[279.1,789.5],[272.5,778.1],[267.2,766.2],[263.1,753.8],[260.3,741.2],[258.6,728.3],[257.5,715.3],[256.2,702.3],[254.3,689.4],[251.1,676.8],[246.6,664.4],[240.8,652.3],[233.4,640.6],[224.5,629.2],[214.3,618.3],[202.8,607.8],[190.1,597.7],[176.4,588],[161.8,578.8],[146.4,570],[130.5,561.6],[114.3,553.6],[97.8,546],[81.2,538.7],[64.7,531.7],[48.3,525],[32.1,518.5],[16.2,512.1],[0.6,506]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":68,"ty":4,"ln":"layer_68","sr":1,"ks":{"a":{"a":0,"k":[1296.03,328.885]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12813.83]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface331","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3455.6,450.1],[3442.4,442.9],[3429.1,435.8],[3415.9,428.6],[3402.6,421.3],[3389.4,413.9],[3376.1,406.4],[3362.8,398.9],[3349.6,391.4],[3336.3,383.8],[3323,376.2],[3309.6,368.6],[3296.3,361],[3283,353.4],[3269.6,345.6],[3256.3,337.7],[3243.1,329.5],[3229.9,320.9],[3216.9,311.9],[3204.1,302.4],[3191.5,292.3],[3179.1,281.5],[3167.1,270],[3155.5,257.9],[3144.3,245],[3133.6,231.5],[3123.5,217.3],[3114.1,202.6],[3105.3,187.3],[3097.2,171.6],[3089.6,155.6],[3082.2,139.4],[3074.8,123.2],[3067.1,107.2],[3058.9,91.4],[3049.9,76.3],[3039.8,62],[3028.5,48.7],[3015.9,36.7],[3002.2,26.2],[2987.4,17.3],[2971.7,10.4],[2955.2,5.4],[2938.1,2.2],[2920.6,0.9],[2902.8,1.5],[2885,3.7],[2867.4,7.5],[2850.1,12.7],[2833.3,19.2],[2816.9,26.7],[2800.9,35],[2785.3,43.8],[2769.9,53.1],[2754.6,62.5],[2739.4,71.7],[2723.9,80.8],[2708.1,89.2],[2692,97.4],[2676,105.5],[2660,113.8],[2644.3,122.3],[2629,131.4],[2614.3,141.1],[2600.2,151.6],[2586.9,163],[2574.5,175.4],[2563,188.6],[2552.4,202.5],[2542.7,217.1],[2533.5,232],[2524.3,247],[2514.8,261.6],[2504.4,275.7],[2493.1,289],[2481.1,301.6],[2468.2,313.2],[2454.6,323.8],[2440.2,333.2],[2425.1,341.5],[2409.3,348.5],[2392.9,354],[2376,358.1],[2358.8,360.8],[2341.3,362.1],[2323.6,361.9],[2306,360.4],[2288.5,357.6],[2271.2,353.6],[2254.2,348.5],[2237.6,342.4],[2221.3,335.4],[2205.5,327.7],[2190.2,319.4],[2175.1,310.8],[2160,302],[2144.8,293.3],[2129.3,285],[2113.4,277.2],[2097.3,269.8],[2080.9,263],[2064.3,256.8],[2047.5,251.1],[2030.7,245.8],[2013.8,240.9],[1996.9,236.3],[1980.1,231.6],[1963.3,226.7],[1946.8,221.1],[1930.4,214.6],[1914.4,207.1],[1899,198.5],[1884.4,188.7],[1870.8,177.7],[1858.1,165.5],[1846.6,152.2],[1836.2,138.1],[1826.9,123.2],[1818.2,108],[1809.4,92.9],[1799.8,78.2],[1788.9,64.5],[1776.6,52],[1763.2,41],[1748.7,31.7],[1733.2,24.3],[1717.1,19],[1700.9,15.9],[1684.9,15.1],[1669.6,16.5],[1655.2,20.2],[1642.2,25.6],[1631,32.8],[1621.9,41.4],[1614.9,51],[1610.1,61.4],[1607.5,72],[1607,82.7],[1608.4,93.2],[1611.4,103.6],[1615.4,113.7],[1620.3,123.6],[1625.2,133.5],[1629.5,143.7],[1632.5,154.4],[1633.5,165.9],[1632.3,178.1],[1629,190.5],[1623.5,203.1],[1615.6,215.5],[1605.7,227.5],[1594,239],[1580.8,249.7],[1566.2,259.5],[1550.6,268.3],[1534.1,276],[1517,282.7],[1499.6,288.3],[1481.9,293],[1463.9,296.8],[1445.9,300.1],[1427.9,302.8],[1409.8,305.3],[1391.8,307.8],[1373.8,310.5],[1355.8,313.7],[1337.8,317.4],[1319.9,321.7],[1302.2,326.6],[1284.7,332.1],[1267.4,338.2],[1250.2,344.8],[1233.2,351.9],[1216.4,359.4],[1199.9,367.4],[1183.5,375.7],[1167.3,384.6],[1151.4,393.8],[1135.8,403.5],[1120.4,413.6],[1105.4,424.2],[1090.7,435.2],[1076.3,446.7],[1062.3,458.6],[1048.6,470.9],[1035.3,483.6],[1022.3,496.5],[1009.5,509.8],[997,523.3],[984.8,537],[972.7,550.9],[960.7,564.9],[948.8,579],[937,593.1],[925.2,607.3],[913.2,621.3],[901,635.2],[888.4,648.7],[875.5,662.1],[862.4,675.1],[849,687.9],[835.3,700.5],[821.4,712.7],[807.1,724.7],[792.6,736.4],[777.9,747.8],[762.8,758.8],[747.4,769.3],[731.6,779.4],[715.5,788.9],[699.1,797.9],[682.4,806.4],[665.6,814.5],[648.5,822.2],[631.4,829.6],[614.1,836.6],[596.7,843.2],[579.1,849.4],[561.4,855.2],[543.7,860.5],[525.8,865.1],[507.8,868.9],[489.9,872],[472,874.2],[454.2,875.4],[436.6,875.6],[419.4,874.7],[402.6,872.7],[386.4,869.6],[370.8,865.3],[356.1,860],[342.3,853.6],[329.6,846.2],[318,837.7],[307.5,828.5],[298.3,818.4],[290.3,807.7],[283.6,796.3],[278.1,784.5],[273.8,772.3],[270.6,759.7],[268.5,746.9],[266.9,734],[265,721.1],[262.4,708.3],[258.4,695.8],[253,683.6],[246.1,671.7],[237.8,660.2],[228,649.1],[216.9,638.4],[204.7,628.1],[191.3,618.3],[177,608.9],[161.9,600],[146.3,591.4],[130.1,583.2],[113.8,575.5],[97.3,568],[80.7,560.9],[64.2,554],[48,547.5],[32,541.1],[16.2,534.8],[0.6,528.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":69,"ty":4,"ln":"layer_69","sr":1,"ks":{"a":{"a":0,"k":[1289.655,331.885]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.2,12814.5]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface336","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3437.9,454.1],[3424.6,447.1],[3411.4,440],[3398.2,432.8],[3384.9,425.4],[3371.7,418],[3358.5,410.4],[3345.2,402.8],[3332,395.3],[3318.7,387.7],[3305.3,380.2],[3292,372.7],[3278.6,365.2],[3265.3,357.8],[3251.9,350.2],[3238.6,342.4],[3225.3,334.3],[3212.2,325.7],[3199.1,316.7],[3186.3,307.1],[3173.8,296.9],[3161.5,286.1],[3149.5,274.5],[3137.9,262.3],[3126.8,249.5],[3116.1,235.9],[3106.1,221.7],[3096.6,207],[3087.7,191.8],[3079.6,176.2],[3072,160.2],[3064.6,144.1],[3057.3,127.8],[3049.8,111.6],[3041.9,95.7],[3033.3,80.3],[3023.7,65.7],[3012.7,52],[3000.6,39.6],[2987.2,28.6],[2972.7,19.3],[2957.3,11.9],[2940.9,6.3],[2924,2.7],[2906.5,0.8],[2888.8,0.9],[2871.1,2.6],[2853.4,6],[2836,10.8],[2819,16.8],[2802.5,24],[2786.3,32],[2770.5,40.6],[2755,49.6],[2739.6,58.9],[2724.2,68.1],[2708.8,77.1],[2693,85.7],[2677.2,94.1],[2661.3,102.5],[2645.6,111.2],[2630.3,120.3],[2615.5,130.1],[2601.3,140.5],[2587.9,151.7],[2575.4,163.9],[2563.8,176.9],[2552.9,190.6],[2542.8,204.9],[2533.5,219.7],[2524.4,234.7],[2515.2,249.7],[2505.6,264.3],[2495.1,278.3],[2483.8,291.5],[2471.5,303.8],[2458.5,315.2],[2444.7,325.5],[2430.1,334.7],[2414.8,342.6],[2398.9,349.2],[2382.4,354.4],[2365.4,358.1],[2348.1,360.5],[2330.5,361.4],[2312.9,360.8],[2295.3,359],[2277.8,355.9],[2260.6,351.6],[2243.7,346.2],[2227.2,339.9],[2211.1,332.7],[2195.4,324.9],[2180.1,316.5],[2165.1,307.8],[2150.1,299],[2134.9,290.2],[2119.5,281.8],[2103.8,273.8],[2087.7,266.3],[2071.5,259.3],[2054.9,252.9],[2038.2,247],[2021.4,241.7],[2004.4,236.8],[1987.6,232.3],[1970.7,227.9],[1953.9,223.3],[1937.3,218.2],[1920.7,212.2],[1904.5,205.4],[1888.8,197.5],[1873.8,188.4],[1859.7,177.9],[1846.6,166.3],[1834.6,153.5],[1823.7,139.8],[1814.2,125.1],[1796.2,95.1],[1786.4,80.7],[1775.1,67.3],[1762.4,55.2],[1748.7,44.7],[1733.9,35.9],[1718.2,29.3],[1702,24.7],[1685.8,22.4],[1669.9,22.2],[1654.8,24.4],[1640.8,28.6],[1628.3,34.6],[1617.6,42.2],[1609.1,51],[1602.7,60.9],[1598.5,71.3],[1596.5,82],[1596.7,92.5],[1598.7,102.9],[1602.1,113.2],[1606.5,123.2],[1611.5,133.1],[1616.4,143],[1620.6,153.2],[1623.5,163.9],[1624.3,175.5],[1623.1,187.7],[1619.6,200.1],[1613.9,212.7],[1606,225.1],[1596,237.1],[1584.1,248.5],[1570.8,259.2],[1556.2,268.9],[1540.5,277.5],[1523.9,285.2],[1506.8,291.7],[1489.3,297.2],[1471.6,301.7],[1453.7,305.5],[1435.6,308.7],[1417.6,311.4],[1399.6,313.8],[1381.6,316.3],[1363.5,319],[1345.5,322.1],[1327.6,325.7],[1309.7,329.8],[1291.9,334.4],[1274.4,339.7],[1257,345.6],[1239.7,351.9],[1222.7,358.8],[1205.8,366.1],[1189.1,373.8],[1172.7,382],[1156.4,390.7],[1140.4,399.7],[1124.7,409.2],[1109.2,419.2],[1094.1,429.6],[1079.2,440.4],[1064.7,451.7],[1050.6,463.4],[1036.8,475.5],[1023.3,488],[1010.2,500.9],[997.4,514.1],[984.9,527.6],[972.7,541.4],[960.8,555.3],[949,569.4],[937.2,583.6],[925.4,597.8],[913.6,611.9],[901.6,625.9],[889.4,639.8],[877,653.5],[864.3,666.9],[851.3,680.1],[838.1,693.1],[824.6,705.8],[810.7,718.2],[796.6,730.3],[782.2,742],[767.5,753.4],[752.5,764.4],[737.1,775],[721.4,785.1],[705.3,794.7],[689,803.8],[672.4,812.5],[655.6,820.8],[638.7,828.7],[621.6,836.2],[604.4,843.3],[587,850.1],[569.5,856.5],[551.9,862.5],[534.2,867.9],[516.4,872.7],[498.5,876.7],[480.5,880],[462.6,882.3],[444.9,883.7],[427.2,884],[409.9,883.3],[393.1,881.4],[376.8,878.4],[361.3,874.2],[346.5,868.9],[332.7,862.5],[319.9,855.1],[308.3,846.7],[297.8,837.5],[288.5,827.4],[280.4,816.7],[273.6,805.4],[268,793.6],[263.5,781.5],[260.1,768.9],[257.8,756.2],[255.8,743.3],[253.6,730.5],[250.6,717.8],[246.2,705.4],[240.3,693.2],[233,681.5],[224.2,670.1],[214.1,659.1],[202.6,648.5],[189.9,638.4],[176.3,628.7],[161.7,619.4],[146.4,610.6],[130.6,602.2],[114.4,594.1],[98,586.4],[81.5,579.1],[64.9,572],[48.5,565.2],[32.3,558.7],[16.4,552.3],[0.6,546.1]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":70,"ty":4,"ln":"layer_70","sr":1,"ks":{"a":{"a":0,"k":[1293.03,338.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.53,12815.85]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface341","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.4,569.7],[16,575.9],[31.9,582.2],[48,588.6],[64.3,595.3],[80.8,602.2],[97.4,609.4],[113.8,616.9],[130.2,624.7],[146.3,632.9],[161.9,641.5],[176.9,650.5],[191.1,660],[204.4,669.8],[216.7,680.1],[227.7,690.9],[237.4,702.1],[245.6,713.6],[252.4,725.6],[257.8,737.8],[261.6,750.4],[264.5,763.1],[267.2,775.8],[270.1,788.4],[274,800.8],[278.8,812.9],[284.7,824.6],[291.6,835.8],[299.9,846.4],[309.3,856.4],[319.9,865.6],[331.6,873.9],[344.5,881.3],[358.4,887.5],[373.2,892.8],[388.8,896.8],[405.2,899.7],[422.1,901.4],[439.4,901.9],[457.1,901.3],[474.9,899.6],[492.8,896.9],[510.7,893.3],[528.5,888.9],[546.3,883.7],[563.9,878],[581.3,871.6],[598.6,864.8],[615.8,857.6],[632.8,850],[649.8,842.1],[666.5,833.9],[683.1,825.3],[699.5,816.4],[715.7,807.1],[731.6,797.3],[747.2,787.1],[762.4,776.3],[777.3,765.2],[791.9,753.7],[806.1,741.8],[820.1,729.6],[833.7,717],[847,704.1],[860,690.9],[872.7,677.5],[885.2,663.9],[897.4,650],[909.3,636],[921.1,621.9],[932.9,607.7],[956.1,579.3],[967.9,565.1],[979.8,551.1],[992,537.4],[1004.5,524.1],[1017.5,511],[1030.8,498.4],[1044.5,486.2],[1058.5,474.3],[1072.8,462.9],[1087.5,451.9],[1102.6,441.4],[1117.9,431.3],[1133.6,421.7],[1149.5,412.6],[1165.7,404],[1182.2,395.8],[1198.8,388.1],[1215.7,380.9],[1232.8,374.1],[1249.9,367.7],[1267.3,361.8],[1284.8,356.4],[1302.5,351.4],[1320.3,347],[1338.2,343.1],[1356.1,339.7],[1374.1,336.7],[1392.1,334.2],[1410.1,331.9],[1428.1,329.6],[1446.1,327.1],[1464.1,324.1],[1482,320.5],[1499.8,316.1],[1517.3,310.8],[1534.5,304.4],[1551.1,296.9],[1566.9,288.5],[1581.7,279],[1595.3,268.4],[1607.3,257.1],[1617.6,245.2],[1625.8,232.9],[1631.8,220.3],[1635.5,207.8],[1637.1,195.5],[1636.6,183.8],[1634.2,172.9],[1630.3,162.6],[1625.4,152.6],[1620.2,142.8],[1615.2,133],[1610.8,123.1],[1607.7,113.1],[1606.2,102.8],[1606.9,92.2],[1609.9,81.6],[1615,71.5],[1622.4,62.1],[1632,53.9],[1643.6,47],[1656.8,41.7],[1671.2,38.3],[1686.7,37],[1702.8,37.9],[1719.1,40.9],[1735.1,46.1],[1750.4,53.5],[1764.9,62.9],[1778.3,74],[1790.4,86.6],[1800.8,100.4],[1810.5,114.9],[1820.1,129.5],[1830.4,143.6],[1842.2,156.5],[1855.2,168.2],[1869.3,178.7],[1884.3,187.8],[1900,195.5],[1916.2,202],[1932.7,207.6],[1949.5,212.4],[1966.2,216.8],[1983,221],[1999.9,225.2],[2016.7,229.7],[2033.6,234.7],[2050.4,240.3],[2067.1,246.4],[2083.5,253.1],[2099.7,260.4],[2115.5,268.2],[2131.1,276.4],[2146.4,284.9],[2161.4,293.7],[2176.2,302.7],[2191.2,311.5],[2206.3,320.1],[2221.8,328.2],[2237.6,335.8],[2253.9,342.5],[2270.6,348.4],[2287.6,353.3],[2305,357],[2322.5,359.5],[2340.1,360.8],[2357.6,360.6],[2375,359],[2392.2,356],[2408.9,351.5],[2425.1,345.6],[2440.7,338.3],[2455.7,329.8],[2469.8,320],[2483.2,309],[2495.7,297],[2507.3,284.1],[2518.2,270.5],[2528.1,256.2],[2537.5,241.4],[2546.5,226.4],[2555.6,211.4],[2564.9,196.5],[2574.6,182],[2584.8,167.9],[2595.9,154.5],[2608,141.9],[2621,130.1],[2634.7,119],[2649,108.6],[2663.8,98.9],[2679.1,89.6],[2694.5,80.6],[2710,71.6],[2725.5,62.5],[2740.9,53.4],[2756.4,44.4],[2772.2,35.8],[2788.4,27.7],[2804.8,20.3],[2821.7,13.8],[2838.9,8.4],[2856.5,4.5],[2874.2,2.1],[2891.9,1.3],[2909.5,2.2],[2926.7,5],[2943.3,9.7],[2959.2,16.3],[2974.1,24.7],[2987.9,34.9],[3000.6,46.8],[3012,59.9],[3022.2,74.3],[3031.1,89.4],[3039,105.3],[3046.3,121.5],[3053.3,137.9],[3060.5,154.2],[3067.8,170.3],[3075.5,186.2],[3083.8,201.8],[3092.6,216.9],[3102.1,231.6],[3112.2,245.7],[3122.8,259.3],[3133.8,272.2],[3145.3,284.6],[3157.2,296.2],[3169.4,307.2],[3181.9,317.5],[3194.7,327.1],[3207.6,336.2],[3220.8,344.8],[3234,352.9],[3247.4,360.6],[3260.7,368.1],[3274.2,375.4],[3287.6,382.7],[3301,389.9],[3314.3,397.2],[3327.7,404.5],[3341,411.9],[3354.2,419.3],[3367.5,426.8],[3380.7,434.2],[3393.9,441.5],[3407.1,448.6],[3420.4,455.7],[3433.6,462.6],[3446.9,469.4]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":71,"ty":4,"ln":"layer_71","sr":1,"ks":{"a":{"a":0,"k":[1293.78,334.885]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.2,12815.18]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface346","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.5,464.9],[3436.2,458],[3422.9,451.1],[3409.7,444],[3396.5,436.8],[3383.3,429.4],[3370.1,422],[3356.8,414.4],[3343.6,406.8],[3330.3,399.3],[3317,391.8],[3303.7,384.4],[3290.3,377],[3276.9,369.7],[3263.5,362.3],[3250.1,354.8],[3236.8,347.1],[3223.5,339],[3210.4,330.5],[3197.4,321.4],[3184.6,311.8],[3172.1,301.6],[3159.8,290.6],[3147.9,279],[3136.4,266.8],[3125.3,253.9],[3114.7,240.3],[3104.6,226.2],[3095.1,211.5],[3086.2,196.3],[3078,180.7],[3070.3,164.8],[3063,148.7],[3055.7,132.4],[3048.5,116.1],[3041,100],[3032.7,84.4],[3023.5,69.4],[3012.9,55.4],[3001.1,42.6],[2988.1,31.2],[2974,21.4],[2958.7,13.5],[2942.6,7.5],[2925.8,3.3],[2908.5,1],[2890.9,0.5],[2873.1,1.8],[2855.4,4.6],[2837.9,9],[2820.8,14.7],[2804.1,21.5],[2787.8,29.2],[2771.8,37.6],[2756.1,46.4],[2740.6,55.5],[2725.2,64.6],[2709.8,73.7],[2694.1,82.4],[2678.5,91.1],[2662.9,99.9],[2647.6,109.1],[2632.8,118.9],[2618.5,129.3],[2604.9,140.5],[2592.2,152.4],[2580.4,165.2],[2569.4,178.8],[2559.2,193],[2549.6,207.6],[2540.4,222.5],[2531.4,237.5],[2522.1,252.4],[2512.4,266.9],[2501.7,280.7],[2490.2,293.8],[2477.9,306],[2464.7,317.1],[2450.7,327.2],[2436,336.1],[2420.5,343.7],[2404.4,349.9],[2387.8,354.7],[2370.7,358.1],[2353.4,360],[2335.8,360.6],[2318.2,359.7],[2300.6,357.5],[2283.2,354.1],[2266.1,349.5],[2249.3,343.9],[2232.9,337.3],[2216.9,330],[2201.3,322],[2186.1,313.6],[2171.1,304.8],[2156.2,295.9],[2141.1,287.1],[2125.8,278.6],[2110.1,270.5],[2094.2,262.8],[2078,255.7],[2061.5,249.1],[2044.8,243.1],[2028,237.6],[2011.1,232.7],[1994.2,228.2],[1977.4,224],[1960.6,219.6],[1943.9,214.9],[1927.2,209.6],[1910.8,203.4],[1894.8,196.2],[1879.4,187.7],[1864.9,178],[1851.3,166.9],[1838.8,154.6],[1827.5,141.2],[1817.6,126.9],[1808.3,112.1],[1799,97.3],[1788.8,83.1],[1777.2,70.1],[1764.2,58.5],[1750.1,48.5],[1735,40.4],[1719.1,34.5],[1702.9,30.7],[1686.7,29.1],[1671,29.7],[1656.2,32.5],[1642.6,37.2],[1630.6,43.7],[1620.4,51.6],[1612.5,60.7],[1606.7,70.7],[1603.1,81.2],[1601.8,91.9],[1602.6,102.3],[1605.2,112.6],[1609,122.7],[1613.8,132.6],[1618.8,142.4],[1623.8,152.3],[1627.9,162.6],[1630.5,173.4],[1631.2,185],[1629.8,197.2],[1626.2,209.7],[1620.4,222.3],[1612.3,234.7],[1602.2,246.6],[1590.2,258],[1576.8,268.6],[1562,278.2],[1546.3,286.8],[1529.7,294.3],[1512.6,300.8],[1495.1,306.1],[1477.3,310.6],[1459.4,314.2],[1441.4,317.3],[1423.3,319.9],[1405.3,322.4],[1387.3,324.8],[1369.3,327.4],[1351.3,330.4],[1333.3,333.9],[1315.5,337.9],[1297.7,342.4],[1280.1,347.5],[1262.6,353.1],[1245.3,359.2],[1228.2,365.8],[1211.2,372.9],[1194.4,380.4],[1177.9,388.4],[1161.6,396.8],[1145.5,405.7],[1129.6,415],[1114.1,424.7],[1098.8,435],[1083.9,445.6],[1069.2,456.8],[1055,468.3],[1041,480.3],[1027.5,492.6],[1014.3,505.4],[1001.4,518.5],[988.9,531.9],[976.7,545.7],[964.9,559.8],[953.1,573.9],[941.5,588.2],[929.8,602.3],[917.9,616.5],[906,630.5],[893.9,644.4],[881.6,658.2],[869.1,671.7],[856.2,685.1],[843.2,698.2],[829.7,711],[816,723.5],[802,735.7],[787.6,747.5],[773,758.9],[758,770],[742.7,780.6],[727.1,790.8],[711.1,800.5],[694.8,809.7],[678.3,818.5],[661.6,826.9],[644.7,835],[627.8,842.7],[610.6,850],[593.4,857],[575.9,863.6],[558.4,869.7],[540.7,875.3],[522.9,880.3],[505.1,884.5],[487.2,887.9],[469.3,890.5],[451.5,892],[433.9,892.5],[416.5,891.8],[399.6,890.1],[383.3,887.1],[367.7,883],[352.9,877.7],[339.1,871.4],[326.3,864],[314.6,855.7],[304,846.5],[294.7,836.4],[286.5,825.8],[279.6,814.5],[273.9,802.8],[269.2,790.7],[265.6,778.2],[263,765.5],[260.7,752.7],[258.2,739.9],[254.8,727.3],[249.9,715],[243.6,702.9],[235.8,691.2],[226.6,680],[215.9,669.1],[204.1,658.7],[191.1,648.7],[177.1,639.1],[162.3,630],[146.9,621.3],[130.9,612.9],[114.6,605],[98.2,597.4],[81.7,590.1],[65.1,583.1],[48.8,576.4],[32.6,569.9],[16.7,563.6],[1,557.5]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":72,"ty":4,"ln":"layer_72","sr":1,"ks":{"a":{"a":0,"k":[1297.155,341.635]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.53,12816.52]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface351","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3458.6,479.7],[3445.3,472.9],[3432.1,466.1],[3418.8,459.2],[3405.6,452.2],[3392.3,445.1],[3379.1,437.9],[3365.9,430.6],[3352.6,423.3],[3339.3,416.1],[3326,408.8],[3312.6,401.7],[3299.2,394.7],[3285.8,387.6],[3272.3,380.4],[3258.9,373.1],[3245.5,365.6],[3232.2,357.7],[3219,349.6],[3205.9,340.9],[3193,331.8],[3180.2,322.1],[3167.7,311.8],[3155.6,300.8],[3143.7,289.1],[3132.3,276.7],[3121.3,263.7],[3110.7,250.1],[3100.7,236],[3091.2,221.3],[3082.3,206.2],[3074.1,190.6],[3066.3,174.8],[3059,158.6],[3052,142.3],[3045.1,125.9],[3038,109.5],[3030.4,93.5],[3021.9,78.1],[3012,63.5],[3001,50],[2988.7,37.8],[2975.2,27.1],[2960.5,18.2],[2944.9,11.1],[2928.5,5.9],[2911.5,2.6],[2894,1.2],[2876.3,1.5],[2858.6,3.5],[2841,7.1],[2823.6,12.1],[2806.7,18.3],[2790.1,25.4],[2773.8,33.3],[2757.9,41.8],[2742.3,50.6],[2726.8,59.7],[2711.5,68.9],[2696.2,78.2],[2681,87.6],[2666.2,97.4],[2651.8,107.7],[2638,118.7],[2624.9,130.4],[2612.6,142.9],[2601.2,156.1],[2590.7,170],[2581,184.4],[2571.7,199.3],[2562.8,214.3],[2553.8,229.4],[2544.6,244.3],[2535.1,258.9],[2524.9,273],[2513.9,286.5],[2502.1,299.2],[2489.4,310.9],[2475.9,321.7],[2461.5,331.2],[2446.5,339.5],[2430.7,346.5],[2414.4,352.1],[2397.6,356.2],[2380.3,358.9],[2362.9,360.1],[2345.3,359.9],[2327.8,358.3],[2310.3,355.5],[2293,351.4],[2276.1,346.2],[2259.6,340.1],[2243.4,333.1],[2227.7,325.4],[2212.3,317.1],[2197.3,308.4],[2182.4,299.5],[2167.6,290.5],[2152.7,281.6],[2137.4,273],[2121.9,264.8],[2106.1,257],[2090,249.7],[2073.6,242.9],[2056.9,236.6],[2040.2,230.9],[2023.3,225.7],[2006.5,221.2],[1989.7,216.9],[1972.9,212.8],[1956,208.7],[1939.3,204.2],[1922.6,199.3],[1906.2,193.4],[1890.3,186.5],[1874.9,178.1],[1860.3,168.3],[1846.8,157.2],[1834.5,144.8],[1823.8,131.1],[1813.8,116.7],[1803.8,102.5],[1792.9,89],[1780.4,76.9],[1766.6,66.4],[1751.8,57.7],[1736.2,51],[1720.1,46.6],[1703.8,44.4],[1687.9,44.3],[1672.6,46.2],[1658.5,50.2],[1645.7,55.9],[1634.7,63.2],[1625.6,71.8],[1618.8,81.3],[1614.2,91.6],[1611.9,102.1],[1611.8,112.7],[1613.9,122.8],[1617.6,132.7],[1622.5,142.4],[1627.8,152],[1633.1,161.8],[1637.8,171.8],[1641.5,182.2],[1643.8,193.2],[1644.1,205],[1642.3,217.3],[1638.4,229.8],[1632.2,242.4],[1623.9,254.7],[1613.4,266.6],[1601.3,277.9],[1587.6,288.3],[1572.8,297.7],[1556.9,306.1],[1540.3,313.5],[1523,319.8],[1505.5,325],[1487.8,329.4],[1469.8,332.9],[1451.8,335.9],[1433.8,338.3],[1415.8,340.5],[1397.8,342.6],[1379.8,345.1],[1361.9,348],[1343.9,351.3],[1326,355.2],[1308.3,359.5],[1290.6,364.3],[1273.1,369.6],[1255.7,375.3],[1238.4,381.5],[1221.3,388],[1204.3,394.9],[1187.5,402.4],[1170.9,410.2],[1154.6,418.6],[1138.6,427.5],[1122.8,436.9],[1107.4,446.8],[1092.3,457.2],[1077.5,468.1],[1063.1,479.4],[1049,491.2],[1035.3,503.3],[1021.9,515.9],[1008.9,528.8],[996.2,542],[983.9,555.6],[971.9,569.5],[960.1,583.6],[948.4,597.8],[936.9,612.1],[925.3,626.3],[913.6,640.5],[901.8,654.6],[889.7,668.5],[877.4,682.2],[864.7,695.7],[851.8,708.9],[838.5,721.8],[825,734.5],[811.1,746.8],[797,758.7],[782.5,770.4],[767.7,781.6],[752.5,792.4],[737.1,802.7],[721.3,812.6],[705.2,822.1],[688.8,831.1],[672.3,839.8],[655.7,848.3],[638.9,856.4],[622,864.1],[604.9,871.5],[587.7,878.6],[570.3,885.2],[552.8,891.2],[535.1,896.5],[517.3,901.1],[499.4,904.9],[481.5,907.7],[463.8,909.6],[446.1,910.3],[428.7,909.8],[411.7,908.3],[395.4,905.5],[379.7,901.5],[364.8,896.3],[350.9,890.1],[338,882.8],[326.2,874.5],[315.6,865.3],[306.1,855.4],[297.8,844.8],[290.7,833.6],[284.7,822],[279.7,810],[275.6,797.7],[272.3,785.1],[269.3,772.5],[266,759.8],[261.6,747.4],[255.8,735.2],[248.6,723.4],[239.9,711.9],[229.8,700.9],[218.3,690.2],[205.7,680.1],[192.1,670.3],[177.6,661],[162.4,652.1],[146.6,643.6],[130.4,635.5],[114,627.8],[97.5,620.4],[81,613.3],[64.5,606.4],[48.2,599.8],[32.2,593.4],[16.3,587.1],[0.7,581]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":73,"ty":4,"ln":"layer_73","sr":1,"ks":{"a":{"a":0,"k":[1296.78,345.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.54,12817.54]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface356","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3456.9,483.5],[3443.7,476.6],[3430.5,469.7],[3417.3,462.7],[3404,455.8],[3390.8,448.7],[3377.5,441.7],[3364.2,434.6],[3350.9,427.5],[3337.6,420.4],[3324.2,413.4],[3310.8,406.4],[3297.4,399.5],[3283.9,392.5],[3270.5,385.4],[3257.1,378.1],[3243.7,370.5],[3230.5,362.6],[3217.3,354.4],[3204.2,345.7],[3191.3,336.5],[3178.5,326.8],[3166.1,316.4],[3153.9,305.3],[3142.1,293.6],[3130.7,281.2],[3119.7,268.2],[3109.3,254.5],[3099.3,240.4],[3089.8,225.7],[3080.9,210.6],[3072.7,195],[3064.9,179.2],[3057.6,163],[3050.7,146.7],[3043.9,130.2],[3037.1,113.8],[3029.7,97.7],[3021.5,82.1],[3012,67.2],[3001.3,53.4],[2989.4,40.8],[2976.2,29.6],[2961.9,20.3],[2946.5,12.7],[2930.3,6.9],[2913.4,3.1],[2896,1.2],[2878.4,1.1],[2860.7,2.7],[2843,5.9],[2825.7,10.6],[2808.6,16.5],[2791.9,23.4],[2775.5,31.1],[2759.5,39.4],[2743.8,48.1],[2728.5,57.2],[2713.2,66.6],[2698.2,76.2],[2683.3,86.1],[2668.9,96.4],[2655,107.3],[2641.8,118.9],[2629.3,131.2],[2617.6,144.2],[2606.8,157.9],[2596.8,172.2],[2587.6,187],[2578.7,202],[2569.9,217.2],[2561,232.2],[2551.7,247.1],[2542,261.5],[2531.6,275.5],[2520.3,288.7],[2508.3,301.2],[2495.5,312.8],[2481.8,323.3],[2467.3,332.6],[2452.1,340.6],[2436.2,347.3],[2419.8,352.6],[2402.9,356.4],[2385.6,358.7],[2368.1,359.6],[2350.5,359],[2333,357.1],[2315.6,353.9],[2298.5,349.5],[2281.6,344],[2265.2,337.6],[2249.3,330.4],[2233.7,322.5],[2218.4,314.1],[2203.5,305.3],[2188.7,296.3],[2173.9,287.3],[2159,278.4],[2143.8,269.8],[2128.3,261.5],[2112.5,253.7],[2096.4,246.3],[2080,239.4],[2063.5,233],[2046.7,227.2],[2029.9,221.9],[2013.1,217.1],[1996.3,212.8],[1979.5,208.7],[1962.7,204.7],[1945.9,200.7],[1929.1,196.2],[1912.7,191],[1896.5,184.8],[1880.8,177.1],[1865.7,168.1],[1851.7,157.6],[1838.9,145.7],[1827.7,132.4],[1817.2,118.4],[1806.7,104.5],[1795.5,91.4],[1782.6,79.9],[1768.4,70],[1753.2,62.1],[1737.3,56.2],[1721.1,52.6],[1704.9,51.2],[1689.2,51.8],[1674.2,54.4],[1660.4,58.9],[1648.1,65.1],[1637.5,72.7],[1628.9,81.5],[1622.7,91.2],[1618.7,101.5],[1617,112.1],[1617.5,122.5],[1620.2,132.5],[1624.5,142.2],[1629.8,151.7],[1635.4,161.2],[1640.8,170.9],[1645.4,181],[1648.9,191.5],[1651,202.6],[1651,214.4],[1649,226.8],[1644.9,239.3],[1638.6,251.9],[1630.1,264.2],[1619.6,276],[1607.3,287.2],[1593.6,297.6],[1578.6,307],[1562.7,315.3],[1546,322.5],[1528.8,328.8],[1511.3,334],[1493.5,338.3],[1475.6,341.8],[1457.6,344.7],[1439.6,347],[1421.6,349.1],[1403.6,351.1],[1385.6,353.5],[1367.6,356.3],[1349.7,359.6],[1331.9,363.4],[1314.1,367.6],[1296.4,372.3],[1278.8,377.4],[1261.4,383],[1244.1,388.9],[1226.8,395.1],[1209.8,401.8],[1192.9,409],[1176.2,416.6],[1159.7,424.7],[1143.6,433.4],[1127.7,442.6],[1112.2,452.3],[1097,462.6],[1082.2,473.3],[1067.7,484.6],[1053.6,496.3],[1039.8,508.3],[1026.4,520.8],[1013.3,533.6],[1000.5,546.7],[988.1,560.2],[975.9,573.9],[964.1,587.9],[952.4,602.1],[940.9,616.4],[929.5,630.7],[917.9,645],[906.2,659.2],[894.2,673.2],[881.9,686.9],[869.3,700.4],[856.4,713.6],[843.3,726.6],[829.8,739.3],[816.1,751.6],[802,763.7],[787.6,775.4],[772.9,786.7],[757.8,797.6],[742.5,808.1],[726.8,818.1],[710.8,827.7],[694.6,836.9],[678.2,845.8],[661.6,854.4],[645,862.7],[628.1,870.6],[611.2,878.3],[594,885.5],[576.8,892.3],[559.3,898.6],[541.7,904.2],[523.9,909],[506.1,912.9],[488.2,915.9],[470.4,917.8],[452.7,918.6],[435.3,918.3],[418.3,916.8],[401.9,914.1],[386.2,910.1],[371.3,905],[357.4,898.8],[344.4,891.6],[332.6,883.3],[321.8,874.2],[312.3,864.3],[303.9,853.8],[296.7,842.7],[290.5,831.1],[285.4,819.2],[281,806.9],[277.4,794.4],[274,781.8],[270.2,769.3],[265.4,756.9],[259.1,744.9],[251.3,733.2],[242.1,721.8],[231.6,710.9],[219.8,700.4],[206.8,690.3],[192.9,680.7],[178.2,671.5],[162.8,662.8],[146.9,654.4],[130.6,646.4],[114.2,638.7],[97.7,631.4],[81.2,624.3],[64.7,617.5],[48.5,610.9],[32.4,604.6],[16.6,598.4],[1,592.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":74,"ty":4,"ln":"layer_74","sr":1,"ks":{"a":{"a":0,"k":[1293.78,351.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.86,12818.89]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface361","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.4,621],[16.1,627.1],[32,633.3],[48.2,639.8],[64.5,646.5],[81,653.4],[97.5,660.6],[114,668.1],[130.4,675.9],[146.4,684.1],[162.1,692.7],[177.2,701.6],[191.7,711],[205.3,720.8],[217.8,731.1],[229.2,741.8],[239.3,752.9],[248,764.3],[255.4,776.2],[261.2,788.3],[266,800.6],[270.4,813],[274.7,825.3],[279.7,837.4],[285.2,849.3],[291.7,860.7],[299.1,871.7],[307.7,882.2],[317.4,891.9],[328.3,901],[340.2,909.1],[353.3,916.3],[367.4,922.4],[382.3,927.4],[398.1,931.2],[414.5,933.8],[431.6,935.1],[449,935.3],[466.7,934.2],[484.5,932],[502.4,928.8],[520.2,924.5],[537.9,919.4],[555.3,913.4],[572.6,906.7],[589.7,899.5],[606.7,891.8],[623.5,883.8],[640.2,875.5],[656.6,866.8],[672.9,857.9],[689.1,848.7],[705.1,839.1],[720.8,829.2],[736.3,818.9],[751.4,808.1],[766.2,797],[780.8,785.5],[795,773.6],[808.9,761.4],[822.5,749],[835.8,736.2],[848.8,723.1],[861.4,709.7],[873.8,696],[885.8,682.1],[897.7,668.1],[909.3,653.9],[920.8,639.6],[932.3,625.3],[943.8,611.1],[955.6,597],[967.5,583.1],[979.7,569.5],[992.3,556.2],[1005.1,543.1],[1018.3,530.5],[1031.9,518.2],[1045.8,506.4],[1060,494.9],[1074.7,484],[1089.7,473.5],[1105.1,463.6],[1120.9,454.3],[1137,445.6],[1153.3,437.4],[1169.9,429.7],[1186.8,422.5],[1203.8,415.7],[1221,409.4],[1238.3,403.5],[1255.8,398],[1273.3,392.8],[1290.9,388.1],[1308.6,383.8],[1326.5,379.9],[1344.3,376.5],[1362.2,373.4],[1380.2,370.8],[1398.2,368.5],[1416.1,366.5],[1434.1,364.3],[1452.1,362],[1470.1,359.2],[1487.9,355.8],[1505.7,351.7],[1523.3,346.7],[1540.5,340.7],[1557.3,333.6],[1573.3,325.4],[1588.4,316.2],[1602.3,306],[1614.8,294.9],[1625.6,283.2],[1634.4,270.9],[1641,258.4],[1645.5,245.8],[1647.9,233.4],[1648.3,221.4],[1646.7,210.1],[1643.5,199.5],[1639,189.4],[1633.5,179.7],[1627.3,170.4],[1621.2,161.3],[1615.9,152],[1612.1,142.3],[1610.5,132.1],[1611.1,121.6],[1614,111.2],[1619.2,101.2],[1626.7,92],[1636.3,83.8],[1647.7,76.9],[1660.8,71.4],[1675.1,67.7],[1690.5,65.8],[1706.4,65.7],[1722.6,67.8],[1738.8,71.9],[1754.6,78.2],[1769.6,86.4],[1783.5,96.6],[1795.8,108.6],[1807.4,121.5],[1819,134.6],[1831.3,146.8],[1845.2,157.4],[1860.1,166.5],[1876,174.1],[1892.2,180.3],[1908.7,185.2],[1925.3,189.3],[1942,193],[1958.8,196.5],[1975.6,200.3],[1992.4,204.5],[2009.3,209.2],[2026.1,214.2],[2042.8,219.9],[2059.4,226],[2075.9,232.6],[2092.1,239.7],[2108.1,247.3],[2123.8,255.2],[2139.3,263.5],[2154.5,272.1],[2169.4,281],[2184.2,290],[2198.9,299],[2213.8,307.8],[2228.8,316.5],[2244.1,324.7],[2259.8,332.4],[2275.9,339.3],[2292.5,345.4],[2309.4,350.5],[2326.6,354.4],[2344.1,357.1],[2361.6,358.4],[2379.1,358.2],[2396.5,356.6],[2413.6,353.5],[2430.2,348.9],[2446.3,342.8],[2461.8,335.3],[2476.6,326.4],[2490.5,316.3],[2503.6,305.2],[2516,293],[2527.5,280],[2538.1,266.4],[2548.1,252.1],[2557.5,237.4],[2566.5,222.4],[2575.2,207.2],[2583.8,192],[2592.6,176.8],[2601.8,162],[2611.7,147.7],[2622.4,133.8],[2633.8,120.5],[2645.8,107.8],[2658.7,95.9],[2672.1,84.5],[2686.1,73.7],[2700.6,63.3],[2715.4,53.5],[2730.6,44.1],[2746.2,35.4],[2762.3,27.2],[2778.7,19.8],[2795.6,13.3],[2812.8,7.9],[2830.2,3.9],[2847.9,1.4],[2865.7,0.6],[2883.1,1.6],[2900.3,4.5],[2916.8,9.4],[2932.5,16.2],[2947.3,24.8],[2961,35.1],[2973.4,47],[2984.6,60.3],[2994.6,74.7],[3003.4,90],[3011,105.9],[3017.9,122.3],[3024.5,138.9],[3031,155.4],[3037.8,171.8],[3045.1,187.9],[3052.9,203.8],[3061.2,219.3],[3070,234.4],[3079.4,249.1],[3089.4,263.3],[3099.8,277],[3110.6,290.2],[3121.9,302.7],[3133.7,314.6],[3145.7,325.8],[3158.1,336.2],[3170.8,346.1],[3183.7,355.3],[3196.8,364],[3210,372.2],[3223.3,380],[3236.6,387.6],[3250,394.9],[3263.4,402],[3276.8,409],[3290.2,416],[3303.7,422.8],[3317,429.7],[3330.4,436.6],[3343.8,443.4],[3357.1,450.3],[3370.4,457.2],[3383.7,464.1],[3396.9,471],[3410.1,477.9],[3423.3,485],[3436.5,492],[3449.6,499.2]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":75,"ty":4,"ln":"layer_75","sr":1,"ks":{"a":{"a":0,"k":[1294.905,348.01]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12803.86,12818.21]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface366","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3452.4,494.6],[3439.3,487.5],[3426.1,480.5],[3412.9,473.5],[3399.7,466.6],[3386.4,459.7],[3373.1,452.7],[3359.9,445.8],[3346.5,438.8],[3333.2,431.9],[3319.8,424.9],[3306.5,418],[3293,411.2],[3279.6,404.3],[3266.1,397.4],[3252.7,390.3],[3239.3,383],[3226,375.4],[3212.7,367.5],[3199.5,359.2],[3186.5,350.5],[3173.5,341.3],[3160.8,331.5],[3148.4,321.1],[3136.3,309.9],[3124.5,298.1],[3113.2,285.7],[3102.2,272.6],[3091.8,258.9],[3081.8,244.7],[3072.4,230.1],[3063.6,214.9],[3055.3,199.4],[3047.6,183.6],[3040.3,167.4],[3033.3,151.1],[3026.7,134.5],[3020,118],[3012.9,101.8],[3004.9,86],[2995.8,71],[2985.5,56.8],[2973.9,43.8],[2961.2,32.3],[2947.1,22.5],[2932,14.4],[2916.1,8.1],[2899.3,3.7],[2882.1,1.3],[2864.5,0.8],[2846.8,2],[2829.1,4.8],[2811.7,9.2],[2794.6,14.8],[2777.7,21.5],[2761.3,29.1],[2745.3,37.2],[2729.7,46],[2714.3,55.2],[2699.3,64.8],[2684.5,74.7],[2670,85],[2656.1,95.9],[2642.7,107.3],[2630,119.5],[2618.1,132.3],[2607,145.8],[2596.7,159.9],[2587.2,174.5],[2578.2,189.5],[2569.5,204.7],[2560.9,219.9],[2551.9,235],[2542.6,249.7],[2532.7,264],[2522.1,277.8],[2510.7,290.9],[2498.6,303.2],[2485.5,314.6],[2471.8,324.9],[2457.1,333.9],[2441.8,341.7],[2425.7,348.1],[2409.2,353.1],[2392.2,356.5],[2374.9,358.5],[2357.4,359],[2339.8,358.1],[2322.3,355.8],[2305,352.2],[2287.9,347.5],[2271.2,341.7],[2255,335],[2239.2,327.6],[2223.7,319.5],[2208.6,311],[2193.7,302.1],[2178.9,293.1],[2164.2,284.1],[2149.3,275.2],[2134.1,266.6],[2118.6,258.3],[2102.8,250.4],[2086.8,243],[2070.5,236],[2053.9,229.5],[2037.3,223.5],[2020.5,218.1],[2003.7,213.1],[1986.9,208.7],[1970.1,204.5],[1953.3,200.6],[1936.4,196.9],[1919.7,192.9],[1903.2,188.3],[1886.8,182.7],[1870.8,175.8],[1855.3,167.5],[1840.8,157.7],[1827.5,146.4],[1815.7,133.6],[1804.8,120],[1793.8,106.6],[1782,94],[1768.6,83],[1754,74],[1738.5,66.8],[1722.5,61.8],[1706.2,59],[1690.1,58.3],[1674.6,59.6],[1659.9,62.8],[1646.5,67.8],[1634.6,74.4],[1624.5,82.3],[1616.5,91.3],[1610.7,101.2],[1607.4,111.5],[1606.2,122.1],[1607.3,132.4],[1610.6,142.2],[1615.4,151.7],[1621.1,161],[1627,170.4],[1632.4,180.1],[1637,190.2],[1640.3,200.8],[1642.1,212],[1642,223.9],[1639.8,236.3],[1635.5,248.9],[1629,261.4],[1620.3,273.7],[1609.7,285.5],[1597.3,296.6],[1583.5,306.9],[1568.4,316.2],[1552.5,324.4],[1535.8,331.6],[1518.5,337.8],[1501,342.9],[1483.2,347.1],[1465.3,350.6],[1447.3,353.4],[1429.4,355.7],[1411.4,357.7],[1393.4,359.8],[1375.4,362],[1357.5,364.8],[1339.5,368],[1321.6,371.6],[1303.9,375.7],[1286.2,380.3],[1268.6,385.2],[1251.1,390.5],[1233.7,396.2],[1216.4,402.3],[1199.3,408.8],[1182.3,415.7],[1165.5,423.1],[1149,431],[1132.7,439.4],[1116.7,448.4],[1101.1,457.9],[1085.8,468],[1070.9,478.6],[1056.4,489.8],[1042.2,501.3],[1028.4,513.3],[1014.8,525.7],[1001.7,538.4],[988.8,551.4],[976.3,564.8],[964.1,578.4],[952.2,592.3],[940.5,606.5],[929,620.7],[917.6,635.1],[906.1,649.5],[894.5,663.7],[882.6,677.7],[870.4,691.5],[857.9,705],[845.1,718.3],[832,731.3],[818.6,744.1],[805,756.5],[791,768.6],[776.7,780.4],[762.1,791.8],[747.1,802.9],[731.9,813.5],[716.3,823.6],[700.4,833.4],[684.3,842.7],[668,851.8],[651.6,860.5],[635,869],[618.3,877.2],[601.4,885],[584.4,892.5],[567.2,899.5],[549.8,906],[532.3,911.8],[514.5,916.8],[496.7,920.9],[478.9,924],[461,926],[443.3,927],[425.9,926.7],[408.9,925.3],[392.4,922.7],[376.7,918.8],[361.8,913.7],[347.8,907.6],[334.8,900.4],[322.9,892.2],[312.1,883.1],[302.5,873.2],[294,862.7],[286.7,851.7],[280.4,840.2],[275,828.3],[270.4,816.1],[266.4,803.7],[262.6,791.2],[258.3,778.8],[252.9,766.5],[246.1,754.6],[237.9,743],[228.3,731.8],[217.3,721],[205.1,710.6],[191.8,700.7],[177.6,691.2],[162.7,682.1],[147.1,673.4],[131.1,665.1],[114.8,657.2],[98.3,649.7],[81.8,642.4],[65.3,635.4],[48.9,628.6],[32.7,622.1],[16.7,615.8],[1,609.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":76,"ty":4,"ln":"layer_76","sr":1,"ks":{"a":{"a":0,"k":[1293.03,354.385]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12797.54,12819.22]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface371","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3447.7,505],[3434.6,497.8],[3421.5,490.7],[3408.3,483.6],[3395.1,476.7],[3381.9,469.7],[3368.6,462.9],[3355.3,456],[3342,449.2],[3328.6,442.4],[3315.2,435.6],[3301.9,428.7],[3288.5,421.7],[3261.7,407.5],[3248.3,400.3],[3234.9,393],[3221.6,385.6],[3208.3,377.8],[3195.1,369.7],[3182,361.1],[3169.1,351.9],[3156.4,342],[3144,331.5],[3132,320.2],[3120.3,308.3],[3109.1,295.7],[3098.3,282.5],[3087.9,268.7],[3078,254.5],[3068.7,239.8],[3059.8,224.6],[3051.6,209.1],[3043.8,193.3],[3036.5,177.2],[3029.7,160.8],[3023.2,144.2],[3016.9,127.6],[3010.2,111.1],[3002.8,95.1],[2994.3,79.6],[2984.6,64.9],[2973.8,51.3],[2961.8,39],[2948.4,28.2],[2933.9,19.1],[2918.5,11.7],[2902.2,6.3],[2885.2,2.9],[2867.8,1.4],[2850.1,1.8],[2832.4,3.9],[2814.9,7.7],[2797.7,12.8],[2780.8,19.2],[2764.3,26.6],[2748.3,34.7],[2732.8,43.6],[2717.8,53.2],[2703.2,63.3],[2689.1,74.1],[2675.6,85.4],[2662.6,97.3],[2650.4,109.8],[2638.8,122.9],[2627.9,136.5],[2617.6,150.7],[2608,165.2],[2598.9,180.2],[2590.2,195.3],[2581.7,210.6],[2573,225.8],[2564,240.7],[2554.5,255.4],[2544.4,269.6],[2533.7,283.1],[2522.1,296],[2509.7,308],[2496.4,319.1],[2482.4,328.9],[2467.5,337.5],[2451.9,344.8],[2435.6,350.6],[2418.9,354.9],[2401.8,357.7],[2384.4,358.9],[2366.8,358.7],[2349.3,357],[2332,354],[2314.8,349.7],[2298,344.3],[2281.6,337.9],[2265.7,330.7],[2250.2,322.8],[2235,314.4],[2220.1,305.6],[2205.2,296.7],[2190.5,287.8],[2175.6,278.9],[2160.7,270.1],[2145.5,261.5],[2130,253.2],[2114.4,245.2],[2098.4,237.6],[2082.2,230.4],[2065.9,223.6],[2049.3,217.3],[2032.6,211.5],[2015.8,206.2],[1999,201.4],[1982.2,197.1],[1965.3,193.3],[1948.6,189.9],[1931.9,186.6],[1915.3,182.9],[1898.7,178.4],[1882.2,172.9],[1866.1,166],[1850.8,157.8],[1836.4,147.9],[1823.5,136.3],[1811.2,124],[1798.9,111.7],[1785.9,100.4],[1771.5,91.1],[1756.2,83.8],[1740.2,78.5],[1723.9,75.1],[1707.7,73.9],[1691.9,74.6],[1676.8,77.1],[1662.8,81.3],[1650.2,87.2],[1639.2,94.5],[1630,102.9],[1623,112.2],[1618.3,122.3],[1615.9,132.7],[1615.8,143.1],[1617.9,153.3],[1622.2,162.8],[1627.9,171.9],[1634.4,180.9],[1640.8,190],[1646.4,199.7],[1650.9,209.8],[1653.9,220.5],[1655.3,231.8],[1654.8,243.8],[1652.2,256.3],[1647.5,268.9],[1640.8,281.4],[1631.8,293.7],[1620.9,305.4],[1608.3,316.4],[1594.3,326.6],[1579.2,335.7],[1563.1,343.7],[1546.3,350.7],[1529,356.6],[1511.4,361.5],[1493.7,365.5],[1475.7,368.8],[1457.8,371.5],[1439.8,374],[1421.9,376.2],[1403.9,378.4],[1386,380.6],[1368.1,383.2],[1350.1,386],[1332.2,389.2],[1314.4,392.8],[1296.7,396.9],[1279,401.4],[1261.4,406.4],[1244,411.7],[1226.6,417.5],[1209.4,423.7],[1192.3,430.3],[1175.4,437.4],[1158.7,444.9],[1142.3,452.9],[1126.1,461.4],[1110.2,470.5],[1094.7,480.1],[1079.5,490.4],[1064.8,501.1],[1050.4,512.4],[1036.3,524.1],[1022.7,536.3],[1009.5,548.9],[996.7,561.9],[984.2,575.3],[972,588.9],[960.1,602.8],[948.3,616.8],[936.7,630.9],[925.1,645.1],[913.5,659.3],[901.8,673.5],[890,687.6],[878.1,701.5],[865.9,715.3],[853.5,728.8],[840.6,742],[827.4,754.9],[813.8,767.4],[800,779.6],[785.9,791.6],[771.4,803.1],[756.7,814.4],[741.7,825.3],[726.3,835.7],[710.7,845.9],[694.9,855.6],[678.9,865],[662.6,874.2],[646.3,883],[629.7,891.5],[613,899.6],[596.1,907.5],[579.1,914.9],[561.8,921.8],[544.4,927.9],[526.8,933.2],[509,937.6],[491.2,941.1],[473.4,943.4],[455.7,944.5],[438.2,944.5],[421.2,943.2],[404.7,940.7],[388.9,937],[373.9,932],[359.8,926],[346.7,918.8],[334.7,910.7],[323.7,901.8],[313.9,892],[305.2,881.6],[297.7,870.7],[291,859.3],[285.2,847.5],[280,835.5],[275.2,823.3],[270.3,811],[265,798.8],[258.6,786.8],[250.7,775.1],[241.4,763.8],[230.9,752.8],[219.1,742.2],[206.3,732.1],[192.4,722.4],[177.8,713.2],[162.5,704.3],[146.7,695.8],[130.5,687.7],[114.2,680],[97.6,672.5],[81.1,665.4],[64.7,658.5],[48.4,651.9],[32.3,645.5],[16.5,639.4],[1,633.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":77,"ty":4,"ln":"layer_77","sr":1,"ks":{"a":{"a":0,"k":[1297.155,357.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12799.2,12820.23]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface376","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.9,517.2],[3444.9,509.8],[3431.8,502.5],[3418.7,495.4],[3405.5,488.3],[3392.3,481.3],[3379.1,474.4],[3365.8,467.6],[3352.5,460.7],[3339.2,453.9],[3325.8,447.1],[3312.5,440.3],[3299.1,433.3],[3285.8,426.2],[3272.4,419.1],[3259.1,411.9],[3245.7,404.6],[3232.3,397.4],[3218.9,390],[3205.6,382.4],[3192.4,374.4],[3179.3,365.8],[3166.4,356.6],[3153.7,346.8],[3141.3,336.2],[3129.3,324.9],[3117.7,312.9],[3106.5,300.3],[3095.8,287],[3085.4,273.2],[3075.6,258.9],[3066.3,244.1],[3057.6,229],[3049.3,213.4],[3041.6,197.6],[3034.3,181.4],[3027.5,165],[3021.1,148.4],[3014.8,131.8],[3008.3,115.3],[3001,99.2],[2992.8,83.5],[2983.5,68.6],[2973,54.7],[2961.4,42],[2948.4,30.8],[2934.3,21.1],[2919.1,13.2],[2903.1,7.2],[2886.3,3.3],[2869,1.4],[2851.3,1.3],[2833.6,3],[2816.1,6.5],[2798.9,11.4],[2782,17.7],[2765.5,25],[2749.5,33.3],[2734.1,42.3],[2719.3,52.1],[2705.1,62.7],[2691.4,73.8],[2678.4,85.6],[2665.9,98],[2654.2,111],[2643.1,124.5],[2632.6,138.4],[2622.7,152.8],[2613.2,167.5],[2604.3,182.5],[2595.6,197.6],[2587,212.9],[2578.2,228],[2569.2,242.9],[2559.7,257.5],[2549.6,271.7],[2538.8,285.2],[2527.2,298],[2514.7,309.9],[2501.3,320.8],[2487.1,330.4],[2472.1,338.8],[2456.4,345.8],[2440.1,351.3],[2423.2,355.3],[2406,357.7],[2388.6,358.5],[2371.1,357.9],[2353.6,355.9],[2336.3,352.4],[2319.3,347.8],[2302.6,342],[2286.4,335.3],[2270.7,327.8],[2255.4,319.7],[2240.3,311.1],[2225.5,302.3],[2210.7,293.4],[2195.8,284.5],[2180.9,275.7],[2165.9,267],[2150.6,258.5],[2135.2,250.2],[2119.6,242.2],[2103.7,234.5],[2087.6,227.2],[2071.2,220.3],[2054.7,213.9],[2038.1,207.9],[2021.3,202.4],[2004.5,197.5],[1987.6,193],[1970.8,189.1],[1954.1,185.8],[1937.4,182.5],[1920.8,179.1],[1904.2,175.1],[1887.6,170.2],[1871.3,164.1],[1855.5,156.6],[1840.7,147.6],[1827.1,136.9],[1814,125.3],[1800.9,113.9],[1787.3,103.5],[1772.5,95.2],[1756.8,88.8],[1740.6,84.4],[1724.3,82],[1708.2,81.4],[1692.5,82.7],[1677.8,85.8],[1664,90.4],[1651.8,96.6],[1641.2,104.2],[1632.4,112.8],[1625.8,122.3],[1621.6,132.4],[1619.7,142.8],[1620,153.2],[1622.6,163.2],[1627.4,172.6],[1633.6,181.5],[1640.4,190.3],[1647,199.4],[1652.7,209],[1657.2,219.1],[1660.2,229.9],[1661.4,241.3],[1660.7,253.3],[1657.9,265.8],[1653.1,278.4],[1646.1,290.9],[1637,303.1],[1626,314.8],[1613.4,325.8],[1599.3,335.8],[1584.1,344.9],[1567.9,352.8],[1551.1,359.7],[1533.8,365.5],[1516.2,370.2],[1498.4,374.1],[1480.4,377.3],[1462.5,380],[1444.6,382.5],[1426.6,384.9],[1408.7,387.1],[1390.8,389.4],[1372.8,391.9],[1354.9,394.6],[1337,397.6],[1319.1,400.9],[1301.4,404.8],[1283.7,409.1],[1266.1,413.8],[1248.6,419],[1231.2,424.7],[1214,430.7],[1196.9,437.2],[1179.9,444.1],[1163.2,451.5],[1146.6,459.2],[1130.3,467.5],[1114.3,476.3],[1098.7,485.8],[1083.4,495.8],[1068.5,506.3],[1054,517.4],[1039.9,529],[1026.2,541.1],[1012.9,553.7],[1000.1,566.7],[987.6,580],[975.5,593.7],[963.7,607.6],[951.9,621.6],[940.2,635.6],[928.4,649.7],[916.7,663.8],[893.3,692],[881.5,706.1],[869.5,720],[857.2,733.6],[844.4,746.9],[831.3,759.8],[817.8,772.4],[804,784.7],[789.9,796.6],[775.6,808.3],[761,819.7],[746.1,830.7],[730.9,841.3],[715.4,851.6],[699.7,861.5],[683.8,871.1],[667.7,880.4],[651.4,889.4],[634.9,898],[618.3,906.4],[601.5,914.4],[584.5,922],[567.4,929.1],[550,935.4],[532.4,940.9],[514.7,945.5],[496.9,949.1],[479.1,951.5],[461.4,952.8],[443.9,952.8],[426.8,951.7],[410.3,949.2],[394.5,945.5],[379.4,940.6],[365.3,934.6],[352.2,927.5],[340.1,919.5],[329.1,910.6],[319.2,900.9],[310.4,890.5],[302.7,879.7],[295.9,868.3],[289.7,856.7],[284.2,844.7],[278.9,832.6],[273.5,820.5],[267.5,808.4],[260.6,796.6],[252.2,785],[242.4,773.8],[231.5,762.9],[219.4,752.5],[206.2,742.5],[192.1,732.9],[177.3,723.7],[161.8,715],[145.9,706.6],[129.7,698.6],[113.3,690.9],[96.8,683.5],[80.3,676.4],[63.9,669.6],[47.7,663.1],[31.6,656.8],[15.9,650.7],[0.5,644.7]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":78,"ty":4,"ln":"layer_78","sr":1,"ks":{"a":{"a":0,"k":[1294.53,364.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.2,12821.58]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface381","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.8,674.3],[16.4,680.3],[32.3,686.5],[48.4,692.9],[64.7,699.6],[81.1,706.5],[97.7,713.7],[114.1,721.2],[130.4,729.1],[146.5,737.3],[162.1,745.9],[177.3,754.8],[191.8,764.2],[205.4,774],[218.2,784.2],[229.9,794.9],[240.4,805.9],[249.8,817.2],[257.9,828.8],[265.1,840.6],[271.6,852.4],[278,864.3],[284.5,875.9],[291.3,887.4],[298.7,898.5],[306.8,909.2],[315.9,919.3],[326,928.9],[337.1,937.8],[349.2,945.8],[362.4,952.8],[376.5,958.8],[391.5,963.7],[407.4,967.4],[424,969.7],[441.1,970.7],[458.6,970.4],[476.4,968.8],[494.1,966],[511.9,962.1],[529.6,957.1],[547,951.2],[564.3,944.4],[581.2,936.9],[598,928.9],[614.5,920.4],[631,911.7],[647.2,902.7],[663.3,893.4],[679.2,883.8],[695,873.9],[710.5,863.7],[725.7,853.2],[740.7,842.4],[755.5,831.2],[769.9,819.6],[784.1,807.8],[797.9,795.6],[811.5,783.1],[824.8,770.4],[837.7,757.3],[850.3,743.9],[862.6,730.3],[874.6,716.4],[886.4,702.4],[898.1,688.3],[909.8,674.2],[921.4,660.1],[933.1,646.1],[944.8,632.1],[956.6,618.1],[968.4,604.2],[980.5,590.6],[993,577.3],[1005.9,564.4],[1019.3,552],[1033.1,540.1],[1047.4,528.8],[1062.1,518],[1077.2,507.7],[1092.7,498.1],[1108.6,489],[1124.8,480.6],[1141.2,472.7],[1157.9,465.3],[1174.8,458.4],[1191.9,451.9],[1209.1,445.8],[1226.5,440.2],[1244,435.1],[1261.5,430.3],[1279.1,426],[1296.9,422],[1314.7,418.5],[1332.6,415.3],[1350.4,412.4],[1368.4,409.8],[1386.3,407.4],[1404.2,405.1],[1422.1,402.9],[1440.1,400.6],[1458,398.1],[1475.9,395.5],[1493.8,392.4],[1511.6,388.7],[1529.2,384.2],[1546.6,378.6],[1563.5,371.9],[1579.8,364.1],[1595.2,355.3],[1609.4,345.3],[1622.3,334.5],[1633.6,322.9],[1642.9,310.8],[1650.2,298.3],[1655.5,285.6],[1658.6,273.1],[1659.6,261],[1658.6,249.5],[1655.7,238.7],[1651.2,228.5],[1645.3,219],[1638.2,210.2],[1630.7,201.7],[1623.7,193.1],[1618.1,184],[1614.6,174.2],[1613.3,164],[1614.2,153.6],[1617.6,143.3],[1623.3,133.6],[1631.3,124.7],[1641.3,116.7],[1652.9,110],[1666.1,104.7],[1680.4,101],[1695.7,98.7],[1711.6,98],[1727.8,98.9],[1744.1,101.5],[1760.3,105.8],[1776,111.9],[1791,120],[1805.7,129.1],[1820.5,138.3],[1835.5,146.9],[1851.3,153.9],[1867.6,159.5],[1884.2,164.2],[1900.9,168.2],[1917.6,171.6],[1934.3,174.9],[1951,178.3],[1967.8,182],[1984.6,186.3],[2001.4,191.1],[2018.2,196.5],[2034.9,202.4],[2051.4,208.6],[2067.9,215.3],[2084.1,222.3],[2100.1,229.6],[2116,237.2],[2131.8,245],[2147.4,253.1],[2162.7,261.4],[2178,269.9],[2193,278.5],[2207.9,287.3],[2222.7,296.2],[2237.3,305.2],[2252,314.1],[2266.9,322.7],[2282.2,330.8],[2298,338.1],[2314.4,344.6],[2331.1,350],[2348.2,354.2],[2365.6,357.1],[2383.1,358.5],[2400.5,358.4],[2417.9,356.8],[2434.8,353.5],[2451.4,348.7],[2467.4,342.3],[2482.6,334.4],[2497,325.1],[2510.6,314.5],[2523.3,302.9],[2535,290.2],[2545.9,276.8],[2556,262.8],[2565.6,248.2],[2574.6,233.3],[2583.4,218.2],[2592,203.1],[2600.7,187.9],[2609.5,172.9],[2618.7,158],[2628.3,143.4],[2638.3,129.1],[2648.7,115.1],[2659.5,101.3],[2670.8,88.1],[2682.8,75.3],[2695.5,63.2],[2709,51.8],[2723.2,41.3],[2738.2,31.7],[2754,23.2],[2770.4,15.8],[2787.3,9.7],[2804.7,5.1],[2822.2,2.2],[2839.9,1.3],[2857.4,2.3],[2874.4,5.3],[2890.8,10.4],[2906.3,17.5],[2920.7,26.6],[2934.1,37.3],[2946.2,49.5],[2957,63],[2966.7,77.5],[2975.4,92.8],[2983.2,108.6],[2990.4,124.8],[2997.1,141.2],[3010.1,174.2],[3016.8,190.6],[3023.9,206.8],[3031.3,222.8],[3039.2,238.6],[3047.7,253.9],[3056.8,268.9],[3066.4,283.4],[3076.5,297.3],[3087.2,310.7],[3098.3,323.3],[3110,335.3],[3122,346.5],[3134.4,357],[3147.1,366.7],[3160,375.8],[3173.1,384.3],[3186.3,392.3],[3199.7,399.9],[3213,407.2],[3226.4,414.4],[3239.8,421.6],[3253.2,428.7],[3266.5,435.7],[3279.9,442.7],[3293.2,449.6],[3306.6,456.4],[3319.9,463.3],[3333.2,470.1],[3346.5,476.9],[3359.8,483.7],[3373,490.6],[3386.2,497.6],[3399.3,504.7],[3412.4,512],[3425.5,519.5],[3438.4,527.2],[3451.3,535]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":79,"ty":4,"ln":"layer_79","sr":1,"ks":{"a":{"a":0,"k":[1290.405,360.76]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12801.2,12820.91]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface386","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3440.1,521.9],[3427.1,514.4],[3414.1,507],[3401,499.8],[3387.8,492.7],[3374.6,485.7],[3361.4,478.8],[3348.1,472],[3334.8,465.2],[3321.5,458.4],[3308.1,451.5],[3294.8,444.7],[3281.4,437.7],[3268.1,430.6],[3254.8,423.4],[3241.4,416.2],[3228.1,409],[3214.7,401.8],[3201.3,394.4],[3188,386.9],[3174.7,378.9],[3161.6,370.4],[3148.7,361.2],[3136,351.5],[3123.7,340.9],[3111.7,329.6],[3100.1,317.6],[3088.9,304.9],[3078.2,291.6],[3067.9,277.7],[3058.2,263.3],[3049,248.5],[3040.3,233.3],[3032.2,217.7],[3024.6,201.8],[3017.4,185.6],[3010.6,169.2],[3004.2,152.6],[2997.9,136],[2991.3,119.5],[2984.2,103.3],[2976.2,87.6],[2967.2,72.5],[2957.1,58.3],[2945.9,45.2],[2933.3,33.5],[2919.5,23.3],[2904.7,14.8],[2888.9,8.3],[2872.3,3.8],[2855.1,1.3],[2837.6,0.8],[2819.9,2.1],[2802.4,5.3],[2785.1,10.1],[2768.1,16.2],[2751.7,23.6],[2735.8,31.9],[2720.6,41.2],[2706,51.4],[2692.1,62.3],[2679,73.9],[2666.5,86.2],[2654.6,99.1],[2643.3,112.4],[2632.6,126.2],[2622.4,140.4],[2612.7,154.9],[2603.5,169.7],[2594.6,184.7],[2585.9,199.9],[2577.2,215.1],[2568.5,230.2],[2559.4,245.1],[2549.9,259.6],[2539.7,273.7],[2528.9,287.2],[2517.2,299.9],[2504.6,311.7],[2491.2,322.4],[2476.9,331.9],[2461.8,340],[2445.9,346.7],[2429.5,351.9],[2412.6,355.6],[2395.3,357.6],[2377.8,358.1],[2360.3,357],[2342.9,354.6],[2325.7,350.8],[2308.8,345.7],[2292.3,339.6],[2276.3,332.6],[2260.7,324.8],[2245.6,316.5],[2230.8,307.8],[2216,298.8],[2201.2,290],[2186.3,281.1],[2171.4,272.4],[2156.2,263.8],[2140.9,255.4],[2125.5,247.2],[2109.8,239.2],[2093.9,231.5],[2077.8,224.2],[2061.6,217.2],[2045.1,210.6],[2028.5,204.5],[2011.8,198.8],[1995,193.7],[1978.1,189.1],[1961.3,185],[1944.6,181.5],[1927.9,178.3],[1911.2,175.1],[1894.6,171.4],[1877.9,167],[1861.4,161.6],[1845.4,155],[1830.1,147],[1815.7,137.2],[1801.8,126.7],[1788,116.3],[1773.7,107],[1758.4,99.7],[1742.4,94.4],[1726.1,90.9],[1709.8,89.2],[1693.8,89.4],[1678.4,91.2],[1663.8,94.6],[1650.4,99.7],[1638.5,106.2],[1628.2,113.9],[1619.9,122.7],[1613.7,132.3],[1609.9,142.5],[1608.5,152.9],[1609.3,163.2],[1612.4,173.2],[1617.6,182.3],[1624.2,191.1],[1631.3,199.8],[1638.2,208.7],[1644,218.3],[1648.5,228.4],[1651.4,239.2],[1652.5,250.7],[1651.6,262.7],[1648.7,275.2],[1643.7,287.9],[1636.5,300.4],[1627.3,312.5],[1616.1,324.2],[1603.4,335.1],[1589.2,345.1],[1573.9,354],[1557.7,361.9],[1540.9,368.7],[1523.5,374.4],[1505.9,379],[1488.1,382.7],[1470.2,385.9],[1452.2,388.6],[1434.3,391.1],[1416.4,393.4],[1398.5,395.7],[1380.5,398.1],[1362.6,400.5],[1344.7,403.1],[1326.8,405.9],[1308.9,409.1],[1291.1,412.8],[1273.4,416.9],[1255.8,421.4],[1238.3,426.4],[1220.9,431.9],[1203.6,437.8],[1186.4,444.1],[1169.4,450.8],[1152.6,457.9],[1135.9,465.5],[1119.5,473.6],[1103.4,482.2],[1087.7,491.4],[1072.3,501.2],[1057.3,511.6],[1042.6,522.5],[1028.4,534],[1014.7,546],[1001.4,558.5],[988.5,571.5],[976.1,584.8],[964,598.5],[952.2,612.4],[940.4,626.4],[928.7,640.4],[916.9,654.4],[905.1,668.4],[893.4,682.5],[881.7,696.6],[870,710.7],[858,724.6],[845.8,738.3],[833.1,751.6],[820.1,764.6],[806.7,777.3],[793,789.7],[779,801.7],[764.8,813.5],[750.2,824.9],[735.4,836],[720.3,846.8],[705,857.2],[689.4,867.3],[673.6,877.1],[657.6,886.5],[641.4,895.7],[625,904.5],[608.5,913],[591.7,921.2],[574.9,929],[557.8,936.3],[540.5,942.8],[523,948.5],[505.3,953.3],[487.5,957],[469.7,959.7],[452,961],[434.5,961.2],[417.4,960.1],[400.9,957.8],[385,954.1],[370,949.2],[355.9,943.2],[342.7,936.2],[330.6,928.2],[319.5,919.3],[309.5,909.7],[300.5,899.4],[292.7,888.6],[285.6,877.4],[279.2,865.8],[273.2,854],[267.4,842],[261.4,830],[254.8,818.1],[247.3,806.3],[238.4,794.9],[228.2,783.8],[216.9,773],[204.5,762.7],[191,752.8],[176.7,743.4],[161.7,734.3],[146.1,725.6],[130.2,717.3],[113.9,709.4],[97.5,701.8],[81,694.5],[64.5,687.5],[48.2,680.8],[31.9,674.3],[16,668],[0.4,662]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":80,"ty":4,"ln":"layer_80","sr":1,"ks":{"a":{"a":0,"k":[1293.78,367.51]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12798.87,12822.26]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface391","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3449.7,539],[3436.8,531.1],[3423.9,523.3],[3410.9,515.7],[3397.9,508.3],[3384.7,501.1],[3371.6,494.1],[3358.3,487.2],[3345.1,480.4],[3331.8,473.6],[3318.5,466.8],[3305.2,459.9],[3291.8,453.1],[3278.4,446.3],[3265,439.5],[3251.6,432.8],[3238.2,426],[3224.8,419],[3211.4,411.8],[3198,404.4],[3184.7,396.6],[3171.5,388.5],[3158.4,380],[3145.5,371],[3132.8,361.4],[3120.4,351.1],[3108.3,340],[3096.6,328.1],[3085.4,315.5],[3074.8,302.2],[3064.8,288.1],[3055.3,273.5],[3046.5,258.4],[3038.2,242.8],[3030.6,226.9],[3023.4,210.8],[3016.5,194.5],[3009.8,178.1],[3003.2,161.7],[2996.4,145.3],[2989.5,129.1],[2982.2,112.9],[2974.5,97],[2966.1,81.5],[2956.8,66.7],[2946.4,52.9],[2934.8,40.2],[2921.9,28.9],[2907.8,19.3],[2892.7,11.5],[2876.5,5.9],[2859.6,2.3],[2842.2,0.8],[2824.6,1.3],[2807,3.9],[2789.6,8.3],[2772.6,14.3],[2756.3,21.8],[2740.7,30.6],[2726,40.5],[2712,51.5],[2699,63.3],[2686.8,75.9],[2675.4,89.1],[2664.6,102.7],[2654.1,116.8],[2644,131],[2634.2,145.4],[2624.7,160.1],[2615.6,175],[2606.8,190],[2598.1,205.2],[2589.5,220.4],[2580.8,235.5],[2571.7,250.4],[2562.2,264.9],[2552.1,278.9],[2541.1,292.3],[2529.3,304.8],[2516.5,316.3],[2502.9,326.7],[2488.3,335.8],[2472.9,343.5],[2456.9,349.6],[2440.2,354.1],[2423.1,357],[2405.8,358.2],[2388.3,357.9],[2370.8,356],[2353.5,352.7],[2336.5,348.1],[2320,342.3],[2303.8,335.5],[2288.2,327.9],[2273.2,319.5],[2258.5,310.7],[2229.5,292.5],[2214.8,283.5],[2199.8,274.7],[2184.7,266.2],[2169.4,257.8],[2153.8,249.7],[2138.2,241.8],[2122.4,234.1],[2106.4,226.7],[2090.3,219.5],[2074.1,212.5],[2057.7,205.8],[2041.2,199.4],[2024.6,193.4],[2007.8,187.8],[1991,182.6],[1974.2,178],[1957.4,174],[1940.7,170.4],[1923.9,167],[1907.1,163.6],[1890.4,160.1],[1873.7,156],[1857.2,151.3],[1841,145.4],[1825.2,138.2],[1809.6,130.4],[1794,122.8],[1778.3,116.2],[1762.2,111.3],[1745.9,108],[1729.6,106.4],[1713.5,106.2],[1697.8,107.4],[1682.7,110],[1668.5,114],[1655.6,119.5],[1644.1,126.4],[1634.5,134.5],[1626.8,143.6],[1621.4,153.4],[1618.5,163.6],[1618,174],[1619.8,184.2],[1623.7,193.9],[1629.9,202.8],[1637.2,211.2],[1645,219.6],[1652.3,228.3],[1658.3,237.7],[1662.9,247.9],[1665.7,258.8],[1666.7,270.3],[1665.5,282.5],[1662.2,295],[1656.9,307.6],[1649.4,320.2],[1639.9,332.3],[1628.5,343.8],[1615.4,354.6],[1601.1,364.4],[1585.6,373.2],[1569.3,380.8],[1552.3,387.4],[1535,393],[1517.3,397.5],[1499.6,401.2],[1481.7,404.2],[1463.7,406.8],[1445.8,409],[1410,413.2],[1392,415.5],[1374.1,417.9],[1356.2,420.7],[1338.3,423.7],[1320.5,426.9],[1302.7,430.4],[1284.9,434.2],[1267.3,438.4],[1249.7,442.8],[1232.1,447.7],[1214.7,452.9],[1197.4,458.6],[1180.2,464.8],[1163.2,471.5],[1146.5,478.7],[1130,486.5],[1113.7,494.8],[1097.8,503.8],[1082.2,513.3],[1067,523.4],[1052.3,534],[1037.9,545.3],[1024,557.1],[1010.5,569.3],[997.5,582.1],[984.9,595.3],[972.7,608.8],[960.8,622.6],[949.2,636.6],[937.6,650.8],[926.1,665],[914.5,679.1],[902.9,693.3],[891.2,707.3],[879.3,721.2],[867.2,734.9],[854.8,748.5],[842.2,761.9],[829.4,775],[816.2,787.9],[802.8,800.5],[789.1,812.8],[775,824.8],[760.7,836.4],[746,847.6],[731.1,858.6],[715.9,869.1],[700.5,879.4],[684.8,889.4],[669,899.1],[653,908.6],[636.9,917.8],[620.6,926.7],[604.1,935.4],[587.5,943.7],[570.6,951.4],[553.6,958.5],[536.1,964.6],[518.5,969.8],[500.8,974],[483,977],[465.2,978.7],[447.6,979.1],[430.4,978.2],[413.9,976],[398,972.4],[383,967.4],[368.9,961.4],[355.8,954.3],[343.7,946.3],[332.5,937.5],[322.4,928],[313.1,917.9],[304.7,907.3],[297,896.3],[289.7,885.1],[282.7,873.6],[275.7,861.9],[268.5,850.2],[260.7,838.6],[252.1,827.1],[242.3,815.9],[231.3,805],[219.3,794.5],[206.4,784.3],[192.5,774.6],[177.9,765.3],[162.6,756.4],[146.8,747.9],[130.6,739.8],[114.3,732],[97.8,724.6],[81.3,717.5],[64.9,710.7],[48.7,704.1],[32.6,697.8],[16.7,691.6],[1.1,685.6]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":81,"ty":4,"ln":"layer_81","sr":1,"ks":{"a":{"a":0,"k":[1291.155,374.26]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12802.53,12823.61]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface396","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3442.3,555.7],[3429.6,547.5],[3416.7,539.5],[3403.9,531.5],[3391,523.6],[3378,515.8],[3365,508.4],[3351.9,501.3],[3338.6,494.5],[3325.4,487.8],[3312.1,481],[3298.8,474.1],[3285.5,467.3],[3272.2,460.5],[3258.7,454],[3245.2,447.9],[3231.5,441.9],[3217.9,435.8],[3204.4,429.3],[3191,422.1],[3177.8,414.4],[3164.6,406.3],[3151.5,397.9],[3138.4,389.3],[3125.4,380.5],[3112.7,371.1],[3100.1,361.1],[3087.9,350.3],[3076.1,338.7],[3064.9,326.3],[3054.3,313],[3044.5,298.8],[3035.4,283.9],[3027,268.4],[3019.4,252.4],[3012.4,236.1],[3005.8,219.6],[2999.4,203],[2992.7,186.6],[2985.7,170.5],[2978.3,154.5],[2970.7,138.6],[2963,122.7],[2955.5,106.7],[2947.6,90.9],[2939.2,75.5],[2929.8,60.8],[2919,47.2],[2907,34.8],[2893.8,23.9],[2879.3,14.9],[2863.7,8],[2847.1,3.3],[2829.9,0.8],[2812.3,0.5],[2794.7,2.4],[2777.2,6.5],[2760.2,12.5],[2744,20.2],[2728.7,29.5],[2714.6,40.2],[2701.4,52.1],[2689.3,64.8],[2678.2,78.3],[2667.9,92.4],[2658.1,106.8],[2648.4,121.4],[2638.7,135.9],[2629.1,150.5],[2619.6,165.2],[2610.4,180.1],[2601.7,195.2],[2593.2,210.4],[2584.7,225.7],[2576.1,240.8],[2567.1,255.7],[2557.6,270.2],[2547.4,284.1],[2536.4,297.3],[2524.4,309.7],[2511.4,321],[2497.5,331.1],[2482.8,339.8],[2467.1,346.8],[2450.8,352.3],[2434,356.1],[2416.7,358.3],[2399.3,358.7],[2381.8,357.5],[2364.4,354.8],[2347.2,350.6],[2330.5,345.2],[2314.2,338.7],[2298.5,331.1],[2283.4,322.8],[2268.8,313.9],[2254.6,304.6],[2240.5,295.1],[2226.3,285.8],[2211.7,276.7],[2196.7,267.9],[2181.4,259.5],[2165.9,251.5],[2150.1,243.8],[2134.1,236.3],[2118,229.1],[2101.9,222],[2085.7,215],[2069.4,208.2],[2053.1,201.4],[2036.7,194.8],[2020.2,188.4],[2003.6,182.3],[1986.9,176.5],[1970.1,171.2],[1953.2,166.3],[1936.3,162],[1919.4,158.2],[1902.5,154.8],[1885.7,152],[1868.9,149.3],[1852,146.4],[1835,143],[1817.8,138.8],[1800.4,134.2],[1783.1,129.9],[1765.9,126.3],[1749.1,124],[1732.6,122.9],[1716.4,122.9],[1700.6,124],[1685.2,126.1],[1670.4,129.3],[1656.6,133.7],[1644,139.5],[1633,146.7],[1623.8,155.1],[1616.7,164.4],[1612,174.4],[1609.9,184.7],[1610.3,195],[1613.1,205.1],[1618,214.6],[1625,223.1],[1633.1,231.2],[1641.5,239.3],[1649.3,247.8],[1655.6,257.1],[1660.2,267.3],[1663,278.2],[1663.8,289.8],[1662.4,302],[1658.9,314.6],[1653.2,327.3],[1645.4,339.8],[1635.5,351.9],[1623.8,363.3],[1610.5,373.9],[1595.9,383.6],[1580.3,392.2],[1563.9,399.7],[1546.8,406.1],[1529.4,411.6],[1511.8,416.1],[1494,419.8],[1476.2,422.7],[1458.3,425.1],[1440.3,426.9],[1422.4,428.5],[1404.4,430.2],[1386.5,432.2],[1368.6,434.9],[1350.7,438],[1332.9,441.4],[1315.1,445],[1297.3,448.5],[1279.6,452.1],[1261.8,455.7],[1244.1,459.6],[1226.4,463.7],[1208.8,468.1],[1191.3,473.1],[1173.9,478.6],[1156.8,484.8],[1139.9,491.7],[1123.3,499.2],[1107,507.4],[1091,516.1],[1075.3,525.4],[1060,535.3],[1045,545.7],[1030.5,556.7],[1016.4,568.2],[1002.7,580.3],[989.4,592.8],[976.6,605.7],[964.2,619],[952.2,632.6],[940.6,646.7],[929.5,661.1],[918.5,675.7],[907.4,690.2],[896,704.5],[884.1,718.4],[871.8,731.9],[859.3,745.2],[846.7,758.5],[834.1,771.9],[821.5,785.2],[808.7,798.4],[795.6,811.3],[782.2,823.9],[768.3,836],[754.1,847.8],[739.6,859.2],[724.8,870.2],[709.6,880.8],[694.3,891.1],[678.8,901.2],[663.2,911.2],[647.4,921],[631.5,930.6],[615.5,940],[599.4,949.2],[583,958.1],[566.4,966.4],[549.5,974],[532.3,980.7],[514.7,986.3],[497,990.9],[479.1,994.2],[461.3,996.3],[443.6,997],[426.4,996.4],[409.8,994.2],[394,990.6],[379,985.6],[365,979.5],[351.9,972.3],[339.8,964.3],[328.7,955.5],[318.4,946.1],[308.8,936.2],[299.8,925.9],[291.2,915.3],[283,904.4],[274.8,893.3],[266.6,882],[258.1,870.6],[249.1,859.2],[239.3,848],[228.6,837],[217,826.4],[204.5,816],[191.1,806],[176.9,796.4],[161.9,787.3],[146.4,778.5],[130.5,770.2],[114.1,762.2],[97.7,754.7],[81.2,747.4],[64.7,740.5],[48.4,733.9],[32.3,727.5],[16.4,721.3],[0.5,715.3]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]},{"ddd":0,"ind":82,"ty":4,"ln":"layer_82","sr":1,"ks":{"a":{"a":0,"k":[1297.905,371.26]},"o":{"a":0,"k":100},"p":{"a":0,"k":[12800.53,12822.93]},"r":{"a":0,"k":0},"s":{"a":0,"k":[88.71,89.93]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"ip":0,"op":719,"st":0,"bm":0,"shapes":[{"ty":"gr","nm":"surface401","it":[{"ty":"gr","it":[{"ty":"sh","d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3459.9,551.9],[3447.1,543.8],[3434.3,535.8],[3421.4,528],[3408.4,520.2],[3395.4,512.6],[3382.4,505.3],[3369.2,498.3],[3356,491.4],[3342.7,484.6],[3329.4,477.9],[3316.1,471],[3302.8,464.2],[3289.5,457.4],[3276.1,450.7],[3262.6,444.3],[3249.1,437.9],[3235.6,431.4],[3222.1,424.6],[3208.7,417.5],[3195.4,409.9],[3182.2,402],[3169,393.7],[3155.9,385.2],[3143,376.3],[3130.2,366.8],[3117.8,356.6],[3105.6,345.7],[3093.9,333.9],[3082.7,321.4],[3072.1,308],[3062.1,294],[3052.9,279.2],[3044.2,263.9],[3036.3,248.1],[3028.9,232],[3022,215.7],[3015.4,199.3],[3008.7,182.9],[3001.9,166.6],[2994.8,150.4],[2987.6,134.3],[2980.1,118.3],[2972.5,102.4],[2964.4,86.7],[2955.5,71.6],[2945.6,57.3],[2934.4,44.2],[2922,32.3],[2908.3,22.1],[2893.5,13.7],[2877.6,7.4],[2860.9,3.3],[2843.5,1.3],[2826,1.4],[2808.3,3.6],[2790.9,7.9],[2773.9,13.9],[2757.6,21.5],[2742.2,30.6],[2727.8,40.9],[2714.2,52.2],[2701.6,64.5],[2690,77.6],[2679.1,91.2],[2668.8,105.3],[2658.8,119.6],[2648.9,134],[2639.1,148.5],[2629.7,163.2],[2620.5,178],[2611.7,193.1],[2603.2,208.3],[2594.7,223.5],[2585.9,238.6],[2576.9,253.5],[2567.4,268],[2557.3,282],[2546.3,295.3],[2534.4,307.7],[2521.5,319.2],[2507.7,329.4],[2493.1,338.3],[2477.6,345.7],[2461.4,351.4],[2444.6,355.6],[2427.5,358.1],[2410,359],[2392.5,358.2],[2375.1,355.9],[2357.9,352.2],[2341,347.2],[2324.6,341],[2308.7,333.8],[2293.3,325.9],[2278.5,317.2],[2264,308.2],[2249.8,298.9],[2235.4,289.6],[2220.7,280.6],[2205.8,271.9],[2190.5,263.4],[2175.1,255.2],[2159.4,247.3],[2143.6,239.6],[2127.7,232.1],[2111.6,224.9],[2095.5,217.7],[2079.3,210.8],[2062.9,204.1],[2046.5,197.6],[2029.9,191.4],[2013.2,185.5],[1996.5,180],[1979.6,175.1],[1962.8,170.7],[1946,166.7],[1929.1,163.1],[1912.3,159.8],[1895.5,156.6],[1878.8,153.2],[1862.1,149.4],[1845.5,144.8],[1829,139],[1812.5,132.8],[1796.1,126.8],[1779.6,121.7],[1763.1,118.1],[1746.7,115.9],[1730.5,115.1],[1714.5,115.5],[1698.9,117.2],[1684,120.1],[1670,124.3],[1657.3,130],[1646,137],[1636.6,145.3],[1629.3,154.5],[1624.2,164.4],[1621.7,174.6],[1621.7,185],[1624,195.2],[1628.4,204.7],[1634.9,213.5],[1642.7,221.7],[1650.8,229.9],[1658.3,238.5],[1664.5,248],[1669,258.1],[1671.9,269],[1672.7,280.6],[1671.5,292.8],[1668,305.3],[1662.5,318],[1654.9,330.5],[1645.2,342.6],[1633.6,354.1],[1620.5,364.8],[1606,374.5],[1590.5,383.2],[1574.1,390.8],[1557.1,397.3],[1539.7,402.8],[1522.1,407.3],[1504.3,411],[1486.4,414],[1468.5,416.4],[1450.6,418.5],[1432.6,420.3],[1414.7,422.2],[1396.8,424.4],[1378.9,426.9],[1361,429.9],[1343.1,433],[1325.3,436.4],[1307.5,439.9],[1289.7,443.6],[1272.1,447.5],[1254.4,451.7],[1236.8,456.2],[1219.2,461],[1201.8,466.4],[1184.6,472.2],[1167.5,478.7],[1150.7,485.7],[1134.1,493.4],[1117.9,501.6],[1101.9,510.4],[1086.3,519.8],[1071,529.8],[1056.1,540.4],[1041.7,551.5],[1027.7,563.1],[1014.1,575.3],[1000.9,587.9],[988.3,601],[976,614.4],[964,628.2],[952.4,642.2],[941,656.4],[929.7,670.8],[918.4,685.2],[906.9,699.4],[895.1,713.3],[883,727],[870.7,740.6],[858.3,754],[845.7,767.4],[832.9,780.6],[820,793.7],[806.7,806.4],[793.1,818.8],[779.2,830.9],[764.9,842.6],[750.3,853.9],[735.4,864.9],[720.3,875.5],[704.9,885.8],[689.3,895.8],[673.6,905.7],[657.8,915.3],[641.7,924.7],[625.6,933.9],[609.3,942.8],[592.8,951.4],[576,959.4],[559,966.7],[541.7,973.2],[524.1,978.6],[506.4,982.9],[488.6,986.1],[470.7,988],[453.2,988.6],[435.9,987.8],[419.3,985.6],[403.5,982],[388.5,977.1],[374.5,970.9],[361.3,963.8],[349.2,955.8],[338.1,947],[327.9,937.5],[318.4,927.5],[309.7,917.1],[301.6,906.3],[293.9,895.2],[286.3,883.9],[278.7,872.4],[270.8,860.9],[262.4,849.4],[253.2,838.1],[243,827],[231.7,816.2],[219.4,805.7],[206.3,795.7],[192.2,786],[177.4,776.8],[162,768],[146.1,759.6],[129.9,751.5],[113.5,743.8],[97,736.5],[80.5,729.5],[64.2,722.8],[48,716.3],[32,710.1],[16.1,704],[0.5,698]]}}},{"ty":"st","bm":0,"c":{"a":0,"k":[0.498,0.498,0.498,1]},"lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1}},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[75,75]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]},{"ty":"tr","nm":"Transform","a":{"a":0,"k":[0,0]},"o":{"a":0,"k":100},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}]}]}]}],"ddd":0,"fr":60,"h":720,"ip":0,"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"","ln":"precomp_q5WUqqHyaXifU4T18W_ZD1","sr":1,"ks":{"a":{"a":0,"k":[12800,12800]},"o":{"a":0,"k":100},"p":{"a":1,"k":[{"t":0,"s":[1152.2,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":1,"s":[1151.3,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":2,"s":[1150.32,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":3,"s":[1149.24,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":4,"s":[1148.07,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":5,"s":[1146.82,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":6,"s":[1145.46,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":7,"s":[1144.01,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":8,"s":[1142.47,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":9,"s":[1140.82,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":10,"s":[1139.07,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":11,"s":[1137.23,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":12,"s":[1135.27,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":13,"s":[1133.22,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":14,"s":[1131.06,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":15,"s":[1128.79,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":16,"s":[1126.41,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":17,"s":[1123.93,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":18,"s":[1121.33,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":19,"s":[1118.63,360.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":20,"s":[1115.82,360.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":21,"s":[1112.9,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":22,"s":[1109.87,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":23,"s":[1106.73,360.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":24,"s":[1103.49,360.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":25,"s":[1100.14,360.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":26,"s":[1096.68,360.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":27,"s":[1093.12,360.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":28,"s":[1089.46,360.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":29,"s":[1085.71,360.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":30,"s":[1081.85,360.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":31,"s":[1077.91,360.35],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":32,"s":[1073.87,360.35],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":33,"s":[1069.74,360.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":34,"s":[1065.54,360.33],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":35,"s":[1061.25,360.32],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":36,"s":[1056.89,360.31],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":37,"s":[1052.46,360.31],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":38,"s":[1047.97,360.3],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":39,"s":[1043.41,360.29],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":40,"s":[1038.8,360.28],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":41,"s":[1034.14,360.27],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":42,"s":[1029.43,360.26],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":43,"s":[1024.68,360.25],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":44,"s":[1019.9,360.24],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":45,"s":[1015.08,360.23],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":46,"s":[1010.24,360.22],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":47,"s":[1005.38,360.21],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":48,"s":[1000.51,360.2],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":49,"s":[995.62,360.19],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":50,"s":[990.73,360.18],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":51,"s":[985.84,360.18],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":52,"s":[980.95,360.17],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":53,"s":[976.07,360.16],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":54,"s":[971.2,360.15],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":55,"s":[966.34,360.14],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":56,"s":[961.5,360.13],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":57,"s":[956.68,360.12],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":58,"s":[951.89,360.11],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":59,"s":[947.13,360.1],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":60,"s":[942.4,360.09],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":61,"s":[937.69,360.08],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":62,"s":[933.03,360.07],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":63,"s":[928.4,360.06],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":64,"s":[923.81,360.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":65,"s":[919.26,360.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":66,"s":[914.76,360.04],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":67,"s":[910.29,360.03],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":68,"s":[905.88,360.02],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":69,"s":[901.51,360.01],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":70,"s":[897.18,360],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":71,"s":[892.9,359.99],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":72,"s":[888.68,359.99],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":73,"s":[884.5,359.98],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":74,"s":[880.37,359.97],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":75,"s":[876.28,359.96],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":76,"s":[872.25,359.95],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":77,"s":[868.27,359.95],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":78,"s":[864.34,359.94],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":79,"s":[860.46,359.93],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":80,"s":[856.64,359.92],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":81,"s":[852.86,359.92],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":82,"s":[849.13,359.91],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":83,"s":[845.45,359.9],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":84,"s":[841.82,359.89],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":85,"s":[838.24,359.89],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":86,"s":[834.71,359.88],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":87,"s":[831.23,359.87],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":88,"s":[827.79,359.87],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":89,"s":[824.41,359.86],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":90,"s":[821.07,359.85],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":91,"s":[817.78,359.85],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":92,"s":[814.54,359.84],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":93,"s":[811.34,359.83],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":94,"s":[808.19,359.83],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":95,"s":[805.08,359.82],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":96,"s":[802.02,359.82],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":97,"s":[799,359.81],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":98,"s":[796.03,359.8],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":99,"s":[793.1,359.8],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":100,"s":[790.21,359.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":101,"s":[787.37,359.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":102,"s":[784.57,359.78],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":103,"s":[781.8,359.78],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":104,"s":[779.08,359.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":105,"s":[776.4,359.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":106,"s":[773.76,359.76],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":107,"s":[771.16,359.76],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":108,"s":[768.6,359.75],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":109,"s":[766.08,359.75],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":110,"s":[763.59,359.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":111,"s":[761.14,359.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":112,"s":[758.73,359.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":113,"s":[756.35,359.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":114,"s":[754.01,359.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":115,"s":[751.71,359.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":116,"s":[749.44,359.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":117,"s":[747.2,359.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":118,"s":[745,359.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":119,"s":[742.84,359.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":120,"s":[740.7,359.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":121,"s":[738.6,359.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":122,"s":[736.53,359.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":123,"s":[734.49,359.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":124,"s":[732.49,359.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":125,"s":[730.51,359.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":126,"s":[728.57,359.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":127,"s":[726.65,359.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":128,"s":[724.77,359.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":129,"s":[722.91,359.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":130,"s":[721.08,359.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":131,"s":[719.29,359.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":132,"s":[717.52,359.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":133,"s":[715.78,359.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":134,"s":[714.06,359.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":135,"s":[712.38,359.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":136,"s":[710.72,359.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":137,"s":[709.08,359.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":138,"s":[707.48,359.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":139,"s":[705.9,359.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":140,"s":[704.34,359.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":141,"s":[702.81,359.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":142,"s":[701.31,359.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":143,"s":[699.83,359.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":144,"s":[698.37,359.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":145,"s":[696.94,359.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":146,"s":[695.53,359.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":147,"s":[694.14,359.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":148,"s":[692.78,359.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":149,"s":[691.44,359.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":150,"s":[690.13,359.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":151,"s":[688.83,359.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":152,"s":[687.56,359.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":153,"s":[686.31,359.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":154,"s":[685.08,359.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":155,"s":[683.88,359.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":156,"s":[682.69,359.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":157,"s":[681.53,359.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":158,"s":[680.38,359.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":159,"s":[679.26,359.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":160,"s":[678.15,359.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":161,"s":[677.07,359.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":162,"s":[676.01,359.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":163,"s":[674.96,359.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":164,"s":[673.94,359.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":165,"s":[672.93,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":166,"s":[671.94,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":167,"s":[670.97,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":168,"s":[670.02,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":169,"s":[669.09,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":170,"s":[668.18,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":171,"s":[667.28,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":172,"s":[666.4,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":173,"s":[665.54,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":174,"s":[664.7,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":175,"s":[663.87,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":176,"s":[663.06,359.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":177,"s":[662.27,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":178,"s":[661.49,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":179,"s":[660.73,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":180,"s":[659.99,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":181,"s":[659.26,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":182,"s":[658.55,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":183,"s":[657.85,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":184,"s":[657.17,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":185,"s":[656.51,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":186,"s":[655.86,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":187,"s":[655.22,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":188,"s":[654.6,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":189,"s":[654,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":190,"s":[653.41,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":191,"s":[652.83,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":192,"s":[652.27,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":193,"s":[651.72,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":194,"s":[651.19,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":195,"s":[650.67,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":196,"s":[650.17,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":197,"s":[649.68,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":198,"s":[649.2,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":199,"s":[648.74,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":200,"s":[648.29,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":201,"s":[647.85,359.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":202,"s":[647.43,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":203,"s":[647.01,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":204,"s":[646.62,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":205,"s":[646.23,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":206,"s":[645.86,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":207,"s":[645.5,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":208,"s":[645.15,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":209,"s":[644.81,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":210,"s":[644.49,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":211,"s":[644.18,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":212,"s":[643.88,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":213,"s":[643.59,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":214,"s":[643.32,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":215,"s":[643.06,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":216,"s":[642.8,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":217,"s":[642.56,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":218,"s":[642.33,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":219,"s":[642.12,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":220,"s":[641.91,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":221,"s":[641.71,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":222,"s":[641.53,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":223,"s":[641.36,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":224,"s":[641.19,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":225,"s":[641.04,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":226,"s":[640.9,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":227,"s":[640.77,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":228,"s":[640.65,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":229,"s":[640.54,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":230,"s":[640.44,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":231,"s":[640.35,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":232,"s":[640.27,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":233,"s":[640.21,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":234,"s":[640.15,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":235,"s":[640.1,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":236,"s":[640.06,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":237,"s":[640.03,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":238,"s":[640.01,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":239,"s":[640,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":240,"s":[650.23,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":241,"s":[649.29,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":242,"s":[648.26,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":243,"s":[647.14,359.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":244,"s":[645.93,359.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":245,"s":[644.62,359.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":246,"s":[643.23,359.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":247,"s":[641.73,359.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":248,"s":[640.14,359.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":249,"s":[638.44,359.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":250,"s":[636.65,359.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":251,"s":[634.75,359.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":252,"s":[632.75,359.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":253,"s":[630.64,359.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":254,"s":[628.43,359.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":255,"s":[626.11,359.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":256,"s":[623.68,359.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":257,"s":[621.14,359.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":258,"s":[618.5,359.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":259,"s":[615.74,359.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":260,"s":[612.88,359.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":261,"s":[609.91,359.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":262,"s":[606.83,359.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":263,"s":[603.64,359.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":264,"s":[600.34,359.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":265,"s":[596.94,359.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":266,"s":[593.44,359.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":267,"s":[589.83,359.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":268,"s":[586.12,359.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":269,"s":[582.32,359.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":270,"s":[578.42,359.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":271,"s":[574.43,359.35],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":272,"s":[570.35,359.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":273,"s":[566.19,359.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":274,"s":[561.94,359.33],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":275,"s":[557.62,359.32],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":276,"s":[553.23,359.31],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":277,"s":[548.76,359.3],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":278,"s":[544.24,359.29],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":279,"s":[539.66,359.28],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":280,"s":[535.02,359.27],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":281,"s":[530.33,359.27],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":282,"s":[525.61,359.26],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":283,"s":[520.84,359.25],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":284,"s":[516.04,359.24],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":285,"s":[511.21,359.23],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":286,"s":[506.36,359.22],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":287,"s":[501.5,359.21],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":288,"s":[496.61,359.2],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":289,"s":[491.73,359.19],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":290,"s":[486.83,359.18],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":291,"s":[481.94,359.17],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":292,"s":[477.05,359.16],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":293,"s":[472.18,359.15],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":294,"s":[467.31,359.14],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":295,"s":[462.46,359.13],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":296,"s":[457.64,359.12],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":297,"s":[452.83,359.11],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":298,"s":[448.05,359.1],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":299,"s":[443.3,359.1],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":300,"s":[438.59,359.09],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":301,"s":[433.9,359.08],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":302,"s":[429.25,359.07],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":303,"s":[424.64,359.06],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":304,"s":[420.07,359.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":305,"s":[415.54,359.04],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":306,"s":[411.06,359.03],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":307,"s":[406.62,359.02],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":308,"s":[402.22,359.01],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":309,"s":[397.87,359.01],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":310,"s":[393.57,359],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":311,"s":[389.32,358.99],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":312,"s":[385.11,358.98],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":313,"s":[380.96,358.97],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":314,"s":[376.85,358.97],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":315,"s":[372.79,358.96],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":316,"s":[368.79,358.95],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":317,"s":[364.83,358.94],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":318,"s":[360.92,358.93],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":319,"s":[357.07,358.93],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":320,"s":[353.26,358.92],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":321,"s":[349.51,358.91],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":322,"s":[345.8,358.9],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":323,"s":[342.15,358.9],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":324,"s":[338.54,358.89],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":325,"s":[334.99,358.88],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":326,"s":[331.48,358.88],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":327,"s":[328.02,358.87],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":328,"s":[324.61,358.86],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":329,"s":[321.25,358.86],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":330,"s":[317.93,358.85],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":331,"s":[314.67,358.84],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":332,"s":[311.44,358.84],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":333,"s":[308.27,358.83],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":334,"s":[305.14,358.83],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":335,"s":[302.05,358.82],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":336,"s":[299.01,358.81],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":337,"s":[296.02,358.81],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":338,"s":[293.07,358.8],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":339,"s":[290.16,358.8],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":340,"s":[287.29,358.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":341,"s":[284.47,358.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":342,"s":[281.68,358.78],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":343,"s":[278.94,358.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":344,"s":[276.24,358.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":345,"s":[273.58,358.76],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":346,"s":[270.96,358.76],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":347,"s":[268.38,358.75],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":348,"s":[265.83,358.75],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":349,"s":[263.33,358.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":350,"s":[260.86,358.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":351,"s":[258.43,358.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":352,"s":[256.03,358.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":353,"s":[253.67,358.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":354,"s":[251.35,358.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":355,"s":[249.06,358.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":356,"s":[246.81,358.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":357,"s":[244.59,358.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":358,"s":[242.41,358.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":359,"s":[240.25,358.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":360,"s":[238.14,358.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":361,"s":[236.05,358.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":362,"s":[233.99,358.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":363,"s":[231.97,358.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":364,"s":[229.98,358.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":365,"s":[228.02,358.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":366,"s":[226.09,358.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":367,"s":[224.19,358.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":368,"s":[222.32,358.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":369,"s":[220.48,358.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":370,"s":[218.67,358.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":371,"s":[216.88,358.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":372,"s":[215.13,358.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":373,"s":[213.4,358.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":374,"s":[211.7,358.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":375,"s":[210.02,358.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":376,"s":[208.38,358.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":377,"s":[206.76,358.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":378,"s":[205.16,358.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":379,"s":[203.59,358.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":380,"s":[202.05,358.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":381,"s":[200.53,358.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":382,"s":[199.04,358.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":383,"s":[197.57,358.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":384,"s":[196.13,358.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":385,"s":[194.71,358.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":386,"s":[193.31,358.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":387,"s":[191.93,358.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":388,"s":[190.58,358.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":389,"s":[189.26,358.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":390,"s":[187.95,358.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":391,"s":[186.67,358.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":392,"s":[185.41,358.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":393,"s":[184.17,358.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":394,"s":[182.95,358.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":395,"s":[181.75,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":396,"s":[180.58,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":397,"s":[179.42,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":398,"s":[178.29,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":399,"s":[177.17,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":400,"s":[176.08,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":401,"s":[175,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":402,"s":[173.95,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":403,"s":[172.91,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":404,"s":[171.9,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":405,"s":[170.9,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":406,"s":[169.92,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":407,"s":[168.96,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":408,"s":[168.02,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":409,"s":[167.1,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":410,"s":[166.19,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":411,"s":[165.3,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":412,"s":[164.43,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":413,"s":[163.58,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":414,"s":[162.74,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":415,"s":[161.93,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":416,"s":[161.12,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":417,"s":[160.34,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":418,"s":[159.57,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":419,"s":[158.82,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":420,"s":[158.08,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":421,"s":[157.36,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":422,"s":[156.66,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":423,"s":[155.97,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":424,"s":[155.3,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":425,"s":[154.64,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":426,"s":[154,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":427,"s":[153.37,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":428,"s":[152.76,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":429,"s":[152.16,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":430,"s":[151.58,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":431,"s":[151.01,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":432,"s":[150.45,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":433,"s":[149.91,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":434,"s":[149.39,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":435,"s":[148.88,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":436,"s":[148.38,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":437,"s":[147.89,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":438,"s":[147.42,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":439,"s":[146.96,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":440,"s":[146.52,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":441,"s":[146.09,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":442,"s":[145.67,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":443,"s":[145.27,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":444,"s":[144.88,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":445,"s":[144.5,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":446,"s":[144.13,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":447,"s":[143.78,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":448,"s":[143.43,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":449,"s":[143.1,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":450,"s":[142.79,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":451,"s":[142.48,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":452,"s":[142.19,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":453,"s":[141.91,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":454,"s":[141.64,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":455,"s":[141.38,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":456,"s":[141.13,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":457,"s":[140.9,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":458,"s":[140.67,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":459,"s":[140.46,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":460,"s":[140.26,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":461,"s":[140.07,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":462,"s":[139.89,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":463,"s":[139.72,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":464,"s":[139.57,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":465,"s":[139.42,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":466,"s":[139.28,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":467,"s":[139.16,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":468,"s":[139.04,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":469,"s":[138.94,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":470,"s":[138.84,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":471,"s":[138.76,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":472,"s":[138.69,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":473,"s":[138.62,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":474,"s":[138.57,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":475,"s":[138.52,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":476,"s":[138.49,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":477,"s":[138.47,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":478,"s":[138.45,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":479,"s":[138.45,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":480,"s":[150.77,358.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":481,"s":[152.7,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":482,"s":[154.8,358.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":483,"s":[157.07,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":484,"s":[159.53,358.52],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":485,"s":[162.17,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":486,"s":[165,358.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":487,"s":[168.02,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":488,"s":[171.24,358.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":489,"s":[174.65,358.55],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":490,"s":[178.26,358.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":491,"s":[182.07,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":492,"s":[186.09,358.57],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":493,"s":[190.32,358.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":494,"s":[194.75,358.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":495,"s":[199.4,358.6],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":496,"s":[204.26,358.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":497,"s":[209.33,358.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":498,"s":[214.61,358.63],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":499,"s":[220.11,358.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":500,"s":[225.82,358.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":501,"s":[231.74,358.66],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":502,"s":[237.88,358.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":503,"s":[244.22,358.69],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":504,"s":[250.77,358.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":505,"s":[257.53,358.72],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":506,"s":[264.49,358.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":507,"s":[271.65,358.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":508,"s":[279,358.76],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":509,"s":[286.54,358.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":510,"s":[294.26,358.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":511,"s":[302.16,358.81],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":512,"s":[310.23,358.82],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":513,"s":[318.46,358.84],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":514,"s":[326.85,358.85],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":515,"s":[335.38,358.87],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":516,"s":[344.05,358.89],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":517,"s":[352.85,358.91],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":518,"s":[361.77,358.92],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":519,"s":[370.8,358.94],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":520,"s":[379.92,358.96],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":521,"s":[389.14,358.98],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":522,"s":[398.44,359],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":523,"s":[407.8,359.02],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":524,"s":[417.23,359.03],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":525,"s":[426.71,359.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":526,"s":[436.22,359.07],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":527,"s":[445.77,359.09],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":528,"s":[455.34,359.11],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":529,"s":[464.91,359.13],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":530,"s":[474.5,359.15],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":531,"s":[484.07,359.17],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":532,"s":[493.64,359.19],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":533,"s":[503.18,359.21],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":534,"s":[512.69,359.22],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":535,"s":[522.17,359.24],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":536,"s":[531.6,359.26],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":537,"s":[540.99,359.28],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":538,"s":[550.32,359.3],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":539,"s":[559.59,359.32],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":540,"s":[568.8,359.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":541,"s":[577.94,359.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":542,"s":[587.01,359.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":543,"s":[596,359.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":544,"s":[604.91,359.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":545,"s":[613.74,359.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":546,"s":[622.48,359.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":547,"s":[631.14,359.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":548,"s":[639.7,359.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":549,"s":[648.18,359.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":550,"s":[656.56,359.51],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":551,"s":[664.84,359.53],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":552,"s":[673.03,359.54],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":553,"s":[681.12,359.56],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":554,"s":[689.12,359.58],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":555,"s":[697.02,359.59],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":556,"s":[704.82,359.61],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":557,"s":[712.52,359.62],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":558,"s":[720.12,359.64],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":559,"s":[727.62,359.65],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":560,"s":[735.03,359.67],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":561,"s":[742.33,359.68],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":562,"s":[749.54,359.7],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":563,"s":[756.66,359.71],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":564,"s":[763.67,359.73],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":565,"s":[770.59,359.74],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":566,"s":[777.41,359.75],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":567,"s":[784.14,359.77],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":568,"s":[790.77,359.78],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":569,"s":[797.31,359.79],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":570,"s":[803.76,359.81],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":571,"s":[810.12,359.82],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":572,"s":[816.38,359.83],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":573,"s":[822.56,359.84],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":574,"s":[828.65,359.85],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":575,"s":[834.65,359.87],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":576,"s":[840.56,359.88],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":577,"s":[846.38,359.89],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":578,"s":[852.13,359.9],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":579,"s":[857.78,359.91],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":580,"s":[863.36,359.92],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":581,"s":[868.85,359.94],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":582,"s":[874.26,359.95],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":583,"s":[879.59,359.96],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":584,"s":[884.84,359.97],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":585,"s":[890.02,359.98],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":586,"s":[895.11,359.99],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":587,"s":[900.14,360],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":588,"s":[905.08,360.01],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":589,"s":[909.95,360.02],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":590,"s":[914.75,360.03],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":591,"s":[919.48,360.04],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":592,"s":[924.14,360.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":593,"s":[928.72,360.05],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":594,"s":[933.24,360.06],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":595,"s":[937.69,360.07],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":596,"s":[942.07,360.08],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":597,"s":[946.38,360.09],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":598,"s":[950.63,360.1],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":599,"s":[954.81,360.11],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":600,"s":[958.93,360.11],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":601,"s":[962.99,360.12],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":602,"s":[966.98,360.13],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":603,"s":[970.91,360.14],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":604,"s":[974.78,360.15],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":605,"s":[978.59,360.15],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":606,"s":[982.34,360.16],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":607,"s":[986.04,360.17],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":608,"s":[989.67,360.18],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":609,"s":[993.25,360.18],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":610,"s":[996.77,360.19],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":611,"s":[1000.24,360.2],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":612,"s":[1003.65,360.2],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":613,"s":[1007.01,360.21],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":614,"s":[1010.32,360.22],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":615,"s":[1013.57,360.22],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":616,"s":[1016.77,360.23],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":617,"s":[1019.92,360.24],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":618,"s":[1023.02,360.24],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":619,"s":[1026.07,360.25],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":620,"s":[1029.06,360.25],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":621,"s":[1032.01,360.26],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":622,"s":[1034.92,360.27],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":623,"s":[1037.77,360.27],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":624,"s":[1040.58,360.28],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":625,"s":[1043.34,360.28],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":626,"s":[1046.05,360.29],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":627,"s":[1048.72,360.29],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":628,"s":[1051.34,360.3],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":629,"s":[1053.92,360.3],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":630,"s":[1056.46,360.31],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":631,"s":[1058.95,360.31],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":632,"s":[1061.4,360.32],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":633,"s":[1063.81,360.32],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":634,"s":[1066.17,360.33],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":635,"s":[1068.49,360.33],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":636,"s":[1070.78,360.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":637,"s":[1073.02,360.34],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":638,"s":[1075.22,360.35],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":639,"s":[1077.39,360.35],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":640,"s":[1079.51,360.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":641,"s":[1081.6,360.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":642,"s":[1083.64,360.36],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":643,"s":[1085.65,360.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":644,"s":[1087.63,360.37],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":645,"s":[1089.56,360.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":646,"s":[1091.46,360.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":647,"s":[1093.32,360.38],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":648,"s":[1095.15,360.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":649,"s":[1096.94,360.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":650,"s":[1098.7,360.39],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":651,"s":[1100.42,360.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":652,"s":[1102.11,360.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":653,"s":[1103.76,360.4],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":654,"s":[1105.38,360.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":655,"s":[1106.97,360.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":656,"s":[1108.53,360.41],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":657,"s":[1110.05,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":658,"s":[1111.54,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":659,"s":[1113,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":660,"s":[1114.42,360.42],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":661,"s":[1115.82,360.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":662,"s":[1117.18,360.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":663,"s":[1118.52,360.43],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":664,"s":[1119.82,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":665,"s":[1121.09,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":666,"s":[1122.34,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":667,"s":[1123.55,360.44],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":668,"s":[1124.74,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":669,"s":[1125.89,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":670,"s":[1127.02,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":671,"s":[1128.12,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":672,"s":[1129.19,360.45],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":673,"s":[1130.24,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":674,"s":[1131.25,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":675,"s":[1132.24,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":676,"s":[1133.21,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":677,"s":[1134.14,360.46],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":678,"s":[1135.05,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":679,"s":[1135.94,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":680,"s":[1136.79,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":681,"s":[1137.62,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":682,"s":[1138.43,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":683,"s":[1139.21,360.47],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":684,"s":[1139.97,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":685,"s":[1140.7,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":686,"s":[1141.4,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":687,"s":[1142.09,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":688,"s":[1142.74,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":689,"s":[1143.38,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":690,"s":[1143.99,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":691,"s":[1144.57,360.48],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":692,"s":[1145.14,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":693,"s":[1145.68,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":694,"s":[1146.19,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":695,"s":[1146.69,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":696,"s":[1147.16,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":697,"s":[1147.61,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":698,"s":[1148.04,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":699,"s":[1148.44,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":700,"s":[1148.83,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":701,"s":[1149.19,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":702,"s":[1149.53,360.49],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":703,"s":[1149.85,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":704,"s":[1150.15,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":705,"s":[1150.42,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":706,"s":[1150.68,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":707,"s":[1150.92,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":708,"s":[1151.13,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":709,"s":[1151.33,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":710,"s":[1151.5,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":711,"s":[1151.66,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":712,"s":[1151.79,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":713,"s":[1151.91,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":714,"s":[1152,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":715,"s":[1152.08,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":716,"s":[1152.14,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":717,"s":[1152.18,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}},{"t":718,"s":[1152.2,360.5],"i":{"x":0,"y":0},"o":{"x":1,"y":1}}]},"r":{"a":0,"k":0},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}},"ao":0,"w":25600,"h":25600,"ip":0,"op":719,"st":0,"bm":0,"refId":"o4tYAKjHOXMrHzLTfYdTM"}],"meta":{"g":"https://jitter.video"},"nm":"abstractLines_noAnim","op":719,"v":"5.7.4","w":1280} \ No newline at end of file diff --git a/assets/animations/abstractbackground.json b/assets/animations/abstractbackground.json new file mode 100644 index 0000000..9d694e9 --- /dev/null +++ b/assets/animations/abstractbackground.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.20","a":"","k":"","d":"","tc":""},"fr":29.9700012207031,"ip":0,"op":300.00001221925,"w":1920,"h":1080,"nm":"back 2","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Слой 2 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[14.108,353.147,0],"to":[287.667,0,0],"ti":[-287.667,0,0]},{"t":181.018807373047,"s":[1740.108,353.147,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[225.942,110.828,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.934,0.02],[-0.02,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.933,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[4.14,109.323],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[4.32,91.702],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[4.5,74.081],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.432],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[4.68,56.461],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.767,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[29.814,127.208],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.934,0.02],[-0.019,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.933,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[29.993,109.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[30.173,91.966],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.266,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[30.353,74.346],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.432],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.024,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[30.533,56.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.6,-0.026],[0.027,-2.599],[2.599,0.026],[-0.026,2.6]],"o":[[2.599,0.027],[-0.027,2.6],[-2.6,-0.027],[0.027,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.707,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[30.714,39.104],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.017],[-0.016,1.601]],"o":[[1.601,0.017],[-0.016,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.03,-2.9],[2.9,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[55.486,145.093],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.018,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.201,0.032],[-0.032,3.2],[-3.201,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[55.667,127.472],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.022,-2.1],[2.1,0.022],[-0.022,2.1]],"o":[[2.1,0.021],[-0.021,2.1],[-2.1,-0.021],[0.021,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.802,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[56.027,92.231],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.266,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[56.206,74.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.432],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[56.387,56.989],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.027,-2.599],[2.599,0.026],[-0.027,2.6]],"o":[[2.599,0.027],[-0.026,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[56.567,39.368],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.028,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.029,2.765],[-2.766,-0.028],[0.029,-2.766]],"v":[[0.051,-5.008],[5.008,0.052],[-0.051,5.007],[-5.008,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[56.747,21.748],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.935],[-0.936,-0.009],[0.01,-0.936]],"o":[[-0.936,-0.009],[0.01,-0.936],[0.935,0.01],[-0.009,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.018,-1.695],[1.694,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[80.619,215.839],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.103]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[80.8,198.218],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.013],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.298],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[80.98,180.598],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.435,0.014],[-0.014,1.434]],"o":[[1.435,0.015],[-0.014,1.435],[-1.435,-0.015],[0.015,-1.435]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.026]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[81.16,162.977],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.017],[-0.016,1.601]],"o":[[1.601,0.017],[-0.017,1.601],[-1.602,-0.016],[0.016,-1.601]],"v":[[0.03,-2.9],[2.9,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[81.34,145.357],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.767]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[81.52,127.736],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.934,0.02],[-0.019,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.933,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[81.7,110.115],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[81.88,92.495],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[82.06,74.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[82.24,57.253],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.027,-2.599],[2.599,0.026],[-0.027,2.6]],"o":[[2.599,0.026],[-0.026,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[82.42,39.633],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.027,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.029,2.765],[-2.765,-0.028],[0.028,-2.766]],"v":[[0.052,-5.008],[5.009,0.052],[-0.051,5.007],[-5.007,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[82.6,22.012],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.935],[-0.936,-0.009],[0.01,-0.936]],"o":[[-0.936,-0.009],[0.01,-0.936],[0.935,0.01],[-0.009,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.018,-1.695],[1.694,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[106.473,216.104],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.102,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[106.653,198.483],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.268,0.012],[-0.013,1.269]],"o":[[1.268,0.013],[-0.013,1.269],[-1.268,-0.013],[0.012,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.298],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[106.833,180.862],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.434,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.435],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.014,163.241],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.602,-0.016],[0.017,-1.601],[1.602,0.017],[-0.016,1.601]],"o":[[1.601,0.017],[-0.016,1.601],[-1.601,-0.016],[0.016,-1.601]],"v":[[0.03,-2.9],[2.898,0.03],[-0.031,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.194,145.621],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.767]],"o":[[1.767,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.374,128],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.934],[1.934,0.02],[-0.019,1.934]],"o":[[1.934,0.02],[-0.019,1.933],[-1.934,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.501,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.553,110.379],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.733,92.759],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.266,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[107.913,75.138],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.432,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[108.093,57.517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.026,-2.599],[2.599,0.026],[-0.027,2.599]],"o":[[2.6,0.026],[-0.027,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.707,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[108.273,39.897],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.012,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[132.506,198.747],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.013],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.298],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[132.686,181.126],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.435,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.435],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[132.866,163.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.017],[-0.016,1.601]],"o":[[1.601,0.017],[-0.017,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.03,-2.9],[2.9,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.047,145.885],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.018,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.201],[3.201,0.032],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.227,128.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.934],[1.933,0.02],[-0.02,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.501,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.407,110.643],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.022,-2.101],[2.1,0.022],[-0.022,2.1]],"o":[[2.1,0.021],[-0.021,2.1],[-2.1,-0.021],[0.021,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.802,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.587,93.023],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.266,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.766,75.402],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[133.947,57.781],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.027,-2.599],[2.599,0.026],[-0.027,2.599]],"o":[[2.599,0.026],[-0.026,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[134.127,40.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.028,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.029,2.765],[-2.766,-0.028],[0.029,-2.766]],"v":[[0.051,-5.008],[5.008,0.052],[-0.051,5.007],[-5.008,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[134.307,22.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.936],[-0.935,-0.01],[0.009,-0.935]],"o":[[-0.936,-0.009],[0.009,-0.936],[0.937,0.009],[-0.01,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.017,-1.694],[1.695,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[395.326,219.438],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.103,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.012],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[395.506,201.818],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.013],[-0.013,1.269]],"o":[[1.269,0.013],[-0.012,1.268],[-1.268,-0.013],[0.013,-1.269]],"v":[[0.024,-2.297],[2.297,0.023],[-0.024,2.296],[-2.297,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[395.686,184.197],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.436,0.014],[-0.015,1.435]],"o":[[1.435,0.015],[-0.014,1.435],[-1.434,-0.015],[0.015,-1.435]],"v":[[0.027,-2.598],[2.598,0.026],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[395.866,166.576],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.017],[-0.015,1.601]],"o":[[1.602,0.017],[-0.016,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.029,-2.9],[2.899,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.047,148.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.768],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.2,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.227,131.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.933,0.02],[-0.02,1.934]],"o":[[1.935,0.02],[-0.02,1.933],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.035,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.406,113.714],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.586,96.093],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.024,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.024,-2.267]],"v":[[0.042,-4.104],[4.103,0.042],[-0.043,4.104],[-4.105,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.766,78.472],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.434,-0.025],[0.025,-2.432],[2.433,0.024],[-0.026,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.024,-2.433]],"v":[[0.046,-4.405],[4.406,0.045],[-0.044,4.406],[-4.404,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[396.946,60.852],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.009,0.935],[-0.935,-0.01],[0.01,-0.935]],"o":[[-0.936,-0.009],[0.01,-0.936],[0.936,0.009],[-0.009,0.936]],"v":[[-0.017,1.694],[-1.695,-0.017],[0.017,-1.694],[1.694,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[421.18,219.702],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 62","np":2,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.103,-0.012],[0.011,-1.102],[1.102,0.011],[-0.01,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.103,-0.012],[0.012,-1.102]],"v":[[0.021,-1.995],[1.996,0.021],[-0.02,1.996],[-1.997,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[421.36,202.081],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.436,-0.015],[0.015,-1.435],[1.436,0.015],[-0.015,1.434]],"o":[[1.435,0.015],[-0.014,1.435],[-1.434,-0.014],[0.015,-1.435]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.026]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[421.719,166.84],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.602,0.017],[-0.016,1.601]],"o":[[1.602,0.017],[-0.016,1.601],[-1.6,-0.016],[0.017,-1.601]],"v":[[0.03,-2.9],[2.9,0.03],[-0.031,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[421.9,149.22],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.2,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[422.08,131.599],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.933,0.02],[-0.02,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.035,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[422.259,113.978],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 67","np":2,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.101,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[422.44,96.357],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[422.62,78.737],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 69","np":2,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.102,0.011],[-0.01,1.102]],"o":[[1.103,0.012],[-0.012,1.102],[-1.103,-0.011],[0.012,-1.103]],"v":[[0.02,-1.996],[1.995,0.021],[-0.021,1.996],[-1.997,-0.019]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[447.213,202.345],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 70","np":2,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.012,1.269],[-1.268,-0.013],[0.012,-1.268]],"v":[[0.024,-2.297],[2.297,0.023],[-0.024,2.298],[-2.297,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[447.393,184.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 71","np":2,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.435,0.015],[-0.015,1.434]],"o":[[1.436,0.015],[-0.014,1.435],[-1.434,-0.015],[0.015,-1.435]],"v":[[0.026,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.026]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[447.573,167.104],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 72","np":2,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.767,-0.018],[0.019,-1.767],[1.767,0.018],[-0.019,1.767]],"o":[[1.768,0.018],[-0.018,1.767],[-1.767,-0.018],[0.017,-1.768]],"v":[[0.032,-3.201],[3.2,0.032],[-0.033,3.2],[-3.2,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[447.933,131.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 73","np":2,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.933,0.02],[-0.02,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.935,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.035,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[448.113,114.242],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 74","np":2,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.102,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[160.492,199.416],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 75","np":2,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.268,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.013],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.298],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[160.672,181.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 76","np":2,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.434,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.435],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[160.852,164.174],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 77","np":2,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.017,-1.601],[1.602,0.017],[-0.016,1.601]],"o":[[1.601,0.017],[-0.016,1.601],[-1.601,-0.016],[0.016,-1.601]],"v":[[0.03,-2.9],[2.898,0.03],[-0.031,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[161.032,146.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 78","np":2,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.767],[1.767,0.018],[-0.018,1.767]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.768]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[161.212,128.934],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 79","np":2,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.934],[1.934,0.02],[-0.019,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.933,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[161.392,111.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 80","np":2,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[161.752,76.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 81","np":2,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[161.932,58.451],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 82","np":2,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.6,-0.026],[0.027,-2.599],[2.599,0.026],[-0.027,2.599]],"o":[[2.599,0.026],[-0.027,2.6],[-2.6,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[162.113,40.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 83","np":2,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.028,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.028,2.765],[-2.765,-0.028],[0.028,-2.766]],"v":[[0.052,-5.008],[5.008,0.052],[-0.051,5.007],[-5.007,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[162.292,23.209],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 84","np":2,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.932,-0.03],[0.03,-2.932],[2.932,0.029],[-0.03,2.933]],"o":[[2.932,0.03],[-0.029,2.932],[-2.932,-0.031],[0.03,-2.931]],"v":[[0.055,-5.309],[5.308,0.054],[-0.055,5.309],[-5.309,-0.055]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[162.472,5.589],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 85","np":2,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.935],[-0.935,-0.009],[0.01,-0.936]],"o":[[-0.936,-0.009],[0.01,-0.936],[0.936,0.01],[-0.009,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.017,-1.695],[1.694,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[186.165,217.301],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 86","np":2,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.012,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.103,0.011],[-0.011,1.102],[-1.102,-0.011],[0.012,-1.102]],"v":[[0.02,-1.996],[1.995,0.021],[-0.021,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[186.346,199.68],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 87","np":2,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.268,-0.013],[0.014,-1.268],[1.269,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.013],[0.013,-1.268]],"v":[[0.023,-2.297],[2.296,0.023],[-0.024,2.298],[-2.297,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[186.526,182.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 88","np":2,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.014,-1.435],[1.435,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.015,1.435],[-1.435,-0.015],[0.016,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[186.705,164.439],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 89","np":2,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.016],[-0.016,1.601]],"o":[[1.602,0.017],[-0.016,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.03,-2.899],[2.9,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[186.886,146.818],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 90","np":2,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.767,-0.018],[0.018,-1.767],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.201],[3.201,0.032],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.066,129.198],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 91","np":2,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.934],[1.933,0.02],[-0.02,1.934]],"o":[[1.934,0.02],[-0.02,1.933],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.501,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.246,111.577],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 92","np":2,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.022,-2.101],[2.1,0.022],[-0.022,2.1]],"o":[[2.101,0.021],[-0.021,2.1],[-2.1,-0.021],[0.021,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.802,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.426,93.957],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 93","np":2,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.266,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.041,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.605,76.336],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 94","np":2,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.024],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.406],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.785,58.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 95","np":2,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.027,-2.599],[2.599,0.026],[-0.027,2.599]],"o":[[2.6,0.026],[-0.026,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.707],[4.706,0.047],[-0.048,4.706],[-4.706,-0.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[187.966,41.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 96","np":2,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.028,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.029,2.765],[-2.766,-0.028],[0.029,-2.766]],"v":[[0.051,-5.008],[5.008,0.052],[-0.051,5.007],[-5.008,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[188.146,23.474],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 97","np":2,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.932,-0.03],[0.03,-2.932],[2.932,0.029],[-0.03,2.933]],"o":[[2.932,0.03],[-0.03,2.932],[-2.933,-0.031],[0.03,-2.932]],"v":[[0.054,-5.309],[5.309,0.054],[-0.054,5.309],[-5.309,-0.055]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[188.326,5.853],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 98","np":2,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.935],[-0.936,-0.009],[0.009,-0.936]],"o":[[-0.936,-0.009],[0.01,-0.936],[0.935,0.01],[-0.01,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.018,-1.695],[1.695,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.018,217.566],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 99","np":2,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.012,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.199,199.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 100","np":2,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.012],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.013],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.298],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.379,182.324],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 101","np":2,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.435,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.559,164.703],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 102","np":2,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.016,-1.601],[1.601,0.016],[-0.016,1.601]],"o":[[1.601,0.017],[-0.017,1.601],[-1.601,-0.016],[0.016,-1.601]],"v":[[0.03,-2.899],[2.9,0.03],[-0.03,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.739,147.082],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 103","np":2,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.768],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[212.919,129.462],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 104","np":2,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.933],[1.934,0.02],[-0.02,1.933]],"o":[[1.934,0.02],[-0.02,1.934],[-1.933,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[213.099,111.841],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 105","np":2,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.021,-2.101],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.021,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[213.279,94.221],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 106","np":2,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[213.459,76.6],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 107","np":2,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.024],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[213.639,58.979],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 108","np":2,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.027],[0.027,-2.599],[2.599,0.026],[-0.027,2.599]],"o":[[2.599,0.026],[-0.026,2.6],[-2.599,-0.027],[0.026,-2.599]],"v":[[0.048,-4.706],[4.706,0.048],[-0.048,4.707],[-4.706,-0.048]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[213.819,41.358],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 109","np":2,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.268,0.013],[-0.013,1.269]],"o":[[1.268,0.013],[-0.013,1.269],[-1.268,-0.012],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.296],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[238.232,182.588],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 110","np":2,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.435],[1.434,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[238.412,164.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 111","np":2,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.016],[0.017,-1.601],[1.602,0.016],[-0.016,1.601]],"o":[[1.601,0.017],[-0.016,1.601],[-1.601,-0.016],[0.016,-1.601]],"v":[[0.03,-2.899],[2.898,0.03],[-0.031,2.899],[-2.9,-0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[238.592,147.347],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 112","np":2,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.768],[1.767,0.018],[-0.018,1.768]],"o":[[1.767,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.201],[3.2,0.032],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[238.773,129.726],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 113","np":2,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.933],[1.934,0.02],[-0.019,1.933]],"o":[[1.934,0.02],[-0.02,1.934],[-1.933,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[238.952,112.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 114","np":2,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.101],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.039],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[239.132,94.485],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 115","np":2,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.267],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[239.312,76.864],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 116","np":2,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.024],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[239.492,59.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 117","np":2,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.6,-0.027],[0.027,-2.599],[2.599,0.026],[-0.026,2.599]],"o":[[2.599,0.026],[-0.027,2.6],[-2.6,-0.027],[0.027,-2.599]],"v":[[0.048,-4.706],[4.706,0.048],[-0.048,4.707],[-4.707,-0.048]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[239.673,41.622],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 118","np":2,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.766,-0.028],[0.028,-2.766],[2.766,0.028],[-0.028,2.765]],"o":[[2.766,0.028],[-0.028,2.765],[-2.765,-0.028],[0.028,-2.766]],"v":[[0.052,-5.008],[5.008,0.052],[-0.051,5.007],[-5.007,-0.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[239.852,24.002],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 119","np":2,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.01],[-0.01,0.935],[-0.936,-0.009],[0.009,-0.936]],"o":[[-0.936,-0.01],[0.01,-0.936],[0.936,0.01],[-0.01,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.018,-1.695],[1.695,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[263.725,218.094],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 120","np":2,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.011],[0.012,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[263.905,200.473],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 121","np":2,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.268,-0.013],[0.014,-1.268],[1.269,0.013],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.269],[-1.268,-0.012],[0.013,-1.268]],"v":[[0.023,-2.297],[2.296,0.023],[-0.024,2.296],[-2.297,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.086,182.852],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 122","np":2,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.014,-1.436],[1.435,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.015,1.434],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.265,165.231],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 123","np":2,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.017],[0.016,-1.601],[1.601,0.016],[-0.016,1.601]],"o":[[1.601,0.016],[-0.016,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.03,-2.899],[2.9,0.031],[-0.03,2.9],[-2.9,-0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.446,147.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 124","np":2,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.018,-1.768],[1.767,0.017],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.2],[3.201,0.033],[-0.032,3.201],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.626,129.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 125","np":2,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.933],[1.933,0.02],[-0.02,1.933]],"o":[[1.934,0.02],[-0.02,1.934],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.501,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.806,112.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 126","np":2,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.022,-2.1],[2.1,0.022],[-0.022,2.1]],"o":[[2.1,0.021],[-0.021,2.101],[-2.1,-0.021],[0.021,-2.1]],"v":[[0.039,-3.803],[3.803,0.038],[-0.039,3.802],[-3.802,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[264.986,94.749],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 127","np":2,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.266,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.266],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.041,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[265.165,77.128],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 128","np":2,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[265.346,59.507],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 129","np":2,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.269,0.013],[-0.013,1.269]],"o":[[1.269,0.013],[-0.013,1.268],[-1.268,-0.012],[0.013,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.296],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[289.939,183.116],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 130","np":2,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.436],[1.435,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[290.119,165.495],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 131","np":2,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.017],[0.016,-1.601],[1.601,0.016],[-0.016,1.601]],"o":[[1.601,0.016],[-0.017,1.601],[-1.601,-0.016],[0.016,-1.601]],"v":[[0.03,-2.899],[2.9,0.031],[-0.03,2.9],[-2.9,-0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[290.299,147.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 132","np":2,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.019,-1.768],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.018,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.2],[3.2,0.033],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[290.479,130.254],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 133","np":2,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.019,-1.933],[1.934,0.02],[-0.02,1.933]],"o":[[1.934,0.02],[-0.02,1.934],[-1.933,-0.02],[0.019,-1.934]],"v":[[0.036,-3.502],[3.502,0.036],[-0.036,3.501],[-3.501,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[290.659,112.634],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 134","np":2,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.1,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.101],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.038],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[290.839,95.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 135","np":2,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.266],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[291.019,77.392],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 136","np":2,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[291.199,59.772],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 137","np":2,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.011,-1.102],[1.102,0.011],[-0.011,1.102]],"o":[[1.102,0.011],[-0.011,1.102],[-1.102,-0.012],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[315.612,201.001],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 138","np":2,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.013,-1.268],[1.268,0.013],[-0.013,1.269]],"o":[[1.268,0.013],[-0.013,1.268],[-1.268,-0.012],[0.012,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.296],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[315.792,183.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 139","np":2,"cix":2,"bm":0,"ix":139,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.436],[1.434,0.014],[-0.014,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.435,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[315.973,165.759],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 140","np":2,"cix":2,"bm":0,"ix":140,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.602,-0.017],[0.017,-1.601],[1.602,0.016],[-0.016,1.601]],"o":[[1.601,0.016],[-0.016,1.601],[-1.601,-0.016],[0.016,-1.602]],"v":[[0.03,-2.899],[2.898,0.031],[-0.031,2.9],[-2.9,-0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[316.153,148.139],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 141","np":2,"cix":2,"bm":0,"ix":141,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.933],[1.934,0.02],[-0.019,1.933]],"o":[[1.934,0.02],[-0.019,1.934],[-1.933,-0.02],[0.02,-1.934]],"v":[[0.036,-3.502],[3.501,0.036],[-0.036,3.501],[-3.502,-0.036]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[316.512,112.898],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 142","np":2,"cix":2,"bm":0,"ix":142,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.1,0.021],[-0.022,2.101],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.038],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[316.692,95.277],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 143","np":2,"cix":2,"bm":0,"ix":143,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.266,0.023],[-0.023,2.266],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.042,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[316.872,77.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 144","np":2,"cix":2,"bm":0,"ix":144,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.025],[-0.025,2.433],[-2.433,-0.025],[0.024,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[317.053,60.036],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 145","np":2,"cix":2,"bm":0,"ix":145,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.6,-0.027],[0.027,-2.599],[2.599,0.026],[-0.026,2.599]],"o":[[2.599,0.026],[-0.027,2.6],[-2.6,-0.027],[0.027,-2.599]],"v":[[0.048,-4.706],[4.706,0.048],[-0.048,4.707],[-4.707,-0.048]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[317.233,42.415],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 146","np":2,"cix":2,"bm":0,"ix":146,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.009],[-0.01,0.936],[-0.936,-0.009],[0.01,-0.936]],"o":[[-0.936,-0.01],[0.01,-0.935],[0.936,0.01],[-0.01,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.017,-1.694],[1.694,0.018]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[341.285,218.886],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 147","np":2,"cix":2,"bm":0,"ix":147,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.102,-0.011],[0.01,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.103,0.011],[-0.012,1.102],[-1.102,-0.012],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[341.465,201.265],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 148","np":2,"cix":2,"bm":0,"ix":148,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.269,-0.013],[0.014,-1.268],[1.268,0.013],[-0.013,1.269]],"o":[[1.269,0.013],[-0.012,1.268],[-1.268,-0.012],[0.012,-1.268]],"v":[[0.024,-2.297],[2.296,0.023],[-0.024,2.296],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[341.646,183.644],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 149","np":2,"cix":2,"bm":0,"ix":149,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.436],[1.435,0.014],[-0.015,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.434,-0.015],[0.015,-1.434]],"v":[[0.027,-2.598],[2.598,0.027],[-0.027,2.598],[-2.598,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[341.825,166.024],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 150","np":2,"cix":2,"bm":0,"ix":150,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.602,-0.017],[0.017,-1.601],[1.602,0.016],[-0.016,1.601]],"o":[[1.601,0.016],[-0.016,1.601],[-1.601,-0.016],[0.016,-1.602]],"v":[[0.03,-2.899],[2.898,0.031],[-0.031,2.9],[-2.9,-0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.006,148.403],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 151","np":2,"cix":2,"bm":0,"ix":151,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.018,-1.768],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.019,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.2],[3.201,0.033],[-0.032,3.2],[-3.201,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.186,130.782],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 152","np":2,"cix":2,"bm":0,"ix":152,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.935,-0.02],[0.019,-1.933],[1.934,0.019],[-0.02,1.933]],"o":[[1.934,0.02],[-0.021,1.934],[-1.934,-0.02],[0.02,-1.934]],"v":[[0.037,-3.501],[3.502,0.036],[-0.035,3.502],[-3.501,-0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.365,113.161],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 153","np":2,"cix":2,"bm":0,"ix":153,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.099,0.022],[-0.021,2.1]],"o":[[2.101,0.021],[-0.022,2.1],[-2.101,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.038],[-0.038,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.545,95.542],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 154","np":2,"cix":2,"bm":0,"ix":154,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.023,-2.267],[2.267,0.023],[-0.024,2.267]],"o":[[2.267,0.023],[-0.024,2.266],[-2.267,-0.023],[0.023,-2.267]],"v":[[0.043,-4.104],[4.104,0.042],[-0.042,4.104],[-4.104,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.725,77.921],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 155","np":2,"cix":2,"bm":0,"ix":155,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.025,2.433]],"o":[[2.433,0.024],[-0.025,2.433],[-2.432,-0.025],[0.025,-2.433]],"v":[[0.045,-4.405],[4.405,0.045],[-0.045,4.405],[-4.405,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[342.906,60.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 156","np":2,"cix":2,"bm":0,"ix":156,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.936,0.009],[-0.01,0.936],[-0.935,-0.009],[0.01,-0.936]],"o":[[-0.936,-0.01],[0.01,-0.935],[0.937,0.01],[-0.01,0.936]],"v":[[-0.017,1.694],[-1.694,-0.017],[0.016,-1.694],[1.694,0.018]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[367.139,219.15],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 157","np":2,"cix":2,"bm":0,"ix":157,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.103,-0.011],[0.011,-1.102],[1.103,0.011],[-0.011,1.102]],"o":[[1.103,0.011],[-0.011,1.102],[-1.102,-0.012],[0.011,-1.102]],"v":[[0.021,-1.996],[1.996,0.021],[-0.02,1.996],[-1.996,-0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[367.319,201.529],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 158","np":2,"cix":2,"bm":0,"ix":158,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.268,-0.013],[0.014,-1.268],[1.269,0.013],[-0.014,1.269]],"o":[[1.269,0.013],[-0.012,1.268],[-1.267,-0.012],[0.012,-1.268]],"v":[[0.023,-2.297],[2.296,0.023],[-0.024,2.296],[-2.296,-0.023]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[367.499,183.909],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 159","np":2,"cix":2,"bm":0,"ix":159,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.435,-0.015],[0.015,-1.436],[1.435,0.014],[-0.016,1.435]],"o":[[1.435,0.015],[-0.014,1.434],[-1.435,-0.015],[0.015,-1.435]],"v":[[0.027,-2.598],[2.598,0.027],[-0.026,2.598],[-2.597,-0.027]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[367.678,166.288],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 160","np":2,"cix":2,"bm":0,"ix":160,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.601,-0.017],[0.017,-1.601],[1.601,0.016],[-0.015,1.602]],"o":[[1.602,0.016],[-0.016,1.601],[-1.601,-0.016],[0.017,-1.601]],"v":[[0.029,-2.899],[2.899,0.031],[-0.031,2.9],[-2.901,-0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[367.86,148.667],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 161","np":2,"cix":2,"bm":0,"ix":161,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.768,-0.018],[0.018,-1.768],[1.767,0.018],[-0.018,1.768]],"o":[[1.768,0.018],[-0.019,1.767],[-1.768,-0.018],[0.018,-1.767]],"v":[[0.033,-3.2],[3.201,0.033],[-0.032,3.2],[-3.2,-0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.039,131.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 162","np":2,"cix":2,"bm":0,"ix":162,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.934,-0.02],[0.02,-1.933],[1.933,0.019],[-0.02,1.933]],"o":[[1.935,0.02],[-0.02,1.934],[-1.934,-0.02],[0.019,-1.934]],"v":[[0.036,-3.501],[3.501,0.036],[-0.036,3.502],[-3.502,-0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.219,113.426],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 163","np":2,"cix":2,"bm":0,"ix":163,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.101,-0.021],[0.021,-2.1],[2.1,0.022],[-0.021,2.1]],"o":[[2.101,0.021],[-0.022,2.1],[-2.1,-0.021],[0.022,-2.1]],"v":[[0.039,-3.803],[3.803,0.038],[-0.039,3.802],[-3.803,-0.039]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.399,95.806],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 164","np":2,"cix":2,"bm":0,"ix":164,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.267,-0.023],[0.024,-2.267],[2.267,0.023],[-0.023,2.267]],"o":[[2.267,0.023],[-0.023,2.266],[-2.267,-0.023],[0.024,-2.267]],"v":[[0.042,-4.104],[4.103,0.042],[-0.041,4.104],[-4.105,-0.042]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.579,78.185],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 165","np":2,"cix":2,"bm":0,"ix":165,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.433,-0.025],[0.025,-2.433],[2.433,0.025],[-0.026,2.433]],"o":[[2.433,0.024],[-0.025,2.433],[-2.433,-0.025],[0.024,-2.433]],"v":[[0.046,-4.405],[4.406,0.045],[-0.044,4.405],[-4.404,-0.045]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.759,60.564],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 166","np":2,"cix":2,"bm":0,"ix":166,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.599,-0.026],[0.027,-2.6],[2.6,0.026],[-0.026,2.599]],"o":[[2.6,0.027],[-0.027,2.599],[-2.599,-0.027],[0.026,-2.6]],"v":[[0.047,-4.707],[4.706,0.048],[-0.049,4.706],[-4.707,-0.048]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.498,0.498,0.498,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":[368.94,42.943],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 167","np":2,"cix":2,"bm":0,"ix":167,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":923.076037597656,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Слой 3 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-97.103,"s":[43.691,675.382,0],"to":[278,0,0],"ti":[-278,-0.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49.151,"s":[1711.691,675.382,0],"to":[278,0.667,0],"ti":[0,-0.667,0]},{"t":139.060805664062,"s":[1711.691,679.382,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[205.893,99.212,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.012],[-0.013,-1.715],[1.715,-0.013],[0.012,1.715]],"o":[[1.715,-0.013],[0.012,1.715],[-1.715,0.012],[-0.013,-1.715]],"v":[[-0.022,-3.104],[3.105,-0.022],[0.022,3.105],[-3.104,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[3.367,133.624],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.517,0.011],[-0.011,-1.516],[1.517,-0.01],[0.011,1.515]],"o":[[1.516,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.516]],"v":[[-0.019,-2.745],[2.745,-0.018],[0.019,2.745],[-2.745,0.021]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[34.412,154.463],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.012],[-0.012,-1.715],[1.715,-0.012],[0.012,1.714]],"o":[[1.714,-0.012],[0.013,1.714],[-1.714,0.013],[-0.013,-1.715]],"v":[[-0.021,-3.105],[3.105,-0.022],[0.022,3.104],[-3.104,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[34.263,133.406],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.013],[-0.013,-1.913],[1.913,-0.014],[0.013,1.914]],"o":[[1.914,-0.014],[0.014,1.915],[-1.914,0.013],[-0.014,-1.913]],"v":[[-0.025,-3.464],[3.464,-0.025],[0.025,3.465],[-3.464,0.024]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[34.114,112.348],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.516],[1.516,-0.01],[0.011,1.515]],"o":[[1.516,-0.011],[0.01,1.516],[-1.517,0.011],[-0.01,-1.516]],"v":[[-0.019,-2.745],[2.745,-0.019],[0.02,2.745],[-2.745,0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[65.307,154.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.013],[-0.012,-1.715],[1.715,-0.013],[0.013,1.715]],"o":[[1.715,-0.012],[0.013,1.715],[-1.715,0.012],[-0.012,-1.715]],"v":[[-0.022,-3.105],[3.104,-0.022],[0.022,3.105],[-3.105,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[65.159,133.188],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.914,0.014],[-0.013,-1.914],[1.913,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.013,1.914],[-1.913,0.013],[-0.014,-1.914]],"v":[[-0.024,-3.464],[3.465,-0.024],[0.025,3.465],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[65.01,112.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.016],[-0.016,-2.112],[2.112,-0.014],[0.015,2.112]],"o":[[2.112,-0.015],[0.014,2.112],[-2.113,0.015],[-0.015,-2.112]],"v":[[-0.026,-3.825],[3.826,-0.026],[0.028,3.825],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[64.861,91.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.119,-0.008],[0.009,1.118],[-1.118,0.008],[-0.008,-1.118]],"o":[[-1.118,0.009],[-0.008,-1.118],[1.118,-0.008],[0.008,1.119]],"v":[[0.014,2.024],[-2.025,0.014],[-0.014,-2.025],[2.025,-0.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[96.501,196.142],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.317,0.01],[-0.008,-1.317],[1.317,-0.009],[0.01,1.317]],"o":[[1.317,-0.009],[0.01,1.318],[-1.317,0.009],[-0.009,-1.317]],"v":[[-0.017,-2.385],[2.384,-0.017],[0.017,2.385],[-2.385,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[96.352,175.084],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.01,-1.517],[1.516,-0.01],[0.011,1.516]],"o":[[1.516,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.516]],"v":[[-0.019,-2.745],[2.745,-0.018],[0.02,2.745],[-2.745,0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[96.203,154.026],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.012],[-0.013,-1.715],[1.715,-0.013],[0.013,1.715]],"o":[[1.715,-0.013],[0.012,1.715],[-1.715,0.012],[-0.012,-1.715]],"v":[[-0.022,-3.104],[3.105,-0.022],[0.022,3.105],[-3.105,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[96.054,132.969],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.014],[-0.013,-1.913],[1.914,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.014,1.914],[-1.913,0.013],[-0.013,-1.913]],"v":[[-0.025,-3.465],[3.464,-0.025],[0.024,3.466],[-3.465,0.024]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[95.906,111.911],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.015,-2.111],[2.112,-0.014],[0.016,2.112]],"o":[[2.112,-0.015],[0.014,2.112],[-2.113,0.016],[-0.015,-2.113]],"v":[[-0.026,-3.825],[3.826,-0.027],[0.028,3.823],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[95.756,90.854],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.312,0.017],[-0.017,-2.31],[2.31,-0.015],[0.016,2.31]],"o":[[2.311,-0.016],[0.016,2.312],[-2.312,0.017],[-0.016,-2.312]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.185,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[95.608,69.797],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.118,-0.008],[0.008,1.118],[-1.118,0.008],[-0.008,-1.118]],"o":[[-1.118,0.008],[-0.008,-1.118],[1.119,-0.008],[0.009,1.118]],"v":[[0.014,2.025],[-2.025,0.014],[-0.015,-2.025],[2.024,-0.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[127.397,195.923],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.316,0.009],[-0.009,-1.316],[1.318,-0.01],[0.009,1.318]],"o":[[1.317,-0.01],[0.009,1.318],[-1.317,0.008],[-0.01,-1.317]],"v":[[-0.017,-2.384],[2.385,-0.017],[0.017,2.386],[-2.384,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[127.248,174.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.516],[1.516,-0.01],[0.011,1.515]],"o":[[1.517,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.516]],"v":[[-0.02,-2.745],[2.745,-0.018],[0.019,2.745],[-2.745,0.021]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[127.099,153.808],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.714,0.012],[-0.012,-1.715],[1.715,-0.012],[0.012,1.714]],"o":[[1.715,-0.012],[0.012,1.714],[-1.715,0.013],[-0.013,-1.715]],"v":[[-0.022,-3.105],[3.105,-0.022],[0.022,3.104],[-3.104,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.95,132.751],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.013],[-0.013,-1.913],[1.914,-0.014],[0.012,1.914]],"o":[[1.914,-0.014],[0.014,1.915],[-1.913,0.013],[-0.014,-1.913]],"v":[[-0.025,-3.464],[3.464,-0.025],[0.024,3.465],[-3.464,0.024]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.802,111.693],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.015,-2.112],[2.112,-0.014],[0.015,2.112]],"o":[[2.112,-0.015],[0.015,2.112],[-2.113,0.015],[-0.016,-2.113]],"v":[[-0.027,-3.825],[3.825,-0.026],[0.028,3.825],[-3.824,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.652,90.636],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.017],[-0.016,-2.31],[2.31,-0.016],[0.015,2.31]],"o":[[2.312,-0.017],[0.016,2.312],[-2.312,0.016],[-0.017,-2.312]],"v":[[-0.029,-4.184],[4.185,-0.03],[0.03,4.185],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.503,69.578],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.019],[-0.018,-2.51],[2.51,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.018],[-0.018,-2.51]],"v":[[-0.032,-4.545],[4.544,-0.032],[0.031,4.544],[-4.545,0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.355,48.521],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.02],[-0.019,-2.709],[2.709,-0.019],[0.018,2.708]],"o":[[2.709,-0.02],[0.019,2.708],[-2.709,0.019],[-0.02,-2.709]],"v":[[-0.034,-4.904],[4.905,-0.034],[0.035,4.905],[-4.903,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[126.206,27.463],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.118,-0.008],[0.008,1.119],[-1.118,0.009],[-0.008,-1.118]],"o":[[-1.118,0.008],[-0.008,-1.118],[1.118,-0.008],[0.008,1.118]],"v":[[0.014,2.025],[-2.025,0.014],[-0.014,-2.025],[2.025,-0.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[158.293,195.704],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.317,0.01],[-0.009,-1.317],[1.318,-0.01],[0.01,1.318]],"o":[[1.316,-0.009],[0.009,1.317],[-1.316,0.009],[-0.01,-1.316]],"v":[[-0.016,-2.385],[2.385,-0.017],[0.017,2.385],[-2.384,0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[158.143,174.647],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.013],[-0.012,-1.715],[1.714,-0.013],[0.012,1.715]],"o":[[1.714,-0.012],[0.013,1.715],[-1.715,0.012],[-0.012,-1.715]],"v":[[-0.022,-3.105],[3.104,-0.022],[0.022,3.105],[-3.105,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.846,132.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.914,0.014],[-0.013,-1.914],[1.913,-0.013],[0.013,1.913]],"o":[[1.913,-0.014],[0.014,1.914],[-1.914,0.013],[-0.014,-1.914]],"v":[[-0.024,-3.464],[3.464,-0.024],[0.025,3.465],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.697,111.474],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.016,-2.112],[2.112,-0.014],[0.015,2.111]],"o":[[2.111,-0.016],[0.014,2.112],[-2.113,0.015],[-0.015,-2.113]],"v":[[-0.026,-3.824],[3.826,-0.026],[0.028,3.824],[-3.825,0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.548,90.417],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.017],[-0.017,-2.311],[2.311,-0.016],[0.016,2.311]],"o":[[2.312,-0.017],[0.015,2.311],[-2.311,0.017],[-0.017,-2.311]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.399,69.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.51,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.033,-4.544],[4.544,-0.032],[0.031,4.545],[-4.545,0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.251,48.302],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.708,0.02],[-0.019,-2.709],[2.709,-0.02],[0.018,2.709]],"o":[[2.709,-0.019],[0.02,2.709],[-2.708,0.018],[-0.02,-2.709]],"v":[[-0.035,-4.905],[4.904,-0.034],[0.034,4.906],[-4.904,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[157.102,27.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.118,-0.008],[0.008,1.118],[-1.118,0.008],[-0.008,-1.118]],"o":[[-1.118,0.008],[-0.008,-1.118],[1.118,-0.008],[0.008,1.118]],"v":[[0.015,2.024],[-2.024,0.014],[-0.014,-2.025],[2.024,-0.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[191.744,195.926],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.316,0.01],[-0.009,-1.317],[1.318,-0.009],[0.009,1.318]],"o":[[1.317,-0.009],[0.009,1.318],[-1.317,0.009],[-0.01,-1.316]],"v":[[-0.017,-2.385],[2.385,-0.017],[0.017,2.385],[-2.384,0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[191.595,174.869],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.517],[1.516,-0.01],[0.011,1.515]],"o":[[1.517,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.516]],"v":[[-0.02,-2.745],[2.745,-0.018],[0.019,2.745],[-2.745,0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[191.447,153.811],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.013],[-0.013,-1.715],[1.715,-0.013],[0.012,1.715]],"o":[[1.715,-0.012],[0.012,1.715],[-1.715,0.012],[-0.013,-1.715]],"v":[[-0.022,-3.105],[3.105,-0.022],[0.022,3.105],[-3.104,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[191.298,132.754],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.014],[-0.013,-1.914],[1.914,-0.014],[0.012,1.913]],"o":[[1.914,-0.014],[0.014,1.914],[-1.913,0.012],[-0.014,-1.913]],"v":[[-0.025,-3.464],[3.464,-0.024],[0.024,3.466],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[191.149,111.696],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.015,-2.112],[2.111,-0.014],[0.015,2.112]],"o":[[2.112,-0.016],[0.014,2.112],[-2.113,0.016],[-0.016,-2.113]],"v":[[-0.026,-3.824],[3.826,-0.027],[0.029,3.824],[-3.824,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[190.999,90.639],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.017],[-0.016,-2.311],[2.31,-0.016],[0.015,2.311]],"o":[[2.312,-0.016],[0.016,2.311],[-2.312,0.017],[-0.017,-2.311]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.184,0.029]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[190.851,69.582],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.018,-2.511],[2.51,-0.018],[0.019,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.032,-4.544],[4.544,-0.031],[0.031,4.545],[-4.546,0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[190.703,48.524],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.019],[-0.019,-2.709],[2.709,-0.02],[0.019,2.709]],"o":[[2.709,-0.02],[0.019,2.709],[-2.709,0.018],[-0.019,-2.709]],"v":[[-0.034,-4.904],[4.905,-0.035],[0.035,4.905],[-4.905,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[190.553,27.467],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.907,0.021],[-0.021,-2.909],[2.907,-0.021],[0.021,2.907]],"o":[[2.907,-0.021],[0.02,2.907],[-2.907,0.021],[-0.02,-2.907]],"v":[[-0.037,-5.265],[5.265,-0.036],[0.037,5.265],[-5.265,0.037]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[190.404,6.41],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.118,-0.008],[0.008,1.118],[-1.118,0.008],[-0.008,-1.118]],"o":[[-1.118,0.008],[-0.008,-1.118],[1.118,-0.008],[0.008,1.118]],"v":[[0.014,2.025],[-2.025,0.014],[-0.014,-2.025],[2.025,-0.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[222.64,195.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.317,0.009],[-0.009,-1.316],[1.318,-0.009],[0.009,1.317]],"o":[[1.316,-0.01],[0.009,1.318],[-1.317,0.009],[-0.01,-1.317]],"v":[[-0.016,-2.384],[2.385,-0.017],[0.017,2.385],[-2.384,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[222.491,174.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.517,0.011],[-0.011,-1.516],[1.517,-0.01],[0.011,1.515]],"o":[[1.516,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.517]],"v":[[-0.019,-2.745],[2.745,-0.018],[0.019,2.745],[-2.745,0.021]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[222.342,153.593],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.012],[-0.012,-1.714],[1.715,-0.012],[0.012,1.715]],"o":[[1.714,-0.013],[0.013,1.715],[-1.714,0.012],[-0.013,-1.714]],"v":[[-0.021,-3.104],[3.105,-0.022],[0.022,3.105],[-3.104,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[222.194,132.535],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.014],[-0.013,-1.913],[1.913,-0.014],[0.013,1.914]],"o":[[1.914,-0.013],[0.014,1.914],[-1.914,0.013],[-0.014,-1.913]],"v":[[-0.025,-3.465],[3.464,-0.025],[0.025,3.465],[-3.464,0.024]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[222.045,111.478],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.111,0.015],[-0.015,-2.112],[2.112,-0.015],[0.015,2.112]],"o":[[2.112,-0.015],[0.015,2.112],[-2.113,0.015],[-0.015,-2.113]],"v":[[-0.027,-3.825],[3.824,-0.026],[0.027,3.825],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[221.896,90.421],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.016],[-0.017,-2.31],[2.31,-0.015],[0.016,2.31]],"o":[[2.312,-0.017],[0.015,2.312],[-2.312,0.017],[-0.017,-2.312]],"v":[[-0.029,-4.184],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[221.747,69.363],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.51,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.033,-4.544],[4.544,-0.031],[0.031,4.545],[-4.545,0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[221.599,48.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.708,0.019],[-0.019,-2.708],[2.709,-0.02],[0.018,2.709]],"o":[[2.709,-0.02],[0.02,2.709],[-2.708,0.019],[-0.02,-2.708]],"v":[[-0.035,-4.904],[4.904,-0.035],[0.034,4.905],[-4.904,0.034]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[221.449,27.248],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.317,0.009],[-0.008,-1.317],[1.318,-0.01],[0.01,1.318]],"o":[[1.317,-0.01],[0.01,1.317],[-1.316,0.008],[-0.009,-1.317]],"v":[[-0.017,-2.384],[2.384,-0.016],[0.016,2.386],[-2.385,0.017]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[253.387,174.431],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.516],[1.516,-0.01],[0.011,1.515]],"o":[[1.516,-0.011],[0.01,1.515],[-1.517,0.011],[-0.01,-1.516]],"v":[[-0.019,-2.745],[2.745,-0.019],[0.02,2.745],[-2.745,0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[253.238,153.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.914,0.014],[-0.013,-1.913],[1.913,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.013,1.915],[-1.913,0.013],[-0.014,-1.914]],"v":[[-0.024,-3.464],[3.465,-0.025],[0.025,3.465],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.94,111.259],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.016],[-0.016,-2.112],[2.112,-0.014],[0.015,2.112]],"o":[[2.112,-0.015],[0.014,2.112],[-2.113,0.015],[-0.015,-2.113]],"v":[[-0.026,-3.825],[3.826,-0.026],[0.028,3.825],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.791,90.202],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.312,0.017],[-0.017,-2.311],[2.311,-0.016],[0.016,2.311]],"o":[[2.311,-0.017],[0.016,2.311],[-2.311,0.017],[-0.017,-2.311]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.642,69.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.51,-0.019],[0.018,2.51]],"o":[[2.51,-0.019],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.032,-4.544],[4.544,-0.031],[0.031,4.546],[-4.545,0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.494,48.087],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.02],[-0.018,-2.709],[2.708,-0.019],[0.019,2.708]],"o":[[2.708,-0.019],[0.02,2.708],[-2.709,0.019],[-0.02,-2.709]],"v":[[-0.034,-4.905],[4.904,-0.034],[0.035,4.905],[-4.904,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.345,27.03],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.908,0.021],[-0.021,-2.908],[2.907,-0.02],[0.021,2.907]],"o":[[2.907,-0.021],[0.02,2.908],[-2.907,0.021],[-0.02,-2.908]],"v":[[-0.036,-5.264],[5.264,-0.037],[0.038,5.264],[-5.264,0.038]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[252.196,5.973],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.118,-0.008],[0.009,1.118],[-1.118,0.008],[-0.008,-1.118]],"o":[[-1.119,0.008],[-0.008,-1.118],[1.118,-0.008],[0.008,1.118]],"v":[[0.015,2.024],[-2.025,0.014],[-0.014,-2.025],[2.025,-0.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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.431,195.271],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.316,0.01],[-0.008,-1.317],[1.317,-0.009],[0.01,1.318]],"o":[[1.317,-0.009],[0.01,1.318],[-1.317,0.009],[-0.009,-1.316]],"v":[[-0.017,-2.385],[2.384,-0.017],[0.017,2.385],[-2.385,0.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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.283,174.214],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.517],[1.516,-0.01],[0.011,1.516]],"o":[[1.516,-0.011],[0.009,1.515],[-1.516,0.011],[-0.01,-1.516]],"v":[[-0.019,-2.745],[2.746,-0.018],[0.02,2.745],[-2.745,0.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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.133,153.156],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 62","np":2,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.013],[-0.013,-1.715],[1.715,-0.013],[0.013,1.715]],"o":[[1.715,-0.012],[0.012,1.715],[-1.715,0.012],[-0.012,-1.715]],"v":[[-0.022,-3.105],[3.105,-0.022],[0.022,3.105],[-3.105,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.985,132.099],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.014],[-0.013,-1.914],[1.914,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.014,1.914],[-1.913,0.012],[-0.013,-1.913]],"v":[[-0.025,-3.464],[3.464,-0.024],[0.024,3.466],[-3.465,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.837,111.041],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.015,-2.112],[2.112,-0.014],[0.016,2.112]],"o":[[2.112,-0.016],[0.014,2.112],[-2.113,0.016],[-0.015,-2.113]],"v":[[-0.026,-3.824],[3.826,-0.027],[0.028,3.824],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.687,89.984],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.312,0.017],[-0.017,-2.311],[2.31,-0.016],[0.016,2.31]],"o":[[2.311,-0.016],[0.016,2.311],[-2.312,0.017],[-0.016,-2.312]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.185,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.539,68.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.511],[2.51,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.032,-4.544],[4.544,-0.031],[0.032,4.545],[-4.545,0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.39,47.869],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 67","np":2,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.019],[-0.018,-2.708],[2.708,-0.02],[0.019,2.709]],"o":[[2.708,-0.02],[0.02,2.709],[-2.709,0.018],[-0.019,-2.708]],"v":[[-0.034,-4.904],[4.904,-0.035],[0.035,4.905],[-4.905,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.241,26.811],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.907,0.021],[-0.021,-2.908],[2.907,-0.021],[0.021,2.907]],"o":[[2.907,-0.021],[0.02,2.907],[-2.907,0.021],[-0.02,-2.907]],"v":[[-0.037,-5.265],[5.265,-0.036],[0.037,5.265],[-5.265,0.037]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.092,5.754],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 69","np":2,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.516,0.011],[-0.011,-1.516],[1.516,-0.01],[0.011,1.515]],"o":[[1.517,-0.011],[0.01,1.515],[-1.516,0.011],[-0.01,-1.517]],"v":[[-0.02,-2.745],[2.745,-0.018],[0.019,2.745],[-2.745,0.021]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[315.03,152.937],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 70","np":2,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.714,0.012],[-0.012,-1.714],[1.715,-0.012],[0.012,1.715]],"o":[[1.715,-0.013],[0.012,1.715],[-1.715,0.013],[-0.013,-1.714]],"v":[[-0.022,-3.105],[3.105,-0.023],[0.022,3.104],[-3.104,0.021]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.881,131.88],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 71","np":2,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.913,0.014],[-0.013,-1.913],[1.914,-0.014],[0.012,1.914]],"o":[[1.914,-0.013],[0.014,1.914],[-1.913,0.013],[-0.014,-1.913]],"v":[[-0.025,-3.465],[3.464,-0.025],[0.024,3.465],[-3.464,0.024]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.732,110.823],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 72","np":2,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.015,-2.112],[2.112,-0.015],[0.015,2.112]],"o":[[2.112,-0.015],[0.015,2.112],[-2.113,0.015],[-0.016,-2.113]],"v":[[-0.027,-3.825],[3.825,-0.026],[0.028,3.825],[-3.824,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.583,89.766],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 73","np":2,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.016],[-0.016,-2.31],[2.31,-0.015],[0.015,2.31]],"o":[[2.312,-0.017],[0.016,2.312],[-2.312,0.017],[-0.017,-2.312]],"v":[[-0.029,-4.184],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.434,68.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 74","np":2,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.018,-2.51],[2.51,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.018,-2.51]],"v":[[-0.032,-4.544],[4.544,-0.031],[0.031,4.545],[-4.545,0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.286,47.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 75","np":2,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.019],[-0.019,-2.708],[2.709,-0.02],[0.018,2.709]],"o":[[2.709,-0.02],[0.019,2.709],[-2.709,0.019],[-0.02,-2.708]],"v":[[-0.034,-4.904],[4.905,-0.035],[0.035,4.905],[-4.903,0.034]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.136,26.593],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 76","np":2,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.907,0.021],[-0.021,-2.908],[2.908,-0.02],[0.022,2.907]],"o":[[2.907,-0.021],[0.02,2.907],[-2.907,0.021],[-0.02,-2.907]],"v":[[-0.037,-5.265],[5.265,-0.036],[0.037,5.265],[-5.265,0.037]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[313.987,5.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 77","np":2,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.715,0.013],[-0.012,-1.715],[1.714,-0.012],[0.012,1.715]],"o":[[1.714,-0.012],[0.013,1.715],[-1.715,0.013],[-0.012,-1.715]],"v":[[-0.022,-3.105],[3.104,-0.022],[0.022,3.104],[-3.105,0.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.777,131.662],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 78","np":2,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.914,0.014],[-0.012,-1.913],[1.913,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.014,1.915],[-1.914,0.013],[-0.014,-1.914]],"v":[[-0.024,-3.464],[3.464,-0.025],[0.025,3.465],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.628,110.604],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 79","np":2,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.016],[-0.016,-2.112],[2.112,-0.014],[0.015,2.112]],"o":[[2.111,-0.015],[0.014,2.112],[-2.113,0.015],[-0.015,-2.113]],"v":[[-0.026,-3.825],[3.826,-0.026],[0.028,3.825],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.479,89.547],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 80","np":2,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.017],[-0.017,-2.311],[2.311,-0.016],[0.016,2.311]],"o":[[2.312,-0.017],[0.015,2.311],[-2.311,0.017],[-0.017,-2.311]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.33,68.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 81","np":2,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.51,-0.019],[0.018,2.51]],"o":[[2.51,-0.019],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.033,-4.544],[4.544,-0.031],[0.031,4.546],[-4.545,0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.182,47.432],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 82","np":2,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.708,0.02],[-0.019,-2.709],[2.709,-0.019],[0.018,2.708]],"o":[[2.709,-0.019],[0.02,2.708],[-2.708,0.019],[-0.02,-2.709]],"v":[[-0.035,-4.905],[4.904,-0.034],[0.034,4.905],[-4.904,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[345.032,26.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 83","np":2,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.914,0.014],[-0.013,-1.914],[1.913,-0.014],[0.013,1.913]],"o":[[1.913,-0.014],[0.013,1.914],[-1.913,0.012],[-0.014,-1.913]],"v":[[-0.024,-3.464],[3.465,-0.024],[0.025,3.466],[-3.464,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[376.523,110.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 84","np":2,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.112,0.015],[-0.016,-2.112],[2.112,-0.014],[0.015,2.112]],"o":[[2.112,-0.016],[0.014,2.112],[-2.113,0.016],[-0.015,-2.113]],"v":[[-0.026,-3.824],[3.826,-0.027],[0.028,3.824],[-3.825,0.028]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[376.374,89.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 85","np":2,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.312,0.017],[-0.017,-2.311],[2.311,-0.016],[0.016,2.31]],"o":[[2.311,-0.016],[0.016,2.311],[-2.311,0.017],[-0.017,-2.312]],"v":[[-0.029,-4.185],[4.185,-0.03],[0.03,4.184],[-4.184,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[376.225,68.272],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 86","np":2,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.511,-0.018],[0.018,2.51]],"o":[[2.51,-0.018],[0.018,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.032,-4.544],[4.544,-0.031],[0.031,4.545],[-4.545,0.032]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[376.077,47.214],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 87","np":2,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.709,0.019],[-0.018,-2.708],[2.708,-0.02],[0.019,2.709]],"o":[[2.708,-0.02],[0.02,2.709],[-2.709,0.018],[-0.02,-2.708]],"v":[[-0.034,-4.904],[4.904,-0.035],[0.035,4.905],[-4.904,0.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[375.928,26.156],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 88","np":2,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.311,0.016],[-0.017,-2.31],[2.31,-0.016],[0.016,2.31]],"o":[[2.312,-0.017],[0.016,2.312],[-2.312,0.016],[-0.016,-2.312]],"v":[[-0.029,-4.184],[4.185,-0.03],[0.03,4.185],[-4.185,0.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[407.122,68.053],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 89","np":2,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.51,0.018],[-0.017,-2.51],[2.51,-0.018],[0.019,2.51]],"o":[[2.51,-0.018],[0.019,2.509],[-2.509,0.017],[-0.017,-2.51]],"v":[[-0.032,-4.544],[4.543,-0.031],[0.031,4.545],[-4.546,0.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[406.973,46.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 90","np":2,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false}],"ip":-97.1028039550781,"op":921.877237548828,"st":-97.1028039550781,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Слой 4 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-61.139,"s":[-22.929,562.418,0],"to":[303,0,0],"ti":[-303,0,0]},{"t":100.699204101563,"s":[1795.071,562.418,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[230.565,123.569,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.055,1.906]],"o":[[1.906,0.055],[-0.055,1.906],[-1.906,-0.054],[0.054,-1.907]],"v":[[0.098,-3.452],[3.452,0.099],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[3.756,163.048],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.067],[0.067,-2.348],[2.348,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.252],[-4.253,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[5.086,116.229],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.036,1.243],[-1.243,-0.035],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.035],[-0.036,1.244]],"v":[[-0.063,2.251],[-2.25,-0.064],[0.065,-2.251],[2.251,0.063]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[36.107,234.252],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.042],[0.041,-1.465],[1.464,0.042],[-0.041,1.465]],"o":[[1.464,0.041],[-0.042,1.463],[-1.464,-0.041],[0.042,-1.464]],"v":[[0.076,-2.651],[2.652,0.076],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[36.773,210.843],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.686],[1.685,0.048],[-0.048,1.685]],"o":[[1.686,0.048],[-0.048,1.684],[-1.685,-0.048],[0.048,-1.685]],"v":[[0.087,-3.051],[3.052,0.087],[-0.086,3.051],[-3.051,-0.087]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[37.438,187.433],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.054,1.906]],"o":[[1.906,0.055],[-0.054,1.906],[-1.907,-0.054],[0.054,-1.907]],"v":[[0.099,-3.452],[3.452,0.099],[-0.098,3.451],[-3.452,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[38.103,164.023],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.127]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[38.768,140.614],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.348],[2.348,0.066],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.067],[0.067,-2.348]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.252],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[39.433,117.205],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.035,1.243],[-1.243,-0.035],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.036,-1.244],[1.243,0.035],[-0.035,1.244]],"v":[[-0.064,2.251],[-2.251,-0.063],[0.064,-2.251],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[70.455,235.228],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.686],[1.685,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.685],[-1.685,-0.048],[0.048,-1.685]],"v":[[0.087,-3.051],[3.051,0.087],[-0.086,3.052],[-3.051,-0.087]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[71.785,188.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.055],[0.054,-1.906],[1.906,0.055],[-0.055,1.906]],"o":[[1.906,0.054],[-0.055,1.906],[-1.906,-0.053],[0.054,-1.906]],"v":[[0.098,-3.451],[3.452,0.098],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[72.45,164.999],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.06],[0.06,-2.127],[2.127,0.061],[-0.06,2.128]],"o":[[2.127,0.061],[-0.06,2.128],[-2.127,-0.059],[0.06,-2.127]],"v":[[0.11,-3.852],[3.852,0.109],[-0.109,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[73.115,141.59],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.349],[2.348,0.066],[-0.066,2.348]],"o":[[2.348,0.067],[-0.067,2.348],[-2.348,-0.067],[0.067,-2.348]],"v":[[0.121,-4.252],[4.251,0.121],[-0.121,4.252],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[73.78,118.18],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.569,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.132,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[74.445,94.771],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.036,1.243],[-1.243,-0.035],[0.036,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.036],[-0.035,1.244]],"v":[[-0.063,2.251],[-2.25,-0.063],[0.065,-2.251],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[104.801,236.204],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.041],[0.041,-1.464],[1.464,0.041],[-0.041,1.464]],"o":[[1.464,0.042],[-0.042,1.463],[-1.464,-0.042],[0.042,-1.465]],"v":[[0.076,-2.652],[2.652,0.076],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[105.466,212.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.684]],"o":[[1.685,0.048],[-0.048,1.685],[-1.685,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.052,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[106.132,189.384],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.055],[0.054,-1.905],[1.906,0.055],[-0.054,1.906]],"o":[[1.906,0.054],[-0.054,1.906],[-1.907,-0.053],[0.054,-1.907]],"v":[[0.099,-3.451],[3.452,0.098],[-0.098,3.451],[-3.452,-0.097]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[106.796,165.975],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.128],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.128]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[107.462,142.566],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.349],[2.348,0.066],[-0.066,2.347]],"o":[[2.348,0.067],[-0.067,2.348],[-2.349,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.121],[-0.121,4.252],[-4.253,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[108.127,119.156],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.072],[0.073,-2.569],[2.57,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.568,-0.073],[0.073,-2.569]],"v":[[0.132,-4.653],[4.652,0.132],[-0.133,4.651],[-4.652,-0.133]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[108.792,95.747],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.79],[2.79,0.08],[-0.079,2.791]],"o":[[2.79,0.079],[-0.08,2.791],[-2.79,-0.079],[0.08,-2.79]],"v":[[0.144,-5.053],[5.053,0.142],[-0.143,5.051],[-5.052,-0.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[109.457,72.337],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.036],[-0.035,1.243],[-1.243,-0.036],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.035],[-0.035,1.244]],"v":[[-0.064,2.25],[-2.251,-0.063],[0.064,-2.25],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[139.148,237.18],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.041],[0.042,-1.464],[1.463,0.041],[-0.042,1.464]],"o":[[1.464,0.042],[-0.042,1.464],[-1.465,-0.042],[0.041,-1.464]],"v":[[0.075,-2.652],[2.651,0.076],[-0.075,2.651],[-2.651,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[139.814,213.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.686,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.685],[-1.686,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.051,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[140.478,190.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.055,1.906]],"o":[[1.906,0.054],[-0.055,1.906],[-1.906,-0.054],[0.054,-1.907]],"v":[[0.098,-3.452],[3.452,0.099],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[141.144,166.951],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.128,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.127]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[141.809,143.541],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.067],[0.067,-2.348],[2.348,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.252],[-4.253,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[142.474,120.132],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.072],[0.073,-2.568],[2.569,0.072],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.653],[4.652,0.132],[-0.132,4.653],[-4.652,-0.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[143.139,96.722],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.791],[2.79,0.08],[-0.079,2.79]],"o":[[2.791,0.079],[-0.079,2.79],[-2.79,-0.079],[0.079,-2.79]],"v":[[0.143,-5.053],[5.052,0.144],[-0.144,5.051],[-5.052,-0.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[143.804,73.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.085],[0.086,-3.011],[3.011,0.086],[-0.086,3.011]],"o":[[3.011,0.086],[-0.085,3.011],[-3.011,-0.085],[0.086,-3.012]],"v":[[0.155,-5.453],[5.452,0.155],[-0.155,5.452],[-5.452,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[144.469,49.903],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.036,1.243],[-1.243,-0.035],[0.036,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.244,0.035],[-0.035,1.244]],"v":[[-0.063,2.251],[-2.25,-0.064],[0.063,-2.251],[2.25,0.063]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[173.495,238.156],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.042],[0.041,-1.464],[1.464,0.042],[-0.041,1.465]],"o":[[1.464,0.041],[-0.042,1.464],[-1.464,-0.042],[0.042,-1.464]],"v":[[0.076,-2.651],[2.652,0.075],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[174.16,214.746],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.054,1.906]],"o":[[1.906,0.055],[-0.054,1.906],[-1.907,-0.054],[0.054,-1.907]],"v":[[0.099,-3.452],[3.451,0.099],[-0.098,3.451],[-3.452,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[175.49,167.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.127]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[176.156,144.517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.348],[2.349,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.251],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[176.821,121.108],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.57,0.073],[-0.073,2.569]],"o":[[2.569,0.072],[-0.073,2.569],[-2.568,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.133,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[177.486,97.698],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.08],[0.079,-2.79],[2.79,0.079],[-0.079,2.79]],"o":[[2.79,0.079],[-0.08,2.79],[-2.79,-0.08],[0.08,-2.79]],"v":[[0.144,-5.052],[5.053,0.143],[-0.144,5.052],[-5.053,-0.144]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[178.151,74.288],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.085],[0.086,-3.01],[3.012,0.085],[-0.085,3.011]],"o":[[3.011,0.086],[-0.085,3.012],[-3.011,-0.086],[0.086,-3.012]],"v":[[0.155,-5.453],[5.452,0.155],[-0.156,5.452],[-5.453,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[178.816,50.879],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.035,1.243],[-1.243,-0.035],[0.036,-1.243]],"o":[[-1.243,-0.035],[0.036,-1.244],[1.243,0.035],[-0.035,1.244]],"v":[[-0.064,2.251],[-2.251,-0.063],[0.064,-2.251],[2.25,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[210.666,239.721],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.041],[0.041,-1.464],[1.464,0.041],[-0.041,1.464]],"o":[[1.464,0.042],[-0.042,1.463],[-1.464,-0.042],[0.042,-1.465]],"v":[[0.076,-2.652],[2.652,0.076],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[211.331,216.312],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.684]],"o":[[1.685,0.048],[-0.048,1.685],[-1.685,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.052,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[211.996,192.902],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.055],[0.054,-1.905],[1.906,0.055],[-0.054,1.906]],"o":[[1.906,0.054],[-0.054,1.906],[-1.907,-0.053],[0.054,-1.907]],"v":[[0.099,-3.451],[3.451,0.098],[-0.098,3.451],[-3.452,-0.097]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[212.661,169.492],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.128],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.06],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.128]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[213.326,146.083],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.349],[2.349,0.066],[-0.066,2.347]],"o":[[2.348,0.067],[-0.067,2.348],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.121],[-0.121,4.252],[-4.253,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[213.991,122.673],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.57,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.568,-0.073],[0.073,-2.569]],"v":[[0.132,-4.652],[4.652,0.132],[-0.133,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[214.656,99.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.79],[2.79,0.08],[-0.079,2.791]],"o":[[2.79,0.079],[-0.08,2.79],[-2.79,-0.079],[0.08,-2.79]],"v":[[0.144,-5.053],[5.053,0.142],[-0.144,5.051],[-5.053,-0.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[215.321,75.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.086],[0.086,-3.011],[3.012,0.086],[-0.085,3.012]],"o":[[3.011,0.085],[-0.085,3.011],[-3.011,-0.086],[0.086,-3.011]],"v":[[0.155,-5.452],[5.452,0.155],[-0.156,5.452],[-5.453,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[215.987,52.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.232,-0.092],[0.092,-3.233],[3.232,0.092],[-0.092,3.232]],"o":[[3.232,0.092],[-0.092,3.232],[-3.232,-0.092],[0.092,-3.232]],"v":[[0.167,-5.852],[5.853,0.167],[-0.166,5.852],[-5.853,-0.166]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[216.651,29.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.036],[-0.035,1.243],[-1.243,-0.036],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.035],[-0.036,1.244]],"v":[[-0.064,2.25],[-2.251,-0.063],[0.064,-2.25],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[245.013,240.697],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.041],[0.042,-1.464],[1.463,0.041],[-0.042,1.464]],"o":[[1.464,0.042],[-0.042,1.464],[-1.465,-0.042],[0.041,-1.464]],"v":[[0.075,-2.652],[2.651,0.076],[-0.075,2.651],[-2.651,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[245.678,217.288],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.686,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.685],[-1.686,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.051,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[246.343,193.878],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.055,1.906]],"o":[[1.906,0.054],[-0.055,1.906],[-1.906,-0.054],[0.054,-1.907]],"v":[[0.098,-3.452],[3.452,0.099],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[247.008,170.469],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.128,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.127]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[247.673,147.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.067],[0.066,-2.348],[2.348,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.252,0.12],[-0.121,4.252],[-4.252,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[248.338,123.649],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.072],[0.073,-2.568],[2.569,0.072],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.653],[4.652,0.132],[-0.132,4.653],[-4.652,-0.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[249.003,100.24],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.791],[2.79,0.08],[-0.08,2.79]],"o":[[2.791,0.079],[-0.079,2.79],[-2.79,-0.079],[0.079,-2.791]],"v":[[0.144,-5.053],[5.053,0.144],[-0.144,5.051],[-5.051,-0.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[249.668,76.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.086],[0.086,-3.011],[3.011,0.086],[-0.086,3.011]],"o":[[3.011,0.086],[-0.086,3.011],[-3.011,-0.085],[0.086,-3.012]],"v":[[0.155,-5.452],[5.452,0.155],[-0.155,5.452],[-5.452,-0.154]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[250.333,53.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.232,-0.092],[0.092,-3.233],[3.233,0.092],[-0.091,3.231]],"o":[[3.232,0.092],[-0.092,3.232],[-3.231,-0.092],[0.092,-3.233]],"v":[[0.166,-5.853],[5.852,0.167],[-0.167,5.852],[-5.853,-0.166]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[250.998,30.011],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.453,-0.099],[0.098,-3.453],[3.453,0.098],[-0.098,3.454]],"o":[[3.454,0.098],[-0.098,3.453],[-3.453,-0.098],[0.098,-3.453]],"v":[[0.178,-6.252],[6.252,0.178],[-0.178,6.253],[-6.253,-0.178]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[251.663,6.601],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.042],[0.041,-1.464],[1.464,0.042],[-0.041,1.464]],"o":[[1.464,0.041],[-0.042,1.464],[-1.464,-0.042],[0.042,-1.464]],"v":[[0.076,-2.651],[2.652,0.075],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[280.025,218.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.049,-1.686],[1.685,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.684],[-1.685,-0.048],[0.048,-1.685]],"v":[[0.087,-3.051],[3.051,0.088],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[280.69,194.853],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 62","np":2,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.06,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.06,-2.127]],"v":[[0.11,-3.852],[3.852,0.11],[-0.109,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[282.02,148.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.348],[2.348,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.251],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[282.685,124.626],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.569,0.073],[-0.073,2.569]],"o":[[2.569,0.072],[-0.073,2.569],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.132,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[283.35,101.216],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.08],[0.079,-2.79],[2.79,0.079],[-0.079,2.79]],"o":[[2.79,0.079],[-0.08,2.79],[-2.79,-0.08],[0.08,-2.79]],"v":[[0.144,-5.052],[5.053,0.143],[-0.144,5.052],[-5.053,-0.144]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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.015,77.806],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.085],[0.086,-3.01],[3.012,0.085],[-0.085,3.011]],"o":[[3.011,0.086],[-0.085,3.011],[-3.011,-0.086],[0.086,-3.012]],"v":[[0.155,-5.453],[5.452,0.155],[-0.156,5.452],[-5.453,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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.68,54.396],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 67","np":2,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.232,-0.092],[0.092,-3.232],[3.232,0.092],[-0.092,3.232]],"o":[[3.232,0.092],[-0.092,3.232],[-3.232,-0.092],[0.092,-3.233]],"v":[[0.167,-5.853],[5.853,0.167],[-0.166,5.852],[-5.853,-0.166]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[285.345,30.987],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.035,1.243],[-1.243,-0.035],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.035],[-0.036,1.244]],"v":[[-0.064,2.251],[-2.251,-0.064],[0.064,-2.251],[2.251,0.063]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[313.706,242.649],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 69","np":2,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.042],[0.042,-1.465],[1.463,0.042],[-0.041,1.465]],"o":[[1.464,0.041],[-0.042,1.463],[-1.465,-0.041],[0.042,-1.464]],"v":[[0.075,-2.651],[2.651,0.076],[-0.075,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[314.372,219.239],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 70","np":2,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.686,-0.048],[0.048,-1.686],[1.686,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.684],[-1.685,-0.048],[0.048,-1.685]],"v":[[0.087,-3.051],[3.051,0.087],[-0.087,3.052],[-3.051,-0.087]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[315.036,195.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 71","np":2,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.053,-1.906],[1.906,0.054],[-0.055,1.906]],"o":[[1.906,0.055],[-0.055,1.906],[-1.907,-0.053],[0.053,-1.907]],"v":[[0.099,-3.452],[3.452,0.099],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[315.701,172.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 72","np":2,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.128],[-2.127,-0.06],[0.061,-2.127]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[316.367,149.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 73","np":2,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.066,-2.349],[2.348,0.066],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.348],[-2.348,-0.067],[0.067,-2.348]],"v":[[0.121,-4.252],[4.252,0.121],[-0.121,4.252],[-4.252,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[317.032,125.601],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 74","np":2,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.569,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.132,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[317.697,102.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 75","np":2,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.79],[2.79,0.08],[-0.08,2.79]],"o":[[2.791,0.079],[-0.079,2.79],[-2.79,-0.08],[0.079,-2.79]],"v":[[0.144,-5.053],[5.053,0.142],[-0.144,5.051],[-5.051,-0.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[318.362,78.782],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 76","np":2,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.086],[0.086,-3.01],[3.011,0.085],[-0.086,3.011]],"o":[[3.011,0.085],[-0.086,3.012],[-3.011,-0.086],[0.085,-3.011]],"v":[[0.155,-5.452],[5.452,0.155],[-0.155,5.453],[-5.452,-0.154]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[319.027,55.372],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 77","np":2,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.232,-0.092],[0.092,-3.232],[3.233,0.092],[-0.091,3.232]],"o":[[3.232,0.092],[-0.092,3.232],[-3.232,-0.092],[0.092,-3.233]],"v":[[0.166,-5.853],[5.852,0.167],[-0.167,5.852],[-5.853,-0.166]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[319.692,31.962],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 78","np":2,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.035],[-0.035,1.243],[-1.243,-0.035],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.036,-1.244],[1.243,0.035],[-0.035,1.244]],"v":[[-0.064,2.251],[-2.251,-0.063],[0.064,-2.251],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[348.053,243.624],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 79","np":2,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.042],[0.041,-1.464],[1.464,0.042],[-0.041,1.464]],"o":[[1.464,0.042],[-0.042,1.463],[-1.464,-0.041],[0.042,-1.465]],"v":[[0.076,-2.651],[2.652,0.076],[-0.075,2.651],[-2.652,-0.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[348.718,220.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 80","np":2,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.684]],"o":[[1.685,0.048],[-0.047,1.685],[-1.685,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.051,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[349.383,196.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 81","np":2,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.055],[0.054,-1.906],[1.906,0.055],[-0.055,1.905]],"o":[[1.906,0.054],[-0.055,1.906],[-1.906,-0.053],[0.054,-1.907]],"v":[[0.098,-3.451],[3.452,0.098],[-0.098,3.451],[-3.451,-0.097]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[350.048,173.396],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 82","np":2,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.06,-2.128],[2.127,0.06],[-0.06,2.128]],"o":[[2.127,0.06],[-0.06,2.127],[-2.127,-0.06],[0.06,-2.127]],"v":[[0.11,-3.851],[3.852,0.11],[-0.109,3.852],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[350.714,149.986],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 83","np":2,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.349],[2.348,0.066],[-0.066,2.348]],"o":[[2.348,0.067],[-0.067,2.348],[-2.348,-0.066],[0.067,-2.348]],"v":[[0.121,-4.252],[4.251,0.121],[-0.121,4.252],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[351.379,126.577],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 84","np":2,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.569,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.073],[0.073,-2.569]],"v":[[0.132,-4.652],[4.652,0.132],[-0.132,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[352.044,103.167],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 85","np":2,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.791,-0.079],[0.08,-2.79],[2.79,0.08],[-0.079,2.79]],"o":[[2.79,0.079],[-0.079,2.79],[-2.79,-0.08],[0.08,-2.79]],"v":[[0.144,-5.053],[5.051,0.142],[-0.144,5.051],[-5.053,-0.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[352.709,79.758],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 86","np":2,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.086],[0.086,-3.01],[3.012,0.086],[-0.085,3.012]],"o":[[3.011,0.085],[-0.085,3.012],[-3.011,-0.086],[0.086,-3.011]],"v":[[0.155,-5.452],[5.452,0.154],[-0.156,5.452],[-5.453,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[353.374,56.348],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 87","np":2,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.232,-0.092],[0.091,-3.233],[3.233,0.092],[-0.091,3.232]],"o":[[3.232,0.092],[-0.092,3.231],[-3.231,-0.092],[0.092,-3.233]],"v":[[0.166,-5.852],[5.853,0.167],[-0.167,5.852],[-5.853,-0.166]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[354.039,32.938],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 88","np":2,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.243,0.036],[-0.035,1.243],[-1.243,-0.035],[0.035,-1.243]],"o":[[-1.243,-0.035],[0.035,-1.244],[1.243,0.036],[-0.036,1.244]],"v":[[-0.064,2.25],[-2.251,-0.063],[0.064,-2.251],[2.251,0.064]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[382.4,244.601],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 89","np":2,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.464,-0.041],[0.041,-1.464],[1.463,0.041],[-0.041,1.464]],"o":[[1.464,0.042],[-0.042,1.463],[-1.465,-0.042],[0.042,-1.464]],"v":[[0.076,-2.652],[2.652,0.076],[-0.074,2.651],[-2.652,-0.076]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[383.065,221.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 90","np":2,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.685],[1.685,0.047],[-0.048,1.684]],"o":[[1.686,0.048],[-0.048,1.685],[-1.685,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.052,0.087],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[383.73,197.781],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 91","np":2,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.055],[0.054,-1.906],[1.906,0.055],[-0.054,1.906]],"o":[[1.906,0.054],[-0.054,1.905],[-1.907,-0.053],[0.054,-1.907]],"v":[[0.099,-3.451],[3.451,0.099],[-0.098,3.451],[-3.452,-0.097]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[384.395,174.371],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 92","np":2,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.061,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.061,-2.128]],"v":[[0.109,-3.852],[3.851,0.11],[-0.11,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[385.061,150.962],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 93","np":2,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.067],[0.067,-2.348],[2.348,0.066],[-0.067,2.348]],"o":[[2.349,0.066],[-0.067,2.349],[-2.348,-0.066],[0.066,-2.349]],"v":[[0.121,-4.251],[4.251,0.121],[-0.121,4.252],[-4.251,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[385.726,127.552],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 94","np":2,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.072],[0.073,-2.569],[2.569,0.073],[-0.073,2.568]],"o":[[2.569,0.073],[-0.073,2.57],[-2.569,-0.073],[0.073,-2.57]],"v":[[0.132,-4.653],[4.652,0.132],[-0.132,4.651],[-4.652,-0.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[386.391,104.143],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 95","np":2,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.079],[0.079,-2.79],[2.79,0.08],[-0.08,2.79]],"o":[[2.791,0.079],[-0.079,2.791],[-2.79,-0.079],[0.079,-2.791]],"v":[[0.144,-5.053],[5.053,0.142],[-0.144,5.051],[-5.051,-0.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[387.056,80.734],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 96","np":2,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.086],[0.086,-3.011],[3.011,0.086],[-0.086,3.012]],"o":[[3.011,0.086],[-0.086,3.011],[-3.011,-0.085],[0.085,-3.011]],"v":[[0.155,-5.452],[5.452,0.155],[-0.155,5.452],[-5.452,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[387.721,57.324],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 97","np":2,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.685,-0.048],[0.048,-1.686],[1.685,0.047],[-0.048,1.685]],"o":[[1.685,0.048],[-0.047,1.684],[-1.685,-0.048],[0.048,-1.686]],"v":[[0.087,-3.051],[3.051,0.088],[-0.086,3.052],[-3.051,-0.086]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[418.077,198.757],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 98","np":2,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.055,1.906]],"o":[[1.906,0.055],[-0.055,1.906],[-1.906,-0.054],[0.054,-1.907]],"v":[[0.098,-3.452],[3.452,0.099],[-0.098,3.451],[-3.451,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[418.742,175.347],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 99","np":2,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.127,-0.061],[0.06,-2.127],[2.127,0.061],[-0.06,2.127]],"o":[[2.127,0.061],[-0.06,2.127],[-2.127,-0.06],[0.06,-2.127]],"v":[[0.11,-3.852],[3.852,0.11],[-0.109,3.851],[-3.852,-0.11]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[419.408,151.938],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 100","np":2,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.067],[0.067,-2.348],[2.348,0.067],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.066],[0.067,-2.349]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.252],[-4.253,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[420.073,128.528],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 101","np":2,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.568],[2.569,0.072],[-0.073,2.569]],"o":[[2.569,0.072],[-0.073,2.57],[-2.569,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.132,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[420.738,105.119],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 102","np":2,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.791,-0.079],[0.08,-2.79],[2.79,0.08],[-0.079,2.79]],"o":[[2.79,0.08],[-0.079,2.79],[-2.791,-0.079],[0.079,-2.79]],"v":[[0.144,-5.053],[5.051,0.144],[-0.144,5.051],[-5.053,-0.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[421.403,81.709],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 103","np":2,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.011,-0.085],[0.086,-3.011],[3.011,0.086],[-0.086,3.011]],"o":[[3.011,0.086],[-0.085,3.011],[-3.011,-0.085],[0.086,-3.012]],"v":[[0.155,-5.453],[5.452,0.155],[-0.155,5.452],[-5.452,-0.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[422.068,58.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 104","np":2,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.906,-0.054],[0.054,-1.906],[1.906,0.054],[-0.054,1.906]],"o":[[1.906,0.055],[-0.054,1.906],[-1.907,-0.054],[0.054,-1.907]],"v":[[0.099,-3.452],[3.451,0.099],[-0.098,3.451],[-3.452,-0.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[453.089,176.323],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 105","np":2,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.348,-0.066],[0.067,-2.348],[2.348,0.066],[-0.066,2.348]],"o":[[2.348,0.066],[-0.067,2.349],[-2.348,-0.067],[0.067,-2.348]],"v":[[0.121,-4.252],[4.251,0.12],[-0.121,4.252],[-4.253,-0.121]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[454.419,129.504],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 106","np":2,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.569,-0.073],[0.073,-2.569],[2.57,0.073],[-0.073,2.569]],"o":[[2.569,0.073],[-0.073,2.57],[-2.568,-0.074],[0.073,-2.57]],"v":[[0.132,-4.652],[4.652,0.132],[-0.133,4.652],[-4.652,-0.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[455.085,106.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 107","np":2,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.79,-0.08],[0.079,-2.79],[2.79,0.079],[-0.08,2.79]],"o":[[2.79,0.079],[-0.08,2.79],[-2.79,-0.08],[0.079,-2.79]],"v":[[0.144,-5.052],[5.053,0.143],[-0.144,5.052],[-5.051,-0.144]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[455.749,82.685],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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 108","np":2,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false}],"ip":-61.1388024902344,"op":921.877237548828,"st":-61.1388024902344,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Слой 6 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-44.356,"s":[217.153,322.493,0],"to":[219,0,0],"ti":[-219,0,0]},{"t":68.3316027832031,"s":[1531.153,322.493,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[34.507,13.014,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.02,0],[0,0],[0,7.02],[-7.02,0],[0,0],[0,-7.02]],"o":[[0,0],[-7.02,0],[0,-7.02],[0,0],[7.02,0],[0,7.02]],"v":[[21.494,12.764],[-21.493,12.764],[-34.258,0],[-21.493,-12.764],[21.494,-12.764],[34.258,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[34.507,13.014],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-44.3556018066406,"op":921.877237548828,"st":-44.3556018066406,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Слой 7 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-46.753,"s":[69.501,358.344,0],"to":[270.333,0,0],"ti":[-270.333,0,0]},{"t":110.289604492188,"s":[1691.501,358.344,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[184.301,27.649,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.48,0],[0,0],[0,7.222],[0,0],[8.599,0],[0,0],[-0.076,-5.554],[-5.435,0],[0,0],[0,-7.222],[0,0],[-8.598,0],[0,0],[0,5.48]],"o":[[0,0],[-7.222,0],[0,0],[0,-8.598],[0,0],[-5.554,0],[0.073,5.418],[0,0],[7.222,0],[0,0],[0,8.598],[0,0],[5.48,0],[0,-5.48]],"v":[[174.088,7.472],[31.068,7.472],[17.99,-5.604],[17.99,-11.831],[2.422,-27.399],[-173.782,-27.399],[-183.974,-17.3],[-174.012,-7.472],[-18.333,-7.472],[-5.255,5.605],[-5.255,11.831],[10.313,27.399],[174.088,27.399],[184.05,17.435]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[184.301,27.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-46.7532019042969,"op":921.877237548828,"st":-46.7532019042969,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Слой 10 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-83.916,"s":[188,516.513,0],"to":[225,0,0],"ti":[-225,0,0]},{"t":5.99400024414063,"s":[1538,516.513,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[34.104,8.229,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.389,0],[0,0],[0,4.389],[-4.389,0],[0,0],[0,-4.388]],"o":[[0,0],[-4.389,0],[0,-4.388],[0,0],[4.389,0],[0,4.389]],"v":[[25.875,7.979],[-25.875,7.979],[-33.854,0],[-25.875,-7.979],[25.875,-7.979],[33.854,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[34.104,8.229],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-83.9160034179687,"op":931.467637939453,"st":-83.9160034179687,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Слой 12 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-31.169,"s":[220.673,265.34,0],"to":[219.333,0,0],"ti":[-219.333,0,0]},{"t":43.1568017578125,"s":[1536.673,265.34,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[34.962,8.819,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.713,0],[0,0],[0,4.713],[-4.713,0],[0,0],[0,-4.713]],"o":[[0,0],[-4.713,0],[0,-4.713],[0,0],[4.713,0],[0,4.713]],"v":[[26.143,8.569],[-26.143,8.569],[-34.711,0],[-26.143,-8.569],[26.143,-8.569],[34.711,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[34.962,8.819],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-31.1688012695313,"op":923.076037597656,"st":-31.1688012695313,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Слой 13 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-123.476,"s":[160.045,597.677,0],"to":[239,0,0],"ti":[-239,0,0]},{"t":4.7952001953125,"s":[1594.045,597.677,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[95.59,27.943,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.101,0],[0,0],[0,0],[0,5.1],[-1.681,1.68],[-1.693,0.402],[0,0],[-0.084,0.008],[-0.607,0.147],[-1.194,1.191],[0,2.55],[5.1,0],[0,0],[1.681,-1.681],[0,-2.55],[-4.078,-0.97],[-0.738,0],[0,0],[0,0],[0,-4.364],[1.68,-1.681],[2.55,0],[0,0],[0,0],[1.681,-1.681],[0,-2.55],[-5.101,0],[0,0],[-1.681,1.681],[0,2.551]],"o":[[0,0],[0,0],[-5.1,0],[0,-2.551],[1.194,-1.195],[0,0],[0.085,0],[0.649,-0.015],[1.693,-0.402],[1.681,-1.68],[0,-5.101],[0,0],[-2.551,0],[-1.68,1.681],[0,4.363],[0.687,0.166],[0,0],[0,0],[4.078,0.974],[0,2.549],[-1.681,1.681],[0,0],[0,0],[-2.55,0],[-1.681,1.68],[0,5.101],[0,0],[2.55,0],[1.68,-1.68],[0,-5.1]],"v":[[86.066,9.144],[21.919,9.144],[18.009,9.144],[8.735,-0.129],[11.459,-6.679],[15.865,-9.149],[21.666,-9.149],[21.919,-9.157],[23.809,-9.404],[28.214,-11.87],[30.938,-18.419],[21.666,-27.693],[-86.066,-27.693],[-92.615,-24.969],[-95.339,-18.419],[-88.209,-9.404],[-86.066,-9.149],[-18.009,-9.149],[-13.287,-9.149],[-6.157,-0.129],[-8.881,6.42],[-15.432,9.144],[-18.009,9.144],[-21.665,9.144],[-28.214,11.869],[-30.938,18.418],[-21.665,27.693],[86.066,27.693],[92.615,24.968],[95.339,18.418]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[95.589,27.943],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-123.476405029297,"op":923.076037597656,"st":-123.476405029297,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Слой 15 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-19.181,"s":[174.129,602.93,0],"to":[234,0,0],"ti":[-234,0,0]},{"t":112.687204589844,"s":[1578.129,602.93,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[75.134,8.819,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.713,0],[0,0],[0,4.713],[-4.713,0],[0,0],[0,-4.713]],"o":[[0,0],[-4.713,0],[0,-4.713],[0,0],[4.713,0],[0,4.713]],"v":[[66.316,8.569],[-66.316,8.569],[-74.885,0.001],[-66.316,-8.569],[66.316,-8.569],[74.885,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[75.134,8.819],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-19.18080078125,"op":923.076037597656,"st":-19.18080078125,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Слой 49 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-127.073,"s":[126.902,409.924,0],"to":[250.333,0,0],"ti":[-250.333,0,0]},{"t":21.5784008789062,"s":[1628.902,409.924,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[135.536,96.292,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[11.356,0],[0,0],[0.239,0.239],[0,2.066],[-4.071,0.069],[0,0],[-0.088,0.003],[0,11.269],[3.745,3.742],[5.679,0],[0,0],[0,-11.357],[-3.744,-3.741],[-5.679,0],[0,0],[0,0],[-1.333,-1.332],[0,-2.064],[1.798,-1.375],[0,0],[3.743,-3.741],[0,-5.679],[-11.235,-0.141],[-0.086,0],[0,0],[0,-4.086],[1.361,-1.361],[1.057,-0.379],[0,0],[0,0],[0.771,-0.148],[0,0],[3.742,-3.741],[0,-5.679],[-11.236,-0.14],[-0.088,0],[0,0],[0,-4.086],[1.36,-1.361],[1.056,-0.379],[0,0],[0,0],[2.297,-2.297],[0,-3.485],[-6.968,0],[0,0],[-2.296,2.297],[0,3.486],[5.385,1.461],[1.139,0],[0,0],[0,3.248],[-1.36,1.361],[-2.015,0.032],[0,0],[0,0],[-3.742,3.742],[0,5.678],[6.581,3.463],[1.596,0.432],[1.139,0],[0,0],[0,3.247],[-1.36,1.361],[-2.015,0.032],[0,0],[0,0],[-3.741,3.742],[0,5.678]],"o":[[0,0],[-0.268,-0.205],[-1.361,-1.36],[0,-4.085],[0,0],[0.088,0],[11.235,-0.141],[0,-5.678],[-3.741,-3.742],[0,0],[-11.358,0],[0,5.679],[3.742,3.743],[0,0],[0,0],[2.014,0.031],[1.362,1.361],[0,2.425],[0,0],[-5.677,0],[-3.745,3.742],[0,11.269],[0.088,0.003],[0,0],[4.07,0.069],[0,2.065],[-0.779,0.779],[0,0],[0,0],[-0.812,0],[0,0],[-5.678,0],[-3.745,3.742],[0,11.269],[0.088,0.003],[0,0],[4.07,0.069],[0,2.065],[-0.779,0.779],[0,0],[0,0],[-3.485,0],[-2.296,2.296],[0,6.968],[0,0],[3.484,0],[2.297,-2.296],[0,-5.831],[-1.051,-0.285],[0,0],[-2.9,-1.042],[0,-2.065],[1.333,-1.332],[0,0],[0,0],[5.679,0],[3.745,-3.742],[0,-7.916],[-1.283,-0.976],[-1.051,-0.285],[0,0],[-2.9,-1.042],[0,-2.065],[1.333,-1.333],[0,0],[0,0],[5.678,0],[3.745,-3.742],[0,-11.357]],"v":[[114.638,-41.275],[32.828,-41.275],[32.061,-41.936],[29.856,-47.239],[37.236,-54.744],[51.915,-54.744],[52.181,-54.747],[72.564,-75.393],[66.497,-89.975],[51.915,-96.042],[-73.228,-96.042],[-93.877,-75.393],[-87.811,-60.811],[-73.228,-54.744],[-21.891,-54.744],[10.277,-54.744],[15.451,-52.542],[17.658,-47.239],[14.694,-41.275],[-10.507,-41.275],[-25.089,-35.209],[-31.155,-20.626],[-10.772,0.019],[-10.507,0.022],[4.173,0.022],[11.554,7.528],[9.348,12.831],[6.564,14.599],[-30.385,14.599],[-55.827,14.599],[-58.205,14.827],[-77.295,14.827],[-91.877,20.893],[-97.943,35.476],[-77.56,56.121],[-77.295,56.124],[-62.615,56.124],[-55.235,63.63],[-57.44,68.933],[-60.224,70.701],[-97.174,70.701],[-122.615,70.701],[-131.563,74.424],[-135.286,83.371],[-122.615,96.042],[-17.031,96.042],[-8.084,92.319],[-4.361,83.371],[-13.734,71.139],[-17.031,70.701],[-38.047,70.701],[-43.036,63.63],[-40.831,58.327],[-35.656,56.124],[-3.488,56.124],[47.849,56.124],[62.432,50.058],[68.498,35.476],[57.4,17.189],[53.054,15.037],[49.757,14.599],[28.742,14.599],[23.752,7.528],[25.957,2.225],[31.132,0.022],[63.3,0.022],[114.638,0.022],[129.22,-6.044],[135.286,-20.626]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[135.536,96.292],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-127.072805175781,"op":923.076037597656,"st":-127.072805175781,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Слой 17 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-29.97,"s":[123.411,324.053,0],"to":[253,0,0],"ti":[-253,0,0]},{"t":50.3496020507813,"s":[1641.411,324.053,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[144.251,73.924,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.222,0],[0,0],[0,0],[0,6.03],[-2.378,2.378],[-2.907,0.393],[0,0],[-0.755,0.084],[-3.449,3.445],[0,6.004],[12.008,0],[0,0],[0,0],[0,6.242],[-2.378,2.377],[-2.25,0.604],[0,0],[-1.089,0.295],[-1.602,1.601],[0,3.609],[7.222,0],[0,0],[2.382,-2.378],[0,-3.608],[-5.585,-1.509],[-1.178,0],[0,0],[0,-6.039],[2.378,-2.378],[2.471,-0.551],[0,0],[1.205,-0.208],[3.128,-3.127],[0,-6.009],[-10.94,-1.156],[-0.776,0],[0,0],[0,-6.617],[2.377,-2.378],[2.236,-0.608],[0,0],[1.099,-0.304],[1.592,-1.593],[0,-3.608],[-7.222,0],[0,0],[-2.378,2.383],[0,3.609]],"o":[[0,0],[0,0],[-5.568,-1.522],[0,-3.613],[1.989,-1.985],[0,0],[0.776,0],[5.09,-0.539],[3.957,-3.957],[0,-12.013],[0,0],[0,0],[-5.862,-1.306],[0,-3.609],[1.601,-1.606],[0,0],[1.182,0],[2.246,-0.609],[2.378,-2.382],[0,-7.221],[0,0],[-3.609,0],[-2.378,2.382],[0,6.044],[1.085,0.295],[0,0],[5.585,1.513],[0,3.613],[-1.739,1.738],[0,0],[-1.262,0],[-4.53,0.781],[-3.957,3.957],[0,11.231],[0.759,0.084],[0,0],[6.384,0.878],[0,3.613],[-1.593,1.592],[0,0],[-1.191,0],[-2.232,0.609],[-2.378,2.382],[0,7.222],[0,0],[3.608,0],[2.382,-2.378],[0,-7.221]],"v":[[130.868,47.411],[107.632,47.411],[26.175,47.411],[16.488,34.747],[20.343,25.473],[27.851,21.742],[72.495,21.742],[74.798,21.618],[87.917,15.327],[94.331,-0.091],[72.495,-21.928],[54.17,-21.928],[-43.734,-21.928],[-54.012,-34.742],[-50.156,-44.011],[-44.294,-47.417],[-38.669,-47.417],[-35.255,-47.871],[-29.395,-51.273],[-25.541,-60.545],[-38.669,-73.674],[-130.872,-73.674],[-140.145,-69.817],[-144.001,-60.545],[-134.281,-47.871],[-130.872,-47.417],[-94.147,-47.417],[-84.429,-34.742],[-88.283,-25.47],[-94.708,-21.928],[-103.512,-21.928],[-107.213,-21.61],[-118.934,-15.513],[-125.348,-0.091],[-105.816,21.618],[-103.512,21.742],[-57.687,21.742],[-46.345,34.747],[-50.2,44.019],[-56.032,47.411],[-71.322,47.411],[-74.768,47.874],[-80.595,51.268],[-84.45,60.539],[-71.322,73.674],[130.868,73.674],[140.14,69.812],[144.001,60.539]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[144.251,73.924],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-29.9700012207031,"op":923.076037597656,"st":-29.9700012207031,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Слой 18 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-94.705,"s":[160.189,698.663,0],"to":[241,0,0],"ti":[-241,0,0]},{"t":10.7892004394531,"s":[1606.189,698.663,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[94.351,24.28,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.283,6.992],[-12.951,0],[0,0],[0,-4.159],[4.159,0],[0,0],[1.629,-1.625],[-0.19,-2.718],[-4.74,0],[0,0],[0,-4.159],[4.159,0],[0,0],[4.354,4.355]],"o":[[0.524,-12.94],[0,0],[4.159,0],[0,4.161],[0,0],[-2.468,0],[-1.764,1.768],[0.331,4.729],[0,0],[4.159,0],[0,4.161],[0,0],[-6.607,0],[-4.569,-4.569]],"v":[[-93.818,-0.984],[-69.449,-24.031],[86.57,-24.031],[94.101,-16.5],[86.57,-8.966],[-17.443,-8.966],[-23.777,-6.334],[-26.387,0.637],[-17.249,8.966],[86.57,8.966],[94.101,16.497],[86.57,24.031],[-69.807,24.031],[-86.779,16.971]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[94.351,24.281],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-94.7052038574219,"op":924.274837646484,"st":-94.7052038574219,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Слой 19 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-20.38,"s":[131.595,806.456,0],"to":[243.333,0,0],"ti":[-243.333,0,0]},{"t":99.5004040527344,"s":[1591.595,806.456,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[101.888,29.772,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.438,0],[0,0],[0,0],[0,5.438],[-1.792,1.792],[-1.804,0.429],[0,0],[-0.09,0.008],[-0.647,0.156],[-1.273,1.268],[0,2.72],[5.438,0],[0,0],[1.792,-1.792],[0,-2.719],[-4.346,-1.035],[-0.787,0],[0,0],[0,0],[0,-4.651],[1.792,-1.792],[2.719,0],[0,0],[0,0],[1.792,-1.792],[0,-2.719],[-5.437,0],[0,0],[-1.792,1.792],[0,2.718]],"o":[[0,0],[0,0],[-5.437,0],[0,-2.718],[1.273,-1.274],[0,0],[0.091,0],[0.693,-0.016],[1.804,-0.429],[1.792,-1.792],[0,-5.437],[0,0],[-2.719,0],[-1.792,1.792],[0,4.652],[0.734,0.176],[0,0],[0,0],[4.347,1.038],[0,2.719],[-1.792,1.792],[0,0],[0,0],[-2.718,0],[-1.792,1.792],[0,5.437],[0,0],[2.719,0],[1.792,-1.792],[0,-5.438]],"v":[[91.752,9.749],[23.368,9.749],[19.199,9.749],[9.313,-0.138],[12.217,-7.12],[16.913,-9.753],[23.096,-9.753],[23.368,-9.761],[25.383,-10.024],[30.079,-12.652],[32.983,-19.636],[23.096,-29.522],[-91.751,-29.522],[-98.734,-26.618],[-101.638,-19.636],[-94.038,-10.024],[-91.751,-9.753],[-19.199,-9.753],[-14.165,-9.753],[-6.564,-0.138],[-9.468,6.845],[-16.451,9.749],[-19.199,9.749],[-23.096,9.749],[-30.078,12.653],[-32.982,19.636],[-23.096,29.522],[91.752,29.522],[98.734,26.618],[101.638,19.636]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[101.888,29.772],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-20.3796008300781,"op":927.871237792969,"st":-20.3796008300781,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Слой 20 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-15.584,"s":[160.199,496.083,0],"to":[241,0,0],"ti":[-241,0,0]},{"t":74.3256030273437,"s":[1606.199,496.083,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[101.888,29.772,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.437,0],[0,0],[0,0],[0,5.438],[1.792,1.792],[1.805,0.428],[0,0],[0.091,0.009],[0.647,0.156],[1.273,1.269],[0,2.718],[-5.438,0],[0,0],[-1.792,-1.792],[0,-2.719],[4.346,-1.035],[0.787,0],[0,0],[0,0],[0,-4.651],[-1.792,-1.792],[-2.719,0],[0,0],[0,0],[-1.792,-1.792],[0,-2.719],[5.437,0],[0,0],[1.792,1.792],[0,2.719]],"o":[[0,0],[0,0],[5.437,0],[0,-2.718],[-1.273,-1.273],[0,0],[-0.091,0],[-0.692,-0.016],[-1.804,-0.429],[-1.792,-1.792],[0,-5.438],[0,0],[2.719,0],[1.792,1.792],[0,4.651],[-0.734,0.177],[0,0],[0,0],[-4.347,1.038],[0,2.719],[1.792,1.792],[0,0],[0,0],[2.718,0],[1.792,1.792],[0,5.438],[0,0],[-2.719,0],[-1.792,-1.792],[0,-5.438]],"v":[[-91.751,9.749],[-23.367,9.749],[-19.199,9.749],[-9.312,-0.138],[-12.216,-7.12],[-16.913,-9.752],[-23.096,-9.752],[-23.367,-9.761],[-25.382,-10.024],[-30.079,-12.653],[-32.983,-19.635],[-23.096,-29.522],[91.751,-29.522],[98.735,-26.618],[101.639,-19.635],[94.038,-10.024],[91.751,-9.752],[19.199,-9.752],[14.165,-9.752],[6.564,-0.138],[9.469,6.845],[16.452,9.749],[19.199,9.749],[23.097,9.749],[30.079,12.653],[32.982,19.636],[23.097,29.522],[-91.751,29.522],[-98.734,26.619],[-101.639,19.636]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[101.888,29.772],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-15.5844006347656,"op":927.871237792969,"st":-15.5844006347656,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Слой 21 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-32.368,"s":[132.084,418.846,0],"to":[245.667,0,0],"ti":[-245.667,0,0]},{"t":101.898004150391,"s":[1606.084,418.846,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[101.888,29.772,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.437,0],[0,0],[0,0],[0,5.438],[-1.792,1.792],[-1.805,0.428],[0,0],[-0.091,0.009],[-0.646,0.156],[-1.273,1.269],[0,2.718],[5.438,0],[0,0],[1.792,-1.792],[0,-2.719],[-4.346,-1.035],[-0.787,0],[0,0],[0,0],[0,-4.651],[1.792,-1.792],[2.719,0],[0,0],[0,0],[1.792,-1.792],[0,-2.719],[-5.438,0],[0,0],[-1.792,1.792],[0,2.719]],"o":[[0,0],[0,0],[-5.438,0],[0,-2.718],[1.273,-1.273],[0,0],[0.091,0],[0.692,-0.016],[1.805,-0.429],[1.792,-1.792],[0,-5.438],[0,0],[-2.719,0],[-1.792,1.792],[0,4.651],[0.734,0.177],[0,0],[0,0],[4.347,1.038],[0,2.719],[-1.792,1.792],[0,0],[0,0],[-2.718,0],[-1.792,1.792],[0,5.438],[0,0],[2.719,0],[1.792,-1.792],[0,-5.438]],"v":[[91.752,9.749],[23.368,9.749],[19.199,9.749],[9.313,-0.138],[12.217,-7.12],[16.913,-9.752],[23.096,-9.752],[23.368,-9.761],[25.381,-10.024],[30.078,-12.653],[32.982,-19.635],[23.096,-29.522],[-91.751,-29.522],[-98.734,-26.618],[-101.638,-19.635],[-94.038,-10.024],[-91.751,-9.752],[-19.199,-9.752],[-14.165,-9.752],[-6.564,-0.138],[-9.468,6.845],[-16.451,9.749],[-19.199,9.749],[-23.096,9.749],[-30.078,12.653],[-32.982,19.636],[-23.096,29.522],[91.752,29.522],[98.734,26.619],[101.638,19.636]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[101.888,29.772],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-32.3676013183594,"op":924.274837646484,"st":-32.3676013183594,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Слой 23 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-33.566,"s":[226.98,518.112,0],"to":[219.333,0,0],"ti":[-219.333,0,0]},{"t":107.892004394531,"s":[1542.98,518.112,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[10.137,10.137,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-5.46],[5.46,0],[0,5.46],[-5.46,0]],"o":[[0,5.46],[-5.46,0],[0,-5.46],[5.46,0]],"v":[[9.887,0],[0,9.887],[-9.887,0],[0,-9.887]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[10.137,10.137],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-33.5664013671875,"op":930.268837890625,"st":-33.5664013671875,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Слой 24 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-19.181,"s":[30.457,459.948,0],"to":[274,0,0],"ti":[-274,0,0]},{"t":143.856005859375,"s":[1674.457,459.948,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[182.875,27.437,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.437,0],[0,0],[0,7.166],[0,0],[8.531,0],[0,0],[-0.075,-5.511],[-5.392,0],[0,0],[0,-7.166],[0,0],[-8.532,0],[0,0],[0,5.438]],"o":[[0,0],[-7.167,0],[0,0],[0,-8.531],[0,0],[-5.512,0],[0.073,5.376],[0,0],[7.166,0],[0,0],[0,8.531],[0,0],[5.437,0],[0,-5.437]],"v":[[172.739,7.415],[30.827,7.415],[17.852,-5.561],[17.852,-11.74],[2.405,-27.187],[-172.436,-27.187],[-182.549,-17.166],[-172.665,-7.415],[-18.191,-7.415],[-5.215,5.561],[-5.215,11.74],[10.232,27.187],[172.739,27.187],[182.625,17.301]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[182.875,27.437],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-19.18080078125,"op":926.672437744141,"st":-19.18080078125,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Слой 30 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-47.952,"s":[100.127,267.52,0],"to":[268,0,0],"ti":[-268,0,0]},{"t":37.1628015136719,"s":[1708.127,267.52,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[166.363,28.07,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[15.438,0],[0,0],[0,15.438],[-15.438,0],[0,0],[0,-15.438]],"o":[[0,0],[-15.438,0],[0,-15.438],[0,0],[15.438,0],[0,15.438]],"v":[[137.795,28.069],[-137.794,28.069],[-165.863,0],[-137.794,-28.069],[137.795,-28.069],[165.863,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.19,0.19,0.19,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":[166.113,28.32],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-47.952001953125,"op":925.473637695312,"st":-47.952001953125,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Слой 31 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-53.946,"s":[-27.891,782.973,0],"to":[304,0,0],"ti":[-304,0,0]},{"t":51.5484020996094,"s":[1796.109,782.973,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[270.886,37.67,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.484,0],[0,0],[0,9.863],[0,0],[11.742,0],[0,0],[-0.103,-7.586],[-7.422,0],[0,0],[0,-9.864],[0,0],[-11.742,0],[0,0],[0,7.485]],"o":[[0,0],[-9.865,0],[0,0],[0,-11.742],[0,0],[-7.586,0],[0.1,7.399],[0,0],[9.863,0],[0,0],[0,11.742],[0,0],[7.484,0],[0,-7.484]],"v":[[257.029,10.205],[158.377,10.205],[140.517,-7.654],[140.517,-16.159],[119.256,-37.42],[-256.613,-37.42],[-270.533,-23.627],[-256.927,-10.206],[90.909,-10.206],[108.768,7.654],[108.768,16.158],[130.03,37.42],[257.029,37.42],[270.636,23.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[270.886,37.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-53.9460021972656,"op":968.630439453125,"st":-53.9460021972656,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"Слой 36 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-16.783,"s":[172.549,804.039,0],"to":[235.667,0,0],"ti":[-235.667,0,0]},{"t":43.1568017578125,"s":[1586.549,804.039,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[80.082,9.386,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.024,0],[0,0],[0,5.025],[-5.024,0],[0,0],[0,-5.024]],"o":[[0,0],[-5.024,0],[0,-5.024],[0,0],[5.024,0],[0,5.025]],"v":[[70.697,9.135],[-70.697,9.135],[-79.832,0.001],[-70.697,-9.135],[70.697,-9.135],[79.832,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[80.082,9.386],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-16.7832006835938,"op":927.871237792969,"st":-16.7832006835938,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Слой 38 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-46.753,"s":[121.312,386.496,0],"to":[254.667,0,0],"ti":[-254.667,0,0]},{"t":29.9700012207031,"s":[1649.312,386.496,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[142.528,9.385,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-4.843],[4.843,0],[0,4.842],[-4.842,0]],"o":[[0,4.842],[-4.842,0],[0,-4.843],[4.843,0]],"v":[[8.769,0],[0,8.768],[-8.769,0],[0,-8.768]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[276.038,9.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.024,0],[0,0],[0,5.024],[-5.025,0],[0,0],[0,-5.024]],"o":[[0,0],[-5.025,0],[0,-5.024],[0,0],[5.024,0],[0,5.024]],"v":[[27.869,9.135],[-27.87,9.135],[-37.005,0],[-27.87,-9.135],[27.869,-9.135],[37.005,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[211.99,9.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.024,0],[0,0],[0,5.024],[-5.024,0],[0,0],[0,-5.024]],"o":[[0,0],[-5.024,0],[0,-5.024],[0,0],[5.024,0],[0,5.024]],"v":[[70.697,9.135],[-70.697,9.135],[-79.832,0],[-70.697,-9.135],[70.697,-9.135],[79.832,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[80.082,9.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":-46.7532019042969,"op":927.871237792969,"st":-46.7532019042969,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Слой 39 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-52.747,"s":[158.846,441.622,0],"to":[241,0,0],"ti":[-241,0,0]},{"t":50.3496020507813,"s":[1604.846,441.622,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[92.259,27.439,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.1,0],[0,9.101],[-9.1,0],[0,-9.099]],"o":[[-9.1,0],[0,-9.099],[9.1,0],[0,9.101]],"v":[[63.705,16.477],[47.227,0],[63.705,-16.478],[80.183,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[5.17,5.166],[7.478,0],[0,0],[3.13,-3.13],[0,-4.779],[-9.557,0],[0,0],[-4.928,-4.931],[-0.378,-0.428],[-8.799,0],[0,0],[-0.581,14.649]],"o":[[-4.926,-4.931],[0,0],[-4.778,0],[-3.131,3.131],[0,9.557],[0,0],[7.477,0],[0.403,0.404],[5.83,6.599],[0,0],[14.657,0],[0.313,-7.905]],"v":[[83.729,-19.201],[64.528,-27.188],[-74.708,-27.188],[-86.942,-22.122],[-92.009,-9.886],[-74.708,7.414],[20.039,7.414],[39.24,15.402],[40.413,16.651],[63.297,27.188],[64.129,27.188],[91.696,1.091]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[92.259,27.439],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-52.7472021484375,"op":927.871237792969,"st":-52.7472021484375,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"Слой 40 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-5.994,"s":[154.365,537.672,0],"to":[243.333,0,0],"ti":[-243.333,0,0]},{"t":105.494404296875,"s":[1614.365,537.672,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[113.109,33.031,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.038,0],[0,0],[0,0],[0,6.039],[-1.99,1.99],[-2.003,0.476],[0,0],[-0.101,0.009],[-0.719,0.174],[-1.413,1.409],[0,3.019],[6.038,0],[0,0],[1.991,-1.99],[0,-3.019],[-4.825,-1.148],[-0.874,0],[0,0],[0,0],[0,-5.164],[1.99,-1.989],[3.019,0],[0,0],[0,0],[1.989,-1.991],[0,-3.019],[-6.038,0],[0,0],[-1.989,1.991],[0,3.019]],"o":[[0,0],[0,0],[-6.038,0],[0,-3.019],[1.414,-1.414],[0,0],[0.1,0],[0.768,-0.019],[2.003,-0.476],[1.99,-1.99],[0,-6.038],[0,0],[-3.019,0],[-1.989,1.989],[0,5.165],[0.815,0.197],[0,0],[0,0],[4.826,1.153],[0,3.02],[-1.99,1.991],[0,0],[0,0],[-3.019,0],[-1.99,1.989],[0,6.038],[0,0],[3.019,0],[1.99,-1.99],[0,-6.039]],"v":[[101.881,10.825],[25.948,10.825],[21.318,10.825],[10.34,-0.154],[13.565,-7.907],[18.78,-10.83],[25.646,-10.83],[25.948,-10.839],[28.185,-11.132],[33.398,-14.05],[36.624,-21.803],[25.646,-32.781],[-101.881,-32.781],[-109.635,-29.557],[-112.859,-21.803],[-104.42,-11.132],[-101.881,-10.83],[-21.318,-10.83],[-15.73,-10.83],[-7.29,-0.154],[-10.515,7.599],[-18.268,10.825],[-21.318,10.825],[-25.646,10.825],[-33.399,14.05],[-36.624,21.803],[-25.646,32.781],[101.881,32.781],[109.634,29.556],[112.859,21.803]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[113.109,33.032],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-5.99400024414063,"op":927.871237792969,"st":-5.99400024414063,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"Слой 41 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-94.705,"s":[65.649,709.673,0],"to":[269.333,0,0],"ti":[-269.333,0,0]},{"t":46.7532019042969,"s":[1681.649,709.673,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[189.653,53.695,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.536,0],[0,0],[0,5.976],[0,0],[7.118,0],[0,0],[0,0],[0,4.069],[-1.495,1.495],[-1.52,0.353],[0,0],[-0.601,0.145],[0,3.89],[1.495,1.496],[2.269,0],[0,0],[0,5.98],[0,0],[7.118,0],[0,0],[-0.062,-4.598],[-4.499,0],[0,0],[0,-5.981],[0,0],[-5.985,-1.113],[-0.811,0],[0,0],[0,-3.891],[1.495,-1.495],[1.726,-0.289],[0,0],[0,0],[-0.062,-4.598],[-4.499,0],[0,0],[0,-5.979],[0,0],[-7.117,0],[0,0],[0,4.533],[0,0]],"o":[[0,0],[-5.976,0],[0,0],[0,-7.118],[0,0],[0,0],[-3.894,-0.653],[0,-2.269],[1.068,-1.069],[0,0],[0.647,0],[3.64,-0.853],[0,-2.269],[-1.495,-1.495],[0,0],[-5.979,0],[0,0],[0,-7.118],[0,0],[-4.598,0],[0.062,4.485],[0,0],[5.98,0],[0,0],[0,6.307],[0.769,0.145],[0,0],[3.639,0.851],[0,2.269],[-1.188,1.19],[0,0],[0,0],[-4.598,0],[0.061,4.486],[0,0],[5.979,0],[0,0],[0,7.118],[0,0],[4.536,0],[0,0],[0,-4.533]],"v":[[181.155,36.951],[121.356,36.951],[110.53,26.125],[110.53,20.97],[97.645,8.082],[94.291,8.082],[40.002,8.082],[33.122,-0.05],[35.545,-5.876],[39.494,-8.078],[61.194,-8.078],[63.07,-8.299],[69.442,-16.327],[67.019,-22.153],[61.194,-24.575],[1.395,-24.575],[-9.431,-35.402],[-9.431,-40.557],[-22.319,-53.445],[-180.904,-53.445],[-189.341,-45.084],[-181.092,-36.948],[-52.216,-36.948],[-41.39,-26.122],[-41.39,-20.967],[-30.876,-8.299],[-28.502,-8.078],[-5.213,-8.078],[1.159,-0.05],[-1.265,5.775],[-5.722,8.082],[-60.011,8.082],[-60.939,8.082],[-69.38,16.443],[-61.131,24.578],[67.745,24.578],[78.571,35.404],[78.571,40.56],[91.459,53.445],[181.155,53.445],[189.403,45.2],[189.403,45.196]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[189.653,53.695],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-94.7052038574219,"op":927.871237792969,"st":-94.7052038574219,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Слой 44 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[217.357,546.056,0],"to":[225.333,0,0],"ti":[-225.333,0,0]},{"t":51.5484020996094,"s":[1569.357,546.056,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[42.425,10.189,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.467,0],[0,0],[0,5.466],[-5.467,0],[0,0],[0,-5.467]],"o":[[0,0],[-5.467,0],[0,-5.467],[0,0],[5.467,0],[0,5.466]],"v":[[32.235,9.939],[-32.235,9.939],[-42.175,0.001],[-32.235,-9.939],[32.235,-9.939],[42.175,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[42.425,10.19],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":0,"op":927.871237792969,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"Слой 45 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-57.542,"s":[66.949,529.355,0],"to":[277.667,0,0],"ti":[-277.667,0,0]},{"t":76.723203125,"s":[1732.949,529.355,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[178.299,26.756,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.302,0],[0,0],[0,6.987],[0,0],[8.317,0],[0,0],[-0.072,-5.373],[-5.257,0],[0,0],[0,-6.987],[0,0],[-8.317,0],[0,0],[0,5.302]],"o":[[0,0],[-6.987,0],[0,0],[0,-8.317],[0,0],[-5.374,0],[0.072,5.241],[0,0],[6.987,0],[0,0],[0,8.318],[0,0],[5.302,0],[0,-5.301]],"v":[[168.41,7.229],[30.054,7.229],[17.404,-5.422],[17.404,-11.446],[2.343,-26.506],[-168.115,-26.506],[-177.976,-16.736],[-168.338,-7.229],[-17.735,-7.229],[-5.085,5.422],[-5.085,11.446],[9.976,26.506],[168.41,26.506],[178.048,16.867]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[178.298,26.756],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-57.54240234375,"op":929.070037841797,"st":-57.54240234375,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"Слой 47 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-59.94,"s":[204.506,692.84,0],"to":[223,0,0],"ti":[-223,0,0]},{"t":14.3856005859375,"s":[1542.506,692.84,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[36.34,8.756,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.679,0],[0,0],[0,4.679],[-4.679,0],[0,0],[0,-4.678]],"o":[[0,0],[-4.679,0],[0,-4.678],[0,0],[4.679,0],[0,4.679]],"v":[[27.585,8.506],[-27.585,8.506],[-36.091,0],[-27.585,-8.506],[27.585,-8.506],[36.091,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[36.34,8.756],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-59.9400024414063,"op":927.871237792969,"st":-59.9400024414063,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"Слой 48 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-79.121,"s":[110.239,489.125,0],"to":[259.333,0,0],"ti":[-259.333,0,0]},{"t":40.7592016601563,"s":[1666.239,489.125,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[158.018,74.415,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.514,0],[0,0],[1.817,-1.817],[0,-2.757],[-5.117,-0.435],[-0.289,0],[0,0],[0,-5.227],[1.818,-1.817],[2.021,-0.381],[0,0],[1.015,-0.117],[4.307,-4.306],[0,-7.582],[-15.001,-0.188],[-0.117,0],[0,0],[0,-5.455],[1.817,-1.818],[1.412,-0.506],[0,0],[3.066,-3.066],[0,-4.655],[-9.303,0],[0,0],[-3.066,3.065],[0,4.653],[7.189,1.951],[1.52,0],[0,0],[0,4.336],[-1.817,1.817],[-2.691,0.041],[0,0],[-4.996,4.996],[0,7.582],[13.719,1.554],[1.048,0],[0,0],[0,4.883],[-1.817,1.818],[-2.418,0.205],[0,0],[-0.281,0.025],[-1.63,1.629],[0,2.757]],"o":[[0,0],[-2.757,0],[-1.817,1.817],[0,5.225],[0.279,0.025],[0,0],[5.117,0.435],[0,2.756],[-1.399,1.4],[0,0],[-1.045,0],[-6.353,0.719],[-5.001,4.997],[0,15.047],[0.118,0.005],[0,0],[5.434,0.092],[0,2.757],[-1.04,1.04],[0,0],[-4.653,0],[-3.066,3.066],[0,9.302],[0,0],[4.653,0],[3.066,-3.067],[0,-7.787],[-1.404,-0.38],[0,0],[-3.872,-1.391],[0,-2.757],[1.78,-1.78],[0,0],[7.582,0],[5,-4.996],[0,-14.115],[-1.019,-0.117],[0,0],[-4.637,-0.873],[0,-2.758],[1.629,-1.628],[0,0],[0.288,0],[2.418,-0.205],[1.816,-1.817],[0,-5.514]],"v":[[147.743,-74.165],[-6.819,-74.165],[-13.9,-71.22],[-16.845,-64.139],[-7.671,-54.151],[-6.819,-54.114],[17.919,-54.114],[27.093,-44.125],[24.147,-37.045],[18.918,-34.275],[-80.336,-34.275],[-83.432,-34.1],[-99.807,-26.176],[-107.907,-6.705],[-80.692,20.861],[-80.336,20.866],[-60.736,20.866],[-50.882,30.887],[-53.827,37.968],[-57.545,40.328],[-140.85,40.328],[-152.797,45.299],[-157.768,57.247],[-140.85,74.165],[0.128,74.165],[12.075,69.194],[17.046,57.247],[4.531,40.913],[0.128,40.328],[-27.932,40.328],[-34.595,30.887],[-31.65,23.807],[-24.74,20.866],[86.758,20.866],[106.228,12.766],[114.328,-6.705],[89.857,-34.1],[86.758,-34.275],[63.661,-34.275],[55.486,-44.125],[58.431,-51.207],[64.659,-54.114],[147.743,-54.114],[148.596,-54.151],[154.824,-57.059],[157.768,-64.139]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[158.018,74.415],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-79.1208032226562,"op":927.871237792969,"st":-79.1208032226562,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"Слой 50 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-45.554,"s":[123.825,628.399,0],"to":[251.333,0,0],"ti":[-251.333,0,0]},{"t":65.9340026855469,"s":[1631.825,628.399,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[131.052,52.38,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[14.579,0],[0,0],[4.804,-4.804],[0,-7.29],[-14.423,-0.181],[-0.112,0],[0,0],[0,-5.245],[1.747,-1.747],[1.358,-0.486],[0,0],[0,0],[2.948,-2.948],[0,-4.474],[-8.944,0],[0,0],[-2.947,2.949],[0,4.474],[6.912,1.876],[1.462,0],[0,0],[0,4.169],[-1.747,1.747],[-2.587,0.04],[0,0],[0,0],[-4.803,4.803],[0,7.289]],"o":[[0,0],[-7.289,0],[-4.807,4.804],[0,14.467],[0.112,0.005],[0,0],[5.225,0.088],[0,2.651],[-1,1],[0,0],[0,0],[-4.474,0],[-2.948,2.947],[0,8.945],[0,0],[4.475,0],[2.948,-2.948],[0,-7.486],[-1.35,-0.365],[0,0],[-3.723,-1.337],[0,-2.651],[1.711,-1.711],[0,0],[0,0],[7.29,0],[4.808,-4.804],[0,-14.579]],"v":[[104.295,-52.13],[-56.356,-52.13],[-75.077,-44.341],[-82.864,-25.621],[-56.697,0.882],[-56.356,0.887],[-37.512,0.887],[-28.038,10.521],[-30.869,17.328],[-34.444,19.598],[-81.876,19.598],[-114.536,19.598],[-126.023,24.378],[-130.803,35.864],[-114.536,52.13],[21.004,52.13],[32.491,47.349],[37.271,35.864],[25.238,20.159],[21.004,19.598],[-5.973,19.598],[-12.379,10.521],[-9.546,3.714],[-2.903,0.887],[38.391,0.887],[104.295,0.887],[123.014,-6.901],[130.803,-25.621]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[131.053,52.379],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-45.5544018554688,"op":927.871237792969,"st":-45.5544018554688,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"Слой 53 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-15.584,"s":[171.101,281.032,0],"to":[236.333,0,0],"ti":[-236.333,0,0]},{"t":74.3256030273437,"s":[1589.101,281.032,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[87.34,25.986,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.296,-7.482],[13.877,0],[0,0],[5.515,6.244],[0.383,0.382],[7.077,0],[0,0],[0,9.045],[-9.045,0],[0,0],[-4.663,-4.667]],"o":[[-0.55,13.866],[0,0],[-8.33,0],[-0.359,-0.406],[-4.663,-4.668],[0,0],[-9.045,0],[0,-9.044],[0,0],[7.077,0],[4.894,4.89]],"v":[[86.795,1.032],[60.699,25.735],[59.915,25.735],[38.256,15.763],[37.143,14.58],[18.969,7.019],[-70.713,7.019],[-87.09,-9.359],[-70.713,-25.735],[61.079,-25.735],[79.254,-18.174]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[87.34,25.985],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-15.5844006347656,"op":617.382025146484,"st":-15.5844006347656,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"Слой 56 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-65.934,"s":[175.333,629.13,0],"to":[232.333,0,0],"ti":[-232.333,0,0]},{"t":9.590400390625,"s":[1569.333,629.13,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[71.028,21.165,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.24,-6.081],[11.277,0],[0,0],[4.482,5.074],[0.312,0.31],[5.752,0],[0,0],[0,7.35],[-7.35,0],[0,0],[-3.79,-3.793]],"o":[[-0.447,11.27],[0,0],[-6.769,0],[-0.291,-0.33],[-3.79,-3.793],[0,0],[-7.35,0],[0,-7.351],[0,0],[5.752,0],[3.977,3.973]],"v":[[70.538,0.839],[49.331,20.915],[48.693,20.915],[31.09,12.811],[30.185,11.849],[15.415,5.704],[-57.47,5.704],[-70.778,-7.605],[-57.47,-20.915],[49.64,-20.915],[64.41,-14.77]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[71.028,21.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-65.9340026855469,"op":617.382025146484,"st":-65.9340026855469,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"Слой 57 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-56.344,"s":[123.481,724.8,0],"to":[255.667,0,0],"ti":[-255.667,0,0]},{"t":77.9220031738281,"s":[1657.481,724.8,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[142.665,73.113,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.143,0],[0,0],[0,0],[0,5.963],[-2.351,2.351],[-2.876,0.389],[0,0],[-0.746,0.083],[-3.412,3.407],[0,5.938],[11.875,0],[0,0],[0,0],[0,6.173],[-2.351,2.352],[-2.225,0.597],[0,0],[-1.078,0.292],[-1.583,1.583],[0,3.569],[7.142,0],[0,0],[2.356,-2.352],[0,-3.569],[-5.523,-1.493],[-1.165,0],[0,0],[0,-5.974],[2.351,-2.352],[2.444,-0.546],[0,0],[1.191,-0.206],[3.093,-3.094],[0,-5.943],[-10.82,-1.142],[-0.768,0],[0,0],[0,-6.545],[2.352,-2.352],[2.212,-0.602],[0,0],[1.087,-0.301],[1.575,-1.575],[0,-3.569],[-7.142,0],[0,0],[-2.352,2.356],[0,3.569]],"o":[[0,0],[0,0],[-5.506,-1.505],[0,-3.574],[1.968,-1.963],[0,0],[0.768,0],[5.034,-0.532],[3.914,-3.915],[0,-11.88],[0,0],[0,0],[-5.798,-1.292],[0,-3.569],[1.584,-1.588],[0,0],[1.169,0],[2.221,-0.603],[2.353,-2.356],[0,-7.142],[0,0],[-3.569,0],[-2.352,2.355],[0,5.977],[1.073,0.292],[0,0],[5.524,1.497],[0,3.572],[-1.719,1.72],[0,0],[-1.248,0],[-4.481,0.772],[-3.914,3.913],[0,11.108],[0.75,0.083],[0,0],[6.314,0.868],[0,3.573],[-1.574,1.574],[0,0],[-1.178,0],[-2.207,0.603],[-2.351,2.356],[0,7.142],[0,0],[3.569,0],[2.356,-2.351],[0,-7.142]],"v":[[129.427,46.889],[106.448,46.889],[25.888,46.889],[16.307,34.365],[20.12,25.193],[27.546,21.501],[71.698,21.501],[73.975,21.38],[86.949,15.159],[93.293,-0.089],[71.698,-21.685],[53.574,-21.685],[-43.251,-21.685],[-53.416,-34.359],[-49.603,-43.526],[-43.805,-46.895],[-38.242,-46.895],[-34.866,-47.344],[-29.072,-50.708],[-25.258,-59.878],[-38.242,-72.862],[-129.43,-72.862],[-138.601,-69.049],[-142.414,-59.878],[-132.803,-47.344],[-129.43,-46.895],[-93.111,-46.895],[-83.499,-34.359],[-87.311,-25.19],[-93.664,-21.685],[-102.372,-21.685],[-106.033,-21.372],[-117.624,-15.341],[-123.968,-0.089],[-104.65,21.38],[-102.372,21.501],[-57.051,21.501],[-45.833,34.365],[-49.647,43.536],[-55.414,46.889],[-70.536,46.889],[-73.944,47.347],[-79.707,50.703],[-83.52,59.873],[-70.536,72.862],[129.427,72.862],[138.597,69.044],[142.414,59.873]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[142.664,73.113],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-56.3436022949219,"op":617.382025146484,"st":-56.3436022949219,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"Слой 58 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-87.512,"s":[112.029,592.425,0],"to":[255.667,0,0],"ti":[-255.667,0,0]},{"t":32.3676013183594,"s":[1646.029,592.425,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[140.143,40.884,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.484,0],[0,0],[0,0],[0,7.484],[2.467,2.467],[2.483,0.59],[0,0],[0.125,0.011],[0.89,0.216],[1.752,1.746],[0,3.742],[-7.484,0],[0,0],[-2.467,-2.466],[0,-3.743],[5.981,-1.423],[1.083,0],[0,0],[0,0],[0,-6.402],[-2.465,-2.467],[-3.742,0],[0,0],[0,0],[-2.467,-2.467],[0,-3.742],[7.485,0],[0,0],[2.466,2.467],[0,3.743]],"o":[[0,0],[0,0],[7.485,0],[0,-3.743],[-1.752,-1.752],[0,0],[-0.124,0],[-0.952,-0.022],[-2.484,-0.59],[-2.466,-2.467],[0,-7.485],[0,0],[3.743,0],[2.466,2.467],[0,6.401],[-1.01,0.244],[0,0],[0,0],[-5.981,1.429],[0,3.742],[2.467,2.467],[0,0],[0,0],[3.742,0],[2.466,2.466],[0,7.485],[0,0],[-3.742,0],[-2.466,-2.467],[0,-7.484]],"v":[[-126.284,13.418],[-32.163,13.418],[-26.426,13.418],[-12.817,-0.189],[-16.814,-9.801],[-23.278,-13.424],[-31.789,-13.424],[-32.163,-13.435],[-34.935,-13.798],[-41.4,-17.415],[-45.397,-27.025],[-31.789,-40.634],[126.285,-40.634],[135.895,-36.637],[139.893,-27.025],[129.431,-13.798],[126.285,-13.424],[26.425,-13.424],[19.495,-13.424],[9.035,-0.189],[13.031,9.421],[22.644,13.418],[26.425,13.418],[31.789,13.418],[41.399,17.416],[45.396,27.026],[31.789,40.634],[-126.284,40.634],[-135.896,36.637],[-139.893,27.026]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[140.143,40.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-87.5124035644531,"op":617.382025146484,"st":-87.5124035644531,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"Слой 59 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-26.374,"s":[231.244,698.901,0],"to":[228,0,0],"ti":[-228,0,0]},{"t":76.723203125,"s":[1599.244,698.901,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[36.77,13.858,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.484,0],[0,0],[0,7.484],[-7.484,0],[0,0],[0,-7.485]],"o":[[0,0],[-7.484,0],[0,-7.485],[0,0],[7.484,0],[0,7.484]],"v":[[22.914,13.607],[-22.914,13.607],[-36.521,0],[-22.914,-13.607],[22.914,-13.607],[36.521,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[36.77,13.858],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-26.3736010742188,"op":618.580825195313,"st":-26.3736010742188,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"Слой 60 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-21.578,"s":[152.818,550.319,0],"to":[240.333,0,0],"ti":[-240.333,0,0]},{"t":56.3436022949219,"s":[1594.818,550.319,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[92.644,13.609,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.484,0],[0,0],[0,7.484],[-7.485,0],[0,0],[0,-7.484]],"o":[[0,0],[-7.485,0],[0,-7.484],[0,0],[7.484,0],[0,7.484]],"v":[[79.037,13.607],[-79.036,13.607],[-92.644,0],[-79.036,-13.607],[79.037,-13.607],[92.644,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[92.894,13.857],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-21.5784008789062,"op":617.382025146484,"st":-21.5784008789062,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"Слой 61 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-97.103,"s":[39.175,306.614,0],"to":[185.765,0,0],"ti":[-453.436,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1198.097,306.614,0],"to":[303.245,0,0],"ti":[-124.235,0,0]},{"t":58.7412023925781,"s":[1899.175,306.614,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[231.563,58.276,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.229,0],[0,0],[5.347,-5.346],[0,-8.114],[-16.054,-0.201],[-0.125,0],[0,0],[0,-5.839],[1.944,-1.945],[1.512,-0.541],[0,0],[0,0],[3.281,-3.282],[0,-4.981],[-9.956,0],[0,0],[-3.281,3.282],[0,4.98],[7.694,2.088],[1.627,0],[0,0],[0,4.64],[-1.944,1.945],[-2.879,0.045],[0,0],[0,0],[-5.347,5.347],[0,8.114]],"o":[[0,0],[-8.113,0],[-5.352,5.347],[0,16.103],[0.125,0.005],[0,0],[5.817,0.098],[0,2.951],[-1.113,1.113],[0,0],[0,0],[-4.98,0],[-3.281,3.281],[0,9.956],[0,0],[4.981,0],[3.281,-3.281],[0,-8.334],[-1.502,-0.406],[0,0],[-4.144,-1.489],[0,-2.95],[1.905,-1.904],[0,0],[0,0],[8.114,0],[5.351,-5.346],[0,-16.228]],"v":[[201.807,-58.027],[22.981,-58.027],[2.144,-49.358],[-6.525,-28.52],[22.601,0.981],[22.981,0.986],[43.958,0.986],[54.503,11.711],[51.352,19.289],[47.372,21.815],[-5.425,21.815],[-213.207,21.815],[-225.993,27.134],[-231.312,39.92],[-213.207,58.027],[109.094,58.027],[121.881,52.706],[127.201,39.92],[113.807,22.44],[109.094,21.815],[79.065,21.815],[71.934,11.711],[75.086,4.133],[82.481,0.986],[128.449,0.986],[201.807,0.986],[222.643,-7.684],[231.313,-28.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[231.563,58.277],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-97.1028039550781,"op":624.574825439453,"st":-97.1028039550781,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"Слой 62 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-63.536,"s":[-20.141,771.36,0],"to":[298.333,0,0],"ti":[-298.333,0,0]},{"t":29.9700012207031,"s":[1769.859,771.36,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[274.285,68.993,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-19.226,0],[0,0],[-6.334,-6.334],[0,-9.612],[19.019,-0.238],[0.148,0],[0,0],[0,-6.917],[-2.304,-2.304],[-1.79,-0.641],[0,0],[0,0],[-3.888,-3.887],[0,-5.899],[11.795,0],[0,0],[3.887,3.887],[0,5.901],[-9.115,2.473],[-1.928,0],[0,0],[0,5.497],[2.305,2.303],[3.411,0.053],[0,0],[0,0],[6.334,6.334],[0,9.613]],"o":[[0,0],[9.613,0],[6.34,6.334],[0,19.077],[-0.148,0.006],[0,0],[-6.891,0.116],[0,3.495],[1.32,1.319],[0,0],[0,0],[5.9,0],[3.887,3.887],[0,11.795],[0,0],[-5.899,0],[-3.887,-3.887],[0,-9.872],[1.779,-0.482],[0,0],[4.909,-1.764],[0,-3.496],[-2.256,-2.257],[0,0],[0,0],[-9.613,0],[-6.34,-6.335],[0,-19.226]],"v":[[-239.079,-68.743],[-27.226,-68.743],[-2.54,-58.473],[7.73,-33.787],[-26.776,1.163],[-27.226,1.169],[-52.076,1.169],[-64.57,13.875],[-60.837,22.852],[-56.123,25.844],[6.427,25.844],[252.585,25.844],[267.733,32.147],[274.035,47.294],[252.585,68.743],[-129.244,68.743],[-144.391,62.441],[-150.694,47.294],[-134.826,26.586],[-129.244,25.844],[-93.668,25.844],[-85.221,13.875],[-88.955,4.898],[-97.715,1.169],[-152.172,1.169],[-239.079,1.169],[-263.765,-9.1],[-274.035,-33.787]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[274.285,68.994],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-63.5364025878906,"op":617.382025146484,"st":-63.5364025878906,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"Слой 63 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-123.476,"s":[87.049,697.095,0],"to":[265,0,0],"ti":[-265,0,0]},{"t":13.1868005371094,"s":[1677.049,697.095,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[182.177,38.725,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.161,0],[0,0],[0,21.162],[-21.161,0],[0,0],[0,-21.161]],"o":[[0,0],[-21.161,0],[0,-21.161],[0,0],[21.161,0],[0,21.162]],"v":[[143.451,38.475],[-143.452,38.475],[-181.927,-0.001],[-143.452,-38.475],[143.451,-38.475],[181.927,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[182.177,38.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-123.476405029297,"op":617.382025146484,"st":-123.476405029297,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"Слой 64 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-62.338,"s":[71.441,789.411,0],"to":[270.333,0,0],"ti":[-270.333,0,0]},{"t":73.1268029785156,"s":[1693.441,789.411,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[182.176,38.724,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.161,0],[0,0],[0,21.162],[-21.161,0],[0,0],[0,-21.161]],"o":[[0,0],[-21.161,0],[0,-21.161],[0,0],[21.161,0],[0,21.162]],"v":[[143.451,38.474],[-143.452,38.474],[-181.926,0],[-143.452,-38.474],[143.451,-38.474],[181.926,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[182.176,38.724],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-62.3376025390625,"op":617.382025146484,"st":-62.3376025390625,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"Слой 66 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-101.898,"s":[-146.466,605.374,0],"to":[340.333,0,0],"ti":[-340.333,0,0]},{"t":77.9220031738281,"s":[1895.534,605.374,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[405.616,73.594,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.582,0],[0,0],[6.781,-6.781],[0,-10.291],[-20.361,-0.255],[-0.159,0],[0,0],[0,-7.405],[2.467,-2.466],[1.916,-0.687],[0,0],[0,0],[4.162,-4.162],[0,-6.317],[-12.627,0],[0,0],[-4.161,4.162],[0,6.316],[9.758,2.647],[2.063,0],[0,0],[0,5.886],[-2.466,2.466],[-3.651,0.056],[0,0],[0,0],[-6.782,6.781],[0,10.291]],"o":[[0,0],[-10.292,0],[-6.787,6.781],[0,20.424],[0.158,0.006],[0,0],[7.376,0.125],[0,3.742],[-1.412,1.412],[0,0],[0,0],[-6.316,0],[-4.162,4.162],[0,12.627],[0,0],[6.316,0],[4.162,-4.162],[0,-10.569],[-1.905,-0.517],[0,0],[-5.256,-1.889],[0,-3.742],[2.416,-2.416],[0,0],[0,0],[10.291,0],[6.787,-6.782],[0,-20.582]],"v":[[368.192,-73.593],[-300.516,-73.593],[-326.944,-62.599],[-337.938,-36.171],[-300.998,1.245],[-300.516,1.251],[-273.913,1.251],[-260.537,14.853],[-264.535,24.464],[-269.581,27.668],[-336.544,27.668],[-382.652,27.668],[-398.868,34.415],[-405.615,50.631],[-382.652,73.594],[250.608,73.594],[266.824,66.847],[273.571,50.631],[256.584,28.462],[250.608,27.668],[-229.387,27.668],[-238.431,14.853],[-234.433,5.243],[-225.055,1.251],[275.153,1.251],[368.192,1.251],[394.62,-9.743],[405.614,-36.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.51,0.51,0.51,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":[405.615,73.596],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-101.898004150391,"op":617.382025146484,"st":-101.898004150391,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"Слой 67 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-46.753,"s":[-105.758,453.7,0],"to":[329.333,0,0],"ti":[-329.333,0,0]},{"t":67.132802734375,"s":[1870.242,453.7,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[367.057,37.919,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.582,0],[0,0],[0,20.582],[-20.582,0],[0,0],[0,-20.582]],"o":[[0,0],[-20.582,0],[0,-20.582],[0,0],[20.582,0],[0,20.582]],"v":[[329.636,37.422],[-329.635,37.422],[-367.057,0],[-329.635,-37.422],[329.636,-37.422],[367.058,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.19,0.19,0.19,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":[367.307,37.672],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-46.7532019042969,"op":617.382025146484,"st":-46.7532019042969,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"Слой 68 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-38.362,"s":[104.1,669.662,0],"to":[258,0,0],"ti":[-258,0,0]},{"t":134.26560546875,"s":[1652.1,669.662,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[161.956,94.068,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[15.708,0],[0,0],[5.176,-5.176],[0,-7.855],[-15.54,-0.194],[-0.121,0],[0,0],[0,-5.651],[1.882,-1.883],[0.171,-0.151],[0,0],[0,-15.708],[-5.18,-5.176],[-7.854,0],[0,0],[0,0],[-1.843,-1.843],[0,-2.856],[4.011,-1.441],[0,0],[1.454,-0.393],[0,-8.065],[-3.177,-3.176],[-4.821,0],[0,0],[0,9.638],[3.177,3.177],[4.821,0],[0,0],[0,0],[1.077,1.078],[0,2.856],[-5.629,0.095],[0,0],[-0.121,0.004],[0,15.587],[5.18,5.176],[7.854,0],[0,0],[0,3.102],[-1.883,1.883],[-2.787,0.044],[0,0],[0,0],[-5.175,5.176],[0,7.853]],"o":[[0,0],[-7.854,0],[-5.179,5.174],[0,15.586],[0.121,0.004],[0,0],[5.63,0.096],[0,2.855],[-0.161,0.161],[0,0],[-15.708,0],[0,7.855],[5.175,5.176],[0,0],[0,0],[2.788,0.043],[1.883,1.883],[0,4.492],[0,0],[-1.575,0],[-7.448,2.022],[0,4.822],[3.176,3.176],[0,0],[9.637,0],[0,-4.82],[-3.176,-3.175],[0,0],[0,0],[-1.462,-0.523],[-1.883,-1.882],[0,-5.652],[0,0],[0.121,0],[15.539,-0.195],[0,-7.854],[-5.176,-5.174],[0,0],[-2.174,-1.907],[0,-2.856],[1.843,-1.844],[0,0],[0,0],[7.854,0],[5.18,-5.174],[0,-15.709]],"v":[[133.146,-93.819],[-39.948,-93.819],[-60.118,-85.427],[-68.509,-65.257],[-40.315,-36.702],[-39.948,-36.698],[-19.645,-36.698],[-9.436,-26.316],[-12.487,-18.981],[-12.987,-18.515],[-133.146,-18.515],[-161.706,10.045],[-153.315,30.215],[-133.146,38.605],[-62.138,38.605],[-17.646,38.605],[-10.487,41.652],[-7.436,48.986],[-14.339,58.767],[-43.406,58.767],[-47.966,59.371],[-60.931,76.292],[-55.781,88.668],[-43.406,93.819],[102.633,93.819],[120.159,76.292],[115.009,63.915],[102.633,58.767],[67.443,58.767],[16.337,58.767],[12.487,56.322],[9.435,48.986],[19.643,38.605],[39.948,38.605],[40.315,38.602],[68.508,10.045],[60.117,-10.125],[39.948,-18.515],[10.988,-18.515],[7.436,-26.316],[10.487,-33.651],[17.644,-36.698],[62.138,-36.698],[133.146,-36.698],[153.315,-45.09],[161.706,-65.257]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[161.956,94.069],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-38.3616015625,"op":617.382025146484,"st":-38.3616015625,"bm":0},{"ddd":0,"ind":43,"ty":4,"nm":"a1 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2.65,416.26,0],"to":[296.333,0,0],"ti":[-296.333,0,0]},{"t":152.247606201172,"s":[1780.65,416.26,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[263.579,39.033,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.33,0],[0,0],[0,21.331],[-21.33,0],[0,0],[0,-21.33]],"o":[[0,0],[-21.33,0],[0,-21.33],[0,0],[21.33,0],[0,21.331]],"v":[[224.547,38.782],[-224.547,38.782],[-263.329,0],[-224.547,-38.782],[224.547,-38.782],[263.329,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.59,0.59,0.59,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":[263.579,39.033],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":0,"op":738.460830078125,"st":0,"bm":0},{"ddd":0,"ind":44,"ty":4,"nm":"Слой 70 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-20.38,"s":[26.604,722.326,0],"to":[284,0,0],"ti":[-284,0,0]},{"t":115.0848046875,"s":[1730.604,722.326,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[238.603,31.116,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.976,0],[0,0],[0,16.976],[-16.976,0],[0,0],[0,-16.976]],"o":[[0,0],[-16.976,0],[0,-16.976],[0,0],[16.976,0],[0,16.976]],"v":[[207.487,30.865],[-207.487,30.865],[-238.353,0],[-207.487,-30.865],[207.487,-30.865],[238.353,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.73,0.73,0.73,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":[238.603,31.116],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-20.3796008300781,"op":617.382025146484,"st":-20.3796008300781,"bm":0},{"ddd":0,"ind":45,"ty":4,"nm":"Слой 71 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-16.783,"s":[99.001,361.47,0],"to":[264,0,0],"ti":[-264,0,0]},{"t":91.1088037109375,"s":[1683.001,361.47,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut();"},"a":{"a":0,"k":[164.161,49.399,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.675,0],[0,0],[4.505,-4.506],[0,-6.838],[-13.529,-0.17],[-0.106,0],[0,0],[0,-4.921],[1.639,-1.639],[1.274,-0.456],[0,0],[0,0],[2.766,-2.765],[0,-4.197],[-8.39,0],[0,0],[-2.765,2.766],[0,4.196],[6.483,1.759],[1.372,0],[0,0],[0,3.91],[-1.638,1.639],[-2.427,0.038],[0,0],[0,0],[-4.506,4.506],[0,6.838]],"o":[[0,0],[-6.838,0],[-4.51,4.506],[0,13.57],[0.106,0.003],[0,0],[4.901,0.084],[0,2.486],[-0.938,0.938],[0,0],[0,0],[-4.196,0],[-2.765,2.765],[0,8.389],[0,0],[4.197,0],[2.765,-2.765],[0,-7.023],[-1.266,-0.343],[0,0],[-3.492,-1.255],[0,-2.487],[1.605,-1.605],[0,0],[0,0],[6.837,0],[4.509,-4.505],[0,-13.676]],"v":[[139.297,-48.898],[-94.329,-48.898],[-111.889,-41.593],[-119.194,-24.033],[-94.65,0.828],[-94.329,0.831],[-76.653,0.831],[-67.766,9.87],[-70.422,16.255],[-73.775,18.384],[-118.267,18.384],[-148.904,18.384],[-159.679,22.867],[-164.161,33.642],[-148.904,48.898],[-21.763,48.898],[-10.988,44.416],[-6.505,33.642],[-17.791,18.911],[-21.763,18.384],[-47.068,18.384],[-53.077,9.87],[-50.421,3.484],[-44.189,0.831],[-5.453,0.831],[139.297,0.831],[156.857,-6.474],[164.161,-24.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.37,0.37,0.37,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":[164.411,49.149],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":-16.7832006835938,"op":617.382025146484,"st":-16.7832006835938,"bm":0},{"ddd":0,"ind":46,"ty":4,"nm":"Слой 72 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[882.109,540.086,0],"ix":2},"a":{"a":0,"k":[604.077,308.878,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[603.827,308.628],[-603.827,308.628],[-603.827,-308.628],[603.827,-308.628]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.97,0.97,0.97,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":[604.077,308.878],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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}],"ip":0,"op":623.376025390625,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"back","refId":"comp_0","sr":1.4131455399061,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":40,"ix":10},"p":{"a":0,"k":[1440,284,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[176.8,176.8,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":0,"op":301.000012259981,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"back","refId":"comp_0","sr":1.4131455399061,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":40,"ix":10},"p":{"a":0,"k":[672,1060,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[176.8,176.8,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":0,"op":301.000012259981,"st":-91.4802628809969,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/complete_fix.sql b/complete_fix.sql new file mode 100644 index 0000000..94305cb --- /dev/null +++ b/complete_fix.sql @@ -0,0 +1,86 @@ +-- ===================================================== +-- SCRIPT COMPLETO PARA CORRIGIR PROBLEMAS DO SUPABASE +-- ===================================================== + +-- 1. CRIAR TABELA USERS SE NÃO EXISTIR +CREATE TABLE IF NOT EXISTS public.users ( + id UUID REFERENCES auth.users(id) PRIMARY KEY, + name TEXT, + email TEXT, + created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), + updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW() +); + +-- 2. REMOVER TRIGGERS E FUNÇÕES ANTIGAS +DROP TRIGGER IF EXISTS on_auth_user_created ON auth.users; +DROP FUNCTION IF EXISTS public.handle_new_user(); + +-- 3. CRIAR FUNÇÃO DE TRIGGER CORRETA +CREATE OR REPLACE FUNCTION public.handle_new_user() +RETURNS TRIGGER AS $$ +BEGIN + INSERT INTO public.users (id, name, email) + VALUES ( + NEW.id, + COALESCE(NEW.raw_user_meta_data->>'name', 'User'), + NEW.email + ); + RETURN NEW; +EXCEPTION + WHEN duplicate_key THEN + -- User already exists, ignore + RETURN NEW; +END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +-- 4. CRIAR TRIGGER +CREATE TRIGGER on_auth_user_created + AFTER INSERT ON auth.users + FOR EACH ROW + EXECUTE FUNCTION public.handle_new_user(); + +-- 5. DESABILITAR RLS PARA A TABELA USERS (TEMPORÁRIO) +ALTER TABLE public.users DISABLE ROW LEVEL SECURITY; + +-- 6. DAR PERMISSÕES COMPLETAS PARA ANON E AUTHENTICATED +GRANT ALL ON public.users TO anon; +GRANT ALL ON public.users TO authenticated; +GRANT ALL ON public.users TO service_role; + +-- 7. VERIFICAR ESTRUTURA DA TABELA +SELECT + column_name, + data_type, + is_nullable, + column_default +FROM information_schema.columns +WHERE table_name = 'users' + AND table_schema = 'public' +ORDER BY ordinal_position; + +-- 8. VERIFICAR PERMISSÕES +SELECT + grantee, + table_name, + privilege_type +FROM information_schema.role_table_grants +WHERE table_name = 'users' + AND table_schema = 'public'; + +-- 9. VERIFICAR TRIGGERS +SELECT + trigger_name, + event_manipulation, + action_timing, + action_condition, + action_statement +FROM information_schema.triggers +WHERE event_object_table = 'users' + OR event_object_table = 'users'; + +-- 10. VERIFICAR FUNÇÕES +SELECT + proname, + prosrc +FROM pg_proc +WHERE proname = 'handle_new_user'; diff --git a/fix_users_table.sql b/fix_users_table.sql new file mode 100644 index 0000000..66918c6 --- /dev/null +++ b/fix_users_table.sql @@ -0,0 +1,34 @@ +-- Primeiro, remova qualquer trigger existente +DROP TRIGGER IF EXISTS on_auth_user_created; + +-- Remova a função existente +DROP FUNCTION IF EXISTS public.handle_new_user(); + +-- Crie a função simplificada +CREATE OR REPLACE FUNCTION public.handle_new_user() +RETURNS TRIGGER AS $$ +BEGIN + -- Insere o usuário na tabela users com os dados básicos + INSERT INTO public.users (id, name, email, created_at, updated_at) + VALUES ( + NEW.id, + COALESCE(NEW.raw_user_meta_data->>'name', 'User'), + NEW.email, + NOW(), + NOW() + ); + RETURN NEW; +END; +$$ LANGUAGE plpgsql SECURITY DEFINER; + +-- Crie o trigger novamente +CREATE TRIGGER on_auth_user_created + AFTER INSERT ON auth.users + FOR EACH ROW + EXECUTE FUNCTION public.handle_new_user(); + +-- Verifique se a tabela users existe e está correta +SELECT column_name, data_type +FROM information_schema.columns +WHERE table_name = 'users' + AND table_schema = 'public'; diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..1dc6cf7 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 13.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000..8563839 --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,20 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '12.0' + +# CocoaPods analytics sends network requests to Google Analytics. To see this data in action, +# install the 'cocoapods-generate-settings' plugin and run `pod install` once. +# This is disabled by default to avoid sending analytics before the plugin is installed. +# See: https://github.com/CocoaPods/CocoaPods/pull/8198 +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + + # Google Maps + pod 'GoogleMaps', '4.1.0' +end diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a051b41 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,616 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..e3773d4 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..c9f6694 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,20 @@ +import Flutter +import UIKit +import GoogleMaps + +@main +@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + // TODO: Replace with your actual Google Maps API Key + GMSServices.provideAPIKey("AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k") + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) { + GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry) + } +} + \ No newline at end of file diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..58af54f --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,54 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Run Vision Pro + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + run_vision_pro + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + NSLocationWhenInUseUsageDescription + Este app precisa acessar sua localização para mostrar rotas de caminhada + NSLocationAlwaysAndWhenInUseUsageDescription + Este app precisa acessar sua localização para fornecer navegação precisa + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/lib/constants/app_colors.dart b/lib/constants/app_colors.dart new file mode 100644 index 0000000..64d8567 --- /dev/null +++ b/lib/constants/app_colors.dart @@ -0,0 +1,14 @@ +import 'package:flutter/material.dart'; + +class AppColors { + // Background colors + static const Color background = Color.fromARGB(255, 49, 53, 77); + static const Color coral = Color(0xFFFF6B6B); + + // Button colors + static const Color buttonColor = Color.fromARGB(255, 112, 112, 112); + static const Color white = Colors.white; + + // Neutral colors + static const Color backgroundGrey = Color.fromARGB(255, 89, 89, 89); +} diff --git a/lib/constants/app_constants.dart b/lib/constants/app_constants.dart new file mode 100644 index 0000000..01de43b --- /dev/null +++ b/lib/constants/app_constants.dart @@ -0,0 +1,10 @@ +class AppConstants { + // Supabase Configuration + static const String supabaseUrl = 'https://kiltpvuchpinspggkzdj.supabase.co'; + static const String supabaseAnonKey = + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImtpbHRwdnVjaHBpbnNwZ2dremRqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzA4MjQ3NzcsImV4cCI6MjA4NjQwMDc3N30.h_63zAzHJELZufITa74-lM400lDb8B3jj3B-laebusQ'; + + // App Configuration + static const String appName = 'Run Vision Pro'; + static const String appVersion = '1.0.0'; +} diff --git a/lib/constants/app_strings.dart b/lib/constants/app_strings.dart new file mode 100644 index 0000000..c9f2c03 --- /dev/null +++ b/lib/constants/app_strings.dart @@ -0,0 +1,8 @@ +class AppStrings { + // Initial screen + static const String registrar = 'Registrar'; + static const String entrar = 'Entrar'; + + // Common + static const String appTitle = 'Run Vision Pro'; +} diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..118d08f --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,46 @@ +import 'package:flutter/material.dart'; +import 'screens/inicial_screen.dart'; +import 'constants/app_strings.dart'; +import 'services/supabase_service.dart'; +import 'constants/app_constants.dart'; + +void main() async { + WidgetsFlutterBinding.ensureInitialized(); + + // Initialize Supabase + await SupabaseService.initialize(); + + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({super.key}); + + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: AppStrings.appTitle, + debugShowCheckedModeBanner: false, + theme: ThemeData( + // This is the theme of your application. + // + // TRY THIS: Try running your application with "flutter run". You'll see + // the application has a purple toolbar. Then, without quitting the app, + // try changing the seedColor in the colorScheme below to Colors.green + // and then invoke "hot reload" (save your changes or press the "hot + // reload" button in a Flutter-supported IDE, or press "r" if you used + // the command line to start the app). + // + // Notice that the counter didn't reset back to zero; the application + // state is not lost during the reload. To reset the state, use hot + // restart instead. + // + // This works for code too, not just values: Most code changes can be + // tested with just a hot reload. + colorScheme: .fromSeed(seedColor: Colors.deepPurple), + ), + home: const InicialScreen(), + ); + } +} diff --git a/lib/screens/google_maps_screen.dart b/lib/screens/google_maps_screen.dart new file mode 100644 index 0000000..92c47d1 --- /dev/null +++ b/lib/screens/google_maps_screen.dart @@ -0,0 +1,891 @@ +import 'package:flutter/material.dart'; +import 'package:google_maps_flutter/google_maps_flutter.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:permission_handler/permission_handler.dart'; +import 'package:http/http.dart' as http; +import 'dart:convert'; +import '../constants/app_colors.dart'; + +class GoogleMapScreen extends StatefulWidget { + const GoogleMapScreen({super.key}); + + @override + State createState() => _GoogleMapScreenState(); +} + +class _GoogleMapScreenState extends State { + late GoogleMapController mapController; + final Set _markers = {}; + Set _polylines = {}; + + LatLng? _currentLocation; + LatLng? _destination; + bool _isGettingLocation = true; + bool _isRequestingPermission = true; + final TextEditingController _searchController = TextEditingController(); + List> _placeSuggestions = []; + bool _isSearching = false; + + @override + void initState() { + super.initState(); + _requestLocationPermission(); + } + + Future _requestLocationPermission() async { + try { + print('🔐 Solicitando permissões de localização...'); + + // Verificar status atual das permissões + Map statuses = await [ + Permission.location, + Permission.locationWhenInUse, + Permission.locationAlways, + ].request(); + + bool locationGranted = + (statuses[Permission.location]?.isGranted == true) || + (statuses[Permission.locationWhenInUse]?.isGranted == true); + + if (locationGranted) { + print('✅ Permissões de localização concedidas'); + setState(() { + _isRequestingPermission = false; + }); + _getCurrentLocation(); + } else { + print('❌ Permissões de localização negadas'); + setState(() { + _isRequestingPermission = false; + }); + _showLocationPermissionDialog(); + } + } catch (e) { + print('❌ Erro ao solicitar permissões: $e'); + _showSnackBar('Erro ao solicitar permissões de localização', Colors.red); + } + } + + void _showLocationPermissionDialog() { + showDialog( + context: context, + barrierDismissible: false, + builder: (BuildContext context) { + return AlertDialog( + backgroundColor: AppColors.backgroundGrey, + title: const Text( + 'Permissão de Localização', + style: TextStyle( + color: AppColors.white, + fontWeight: FontWeight.bold, + ), + ), + content: const Text( + 'Este aplicativo precisa acessar sua localização para mostrar rotas de caminhada e calcular distâncias. Por favor, habilite a localização nas configurações do seu dispositivo.', + style: TextStyle(color: AppColors.white), + ), + actions: [ + TextButton( + onPressed: () { + Navigator.of(context).pop(); + _openAppSettings(); + }, + child: const Text( + 'Abrir Configurações', + style: TextStyle(color: AppColors.coral), + ), + ), + TextButton( + onPressed: () { + Navigator.of(context).pop(); + Navigator.of(context).pop(); // Volta para a tela anterior + }, + child: const Text( + 'Cancelar', + style: TextStyle(color: AppColors.white), + ), + ), + ], + ); + }, + ); + } + + Future _openAppSettings() async { + try { + await openAppSettings(); + } catch (e) { + print('❌ Erro ao abrir configurações: $e'); + _showSnackBar('Não foi possível abrir as configurações', Colors.red); + } + } + + Future _getCurrentLocation() async { + try { + print('🔍 Iniciando busca de localização...'); + + // Verificar permissões de localização + LocationPermission permission = await Geolocator.checkPermission(); + print('📍 Permissão atual: $permission'); + + if (permission == LocationPermission.denied) { + print('❌ Permissão negada, solicitando...'); + permission = await Geolocator.requestPermission(); + if (permission == LocationPermission.denied) { + _showSnackBar( + 'Permissão de localização negada. Habilite nas configurações.', + AppColors.coral, + ); + return; + } + } + + if (permission == LocationPermission.deniedForever) { + _showSnackBar( + 'Permissão de localização permanentemente negada. Habilite nas configurações do app.', + AppColors.coral, + ); + return; + } + + // Obter localização atual + print('🛰️ Buscando localização atual...'); + Position position = await Geolocator.getCurrentPosition( + desiredAccuracy: LocationAccuracy.high, + timeLimit: const Duration(seconds: 10), + ); + + print( + '✅ Localização encontrada: ${position.latitude}, ${position.longitude}', + ); + + setState(() { + _currentLocation = LatLng(position.latitude, position.longitude); + _isGettingLocation = false; + }); + + // Adicionar marcador da localização atual + _addCurrentLocationMarker(); + + // Mover câmera para localização atual + if (mounted && _currentLocation != null) { + mapController.animateCamera( + CameraUpdate.newCameraPosition( + CameraPosition(target: _currentLocation!, zoom: 15.0), + ), + ); + } + } catch (e) { + print('❌ Erro ao obter localização: $e'); + setState(() { + _isGettingLocation = false; + }); + _showSnackBar('Erro ao obter localização: ${e.toString()}', Colors.red); + } + } + + void _addCurrentLocationMarker() { + if (_currentLocation != null) { + print('📍 Adicionando marcador de localização atual'); + + // Remover marcador anterior se existir + _markers.removeWhere( + (marker) => marker.markerId.value == 'current_location', + ); + + // Adicionar novo marcador + _markers.add( + Marker( + markerId: const MarkerId('current_location'), + position: _currentLocation!, + infoWindow: const InfoWindow(title: 'Sua Localização'), + icon: BitmapDescriptor.defaultMarkerWithHue(BitmapDescriptor.hueBlue), + ), + ); + + setState(() {}); + } + } + + Future _searchPlaces(String query) async { + if (query.isEmpty) { + setState(() { + _placeSuggestions = []; + }); + return; + } + + setState(() { + _isSearching = true; + }); + + try { + // Usar Google Places API para busca real baseada na localização atual + final String url = + 'https://maps.googleapis.com/maps/api/place/autocomplete/json' + '?input=${Uri.encodeComponent(query)}' + '&location=${_currentLocation?.latitude ?? -23.5505},${_currentLocation?.longitude ?? -46.6333}' + '&radius=30000' // 30km de raio + '&language=pt_BR' + '®ion=br' + '&components=country:br' + '&strictbounds=true' // Força busca dentro da área + '&key=AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k'; + + print('🔍 Buscando lugares: $url'); + print( + '📍 Baseado na localização: ${_currentLocation?.latitude ?? -23.5505}, ${_currentLocation?.longitude ?? -46.6333}', + ); + + final response = await http.get(Uri.parse(url)); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + + if (data['status'] == 'OK') { + final predictions = data['predictions'] as List; + + setState(() { + _placeSuggestions = predictions.map((prediction) { + return { + 'description': prediction['description'], + 'place_id': prediction['place_id'], + 'structured_formatting': prediction['structured_formatting'], + }; + }).toList(); + }); + + print( + '✅ ${_placeSuggestions.length} lugares encontrados próximos à sua localização', + ); + } else { + print( + '❌ Erro na API: ${data['status']} - ${data['error_message'] ?? ''}', + ); + } + } else { + print('❌ Erro HTTP: ${response.statusCode}'); + } + } catch (e) { + print('❌ Erro na busca: $e'); + } finally { + setState(() { + _isSearching = false; + }); + } + } + + Future _selectPlace(Map place) async { + try { + print('📍 Selecionado: ${place['description']}'); + + // Obter detalhes do lugar + final String detailsUrl = + 'https://maps.googleapis.com/maps/api/place/details/json' + '?place_id=${place['place_id']}' + '&fields=geometry' + '&key=AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k'; + + final response = await http.get(Uri.parse(detailsUrl)); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + + if (data['status'] == 'OK') { + final location = data['result']['geometry']['location']; + final destination = LatLng(location['lat'], location['lng']); + + setState(() { + _destination = destination; + _placeSuggestions = []; // Limpar sugestões + }); + + _addDestinationMarker(destination, place['description']); + await _getDirections(); + } + } + } catch (e) { + print('❌ Erro ao selecionar lugar: $e'); + _showSnackBar('Erro ao selecionar destino', Colors.red); + } + } + + void _addDestinationMarker(LatLng location, String name) { + print('📍 Adicionando marcador de destino: $name'); + + setState(() { + // Remover marcador de destino anterior se existir + _markers.removeWhere((marker) => marker.markerId.value == 'destination'); + + // Adicionar novo marcador de destino + _markers.add( + Marker( + markerId: const MarkerId('destination'), + position: location, + infoWindow: InfoWindow(title: name), + icon: BitmapDescriptor.defaultMarkerWithHue( + BitmapDescriptor.hueAzure, + ), + ), + ); + }); + + print('✅ Marcador de destino adicionado: $name'); + } + + Future _getDirections() async { + if (_currentLocation == null || _destination == null) { + print('❌ Localização ou destino nulo'); + return; + } + + try { + print('🛣️ Buscando rota real com Google Directions API...'); + + // Usar Google Directions API para obter rota realista + final String url = + 'https://maps.googleapis.com/maps/api/directions/json' + '?origin=${_currentLocation!.latitude},${_currentLocation!.longitude}' + '&destination=${_destination!.latitude},${_destination!.longitude}' + '&mode=walking' + '&language=pt_BR' + '&key=AIzaSyCk84rxmF044cxKLABf55rEKHDqOcyoV5k'; + + print('🌐 URL da requisição: $url'); + + final response = await http.get(Uri.parse(url)); + print('📡 Status code: ${response.statusCode}'); + + if (response.statusCode == 200) { + final data = json.decode(response.body); + + if (data['status'] == 'OK' && data['routes'].isNotEmpty) { + final route = data['routes'][0]; + final legs = route['legs'][0]; + final steps = legs['steps']; + + print('✅ Rota encontrada com ${steps.length} passos'); + + // Extrair pontos da rota + final List routePoints = []; + + // Adicionar ponto inicial + routePoints.add(_currentLocation!); + + // Processar cada passo da rota + for (var step in steps) { + final startLocation = step['start_location']; + final endLocation = step['end_location']; + + if (startLocation != null) { + routePoints.add( + LatLng(startLocation['lat'], startLocation['lng']), + ); + } + + if (endLocation != null) { + routePoints.add(LatLng(endLocation['lat'], endLocation['lng'])); + } + } + + // Adicionar ponto final + routePoints.add(_destination!); + + print('📍 Total de pontos na rota: ${routePoints.length}'); + + setState(() { + _polylines.clear(); + _polylines.add( + Polyline( + polylineId: const PolylineId('route'), + color: AppColors.backgroundGrey, + width: 5, + points: routePoints, + ), + ); + }); + + // Ajustar câmera para mostrar toda a rota + _adjustCameraToShowRoute(); + + // Calcular distância e tempo + final distance = legs['distance']['text'] ?? 'Calculando...'; + final duration = legs['duration']['text'] ?? 'Calculando...'; + + print('📊 Distância: $distance, Tempo: $duration'); + + _showSnackBar( + 'Rota de caminhada calculada!\nDistância: $distance\nTempo: $duration', + Colors.green, + ); + } else { + print( + '❌ Erro na resposta: ${data['status']} - ${data['error_message']}', + ); + _showSnackBar( + 'Não foi possível calcular a rota. Tente novamente.', + AppColors.coral, + ); + } + } else { + print('❌ Erro HTTP: ${response.statusCode}'); + _showSnackBar( + 'Erro ao conectar com o servidor. Verifique sua internet.', + Colors.red, + ); + } + } catch (e) { + print('❌ Erro ao calcular rota: $e'); + _showSnackBar('Erro ao calcular rota: ${e.toString()}', Colors.red); + } + } + + void _adjustCameraToShowRoute() { + if (_currentLocation == null || _destination == null) return; + + final double padding = 0.01; // Padding para mostrar os marcadores + final bounds = LatLngBounds( + southwest: LatLng( + (_currentLocation!.latitude < _destination!.latitude + ? _currentLocation!.latitude + : _destination!.latitude) - + padding, + (_currentLocation!.longitude < _destination!.longitude + ? _currentLocation!.longitude + : _destination!.longitude) - + padding, + ), + northeast: LatLng( + (_currentLocation!.latitude > _destination!.latitude + ? _currentLocation!.latitude + : _destination!.latitude) + + padding, + (_currentLocation!.longitude > _destination!.longitude + ? _currentLocation!.longitude + : _destination!.longitude) + + padding, + ), + ); + + print('📷 Ajustando câmera para mostrar rota completa'); + mapController.animateCamera(CameraUpdate.newLatLngBounds(bounds, 100)); + } + + void _onMapCreated(GoogleMapController controller) { + print('🗺️ Mapa criado'); + mapController = controller; + } + + void _showSnackBar(String message, Color color) { + print('💬 Mostrando mensagem: $message'); + if (!mounted) return; + + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(message), + backgroundColor: color, + duration: const Duration(seconds: 3), + behavior: SnackBarBehavior.floating, + ), + ); + } + + void _clearRoute() { + print('🧹 Limpando rota...'); + setState(() { + _destination = null; + _polylines.clear(); + _markers.removeWhere((marker) => marker.markerId.value == 'destination'); + }); + _showSnackBar('Rota limpa. Busque um novo destino.', AppColors.coral); + } + + void _centerOnCurrentLocation() { + if (_currentLocation != null) { + print('🎯 Centralizando na localização atual'); + mapController.animateCamera( + CameraUpdate.newCameraPosition( + CameraPosition(target: _currentLocation!, zoom: 15.0), + ), + ); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: AppColors.background, + body: Container( + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: [ + AppColors.backgroundGrey.withOpacity(0.3), + AppColors.background, + ], + ), + ), + child: Stack( + children: [ + // Back button + Positioned( + top: 50, + left: 20, + child: Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity(0.3), + borderRadius: BorderRadius.circular(12), + border: Border.all(color: Colors.white.withOpacity(0.1)), + ), + child: IconButton( + icon: const Icon(Icons.arrow_back, color: Colors.white), + onPressed: () { + Navigator.pop(context); + }, + tooltip: 'Voltar', + ), + ), + ), + + Column( + children: [ + const SizedBox(height: 100), + + // Search section + Padding( + padding: const EdgeInsets.symmetric(horizontal: 24), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text( + 'Buscar Destino:', + style: TextStyle( + color: AppColors.white, + fontSize: 14, + fontWeight: FontWeight.w500, + ), + ), + const SizedBox(height: 12), + + // Search bar + Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity(0.2), + borderRadius: BorderRadius.circular(15), + border: Border.all( + color: AppColors.backgroundGrey.withOpacity(0.3), + ), + ), + child: TextField( + controller: _searchController, + keyboardType: TextInputType.text, + textInputAction: TextInputAction.search, + enableSuggestions: true, + autocorrect: true, + decoration: InputDecoration( + hintText: + 'Ex: Parque Ibirapuera, Avenida Paulista...', + hintStyle: TextStyle( + color: AppColors.white.withOpacity(0.5), + ), + border: InputBorder.none, + contentPadding: const EdgeInsets.symmetric( + horizontal: 16, + vertical: 12, + ), + prefixIcon: const Icon( + Icons.search, + color: AppColors.white, + ), + suffixIcon: _isSearching + ? const Padding( + padding: EdgeInsets.all(12), + child: SizedBox( + width: 20, + height: 20, + child: CircularProgressIndicator( + color: AppColors.backgroundGrey, + strokeWidth: 2, + ), + ), + ) + : IconButton( + icon: const Icon( + Icons.send, + color: AppColors.backgroundGrey, + ), + onPressed: () => + _searchPlaces(_searchController.text), + ), + ), + style: const TextStyle(color: AppColors.white), + onChanged: (value) { + if (value.length >= 3) { + _searchPlaces(value); + } else { + setState(() { + _placeSuggestions = []; + }); + } + }, + onSubmitted: (value) { + if (_placeSuggestions.isNotEmpty) { + _selectPlace(_placeSuggestions.first); + } + }, + ), + ), + + // Suggestions dropdown + if (_placeSuggestions.isNotEmpty) + Container( + margin: const EdgeInsets.only(top: 8), + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity(0.2), + borderRadius: BorderRadius.circular(15), + border: Border.all( + color: AppColors.backgroundGrey.withOpacity(0.3), + ), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: _placeSuggestions.take(5).map((place) { + return InkWell( + onTap: () => _selectPlace(place), + child: Container( + width: double.infinity, + padding: const EdgeInsets.symmetric( + horizontal: 16, + vertical: 12, + ), + child: Row( + children: [ + const Icon( + Icons.place, + color: AppColors.backgroundGrey, + size: 20, + ), + const SizedBox(width: 12), + Expanded( + child: Text( + place['description'], + style: const TextStyle( + color: AppColors.white, + fontSize: 14, + ), + ), + ), + ], + ), + ), + ); + }).toList(), + ), + ), + ], + ), + ), + + const SizedBox(height: 20), + + // Status bar + Padding( + padding: const EdgeInsets.symmetric(horizontal: 24), + child: Row( + children: [ + Text( + _isRequestingPermission + ? "Solicitando permissões..." + : _isGettingLocation + ? "Obtendo localização..." + : _destination != null + ? "Rota ativa" + : "Defina um destino", + style: const TextStyle( + color: AppColors.white, + fontSize: 14, + fontWeight: FontWeight.w500, + ), + ), + const Spacer(), + if (_isRequestingPermission) + Container( + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 2, + ), + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity(0.2), + borderRadius: BorderRadius.circular(10), + ), + child: const Text( + "PERMISSÃO", + style: TextStyle( + color: AppColors.backgroundGrey, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + ), + ) + else if (_destination != null) + Container( + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 2, + ), + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity(0.2), + borderRadius: BorderRadius.circular(10), + ), + child: const Text( + "ATIVO", + style: TextStyle( + color: AppColors.backgroundGrey, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + ), + ), + ], + ), + ), + + const SizedBox(height: 15), + + // Map + Expanded( + child: Container( + margin: const EdgeInsets.symmetric(horizontal: 20), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(20), + border: Border.all( + color: AppColors.backgroundGrey.withOpacity(0.3), + ), + ), + child: ClipRRect( + borderRadius: BorderRadius.circular(20), + child: Stack( + children: [ + GoogleMap( + onMapCreated: _onMapCreated, + initialCameraPosition: CameraPosition( + target: + _currentLocation ?? + const LatLng(-23.5505, -46.6333), + zoom: 15.0, + ), + markers: _markers, + polylines: _polylines, + mapType: MapType.normal, + myLocationEnabled: true, + myLocationButtonEnabled: false, + zoomControlsEnabled: false, + ), + + // Loading indicator + if (_isRequestingPermission || _isGettingLocation) + Container( + color: Colors.black54, + child: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const CircularProgressIndicator( + color: AppColors.backgroundGrey, + strokeWidth: 3, + ), + const SizedBox(height: 16), + Text( + _isRequestingPermission + ? 'Solicitando permissões de localização...' + : 'Obtendo sua localização...', + style: const TextStyle( + color: Colors.white, + fontSize: 16, + ), + ), + ], + ), + ), + ), + + // Map controls + Positioned( + top: 20, + right: 20, + child: Column( + children: [ + Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey.withOpacity( + 0.8, + ), + borderRadius: BorderRadius.circular(12), + border: Border.all( + color: Colors.white.withOpacity(0.1), + ), + ), + child: Column( + children: [ + IconButton( + icon: const Icon( + Icons.add, + color: Colors.white, + ), + onPressed: () { + mapController.animateCamera( + CameraUpdate.zoomIn(), + ); + }, + tooltip: 'Aumentar zoom', + ), + IconButton( + icon: const Icon( + Icons.remove, + color: Colors.white, + ), + onPressed: () { + mapController.animateCamera( + CameraUpdate.zoomOut(), + ); + }, + tooltip: 'Diminuir zoom', + ), + IconButton( + icon: const Icon( + Icons.my_location, + color: Colors.white, + ), + onPressed: _centerOnCurrentLocation, + tooltip: 'Minha localização', + ), + IconButton( + icon: const Icon( + Icons.clear, + color: Colors.white, + ), + onPressed: _clearRoute, + tooltip: 'Limpar rota', + ), + ], + ), + ), + ], + ), + ), + ], + ), + ), + ), + ), + + const SizedBox(height: 20), + ], + ), + ], + ), + ), + ); + } +} diff --git a/lib/screens/inicial_screen.dart b/lib/screens/inicial_screen.dart new file mode 100644 index 0000000..4345b24 --- /dev/null +++ b/lib/screens/inicial_screen.dart @@ -0,0 +1,155 @@ +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../constants/app_strings.dart'; +import '../sheets/entrar_sheet.dart'; +import '../sheets/registrar_sheet.dart'; +import '../services/supabase_service.dart'; + +class AnimatedButton extends StatefulWidget { + final String text; + final VoidCallback onPressed; + final Color backgroundColor; + final Color textColor; + + const AnimatedButton({ + super.key, + required this.text, + required this.onPressed, + required this.backgroundColor, + required this.textColor, + }); + + @override + State createState() => _AnimatedButtonState(); +} + +class _AnimatedButtonState extends State + with SingleTickerProviderStateMixin { + late AnimationController _controller; + late Animation _scaleAnimation; + late Animation _bounceAnimation; + + @override + void initState() { + super.initState(); + _controller = AnimationController( + duration: const Duration(milliseconds: 150), + vsync: this, + ); + _scaleAnimation = Tween( + begin: 1.0, + end: 0.92, + ).animate(CurvedAnimation(parent: _controller, curve: Curves.easeInOut)); + _bounceAnimation = Tween(begin: 0.0, end: -3.0).animate( + CurvedAnimation( + parent: _controller, + curve: const Interval(0.3, 0.8, curve: Curves.elasticOut), + ), + ); + } + + @override + void dispose() { + _controller.dispose(); + super.dispose(); + } + + void _handleTap() { + _controller.forward().then((_) { + _controller.reverse().then((_) { + widget.onPressed(); + }); + }); + } + + @override + Widget build(BuildContext context) { + return AnimatedBuilder( + animation: _controller, + builder: (context, child) { + return Transform.translate( + offset: Offset(0, _bounceAnimation.value), + child: Transform.scale( + scale: _scaleAnimation.value, + child: SizedBox( + width: double.infinity, + height: 60, + child: ElevatedButton( + onPressed: _handleTap, + style: ElevatedButton.styleFrom( + backgroundColor: widget.backgroundColor, + foregroundColor: widget.textColor, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(30), + ), + elevation: 5, + ), + child: Text( + widget.text, + style: const TextStyle( + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + ), + ), + ), + ); + }, + ); + } +} + +class InicialScreen extends StatelessWidget { + const InicialScreen({super.key}); + + @override + Widget build(BuildContext context) { + // Test Supabase connection on app start + WidgetsBinding.instance.addPostFrameCallback((_) async { + final isConnected = await SupabaseService.testConnection(); + print('DEBUG: Status da conexão: $isConnected'); + }); + + return Scaffold( + backgroundColor: AppColors.background, + body: Center( + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 24.0), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + AnimatedButton( + text: AppStrings.registrar, + onPressed: () { + showModalBottomSheet( + context: context, + isScrollControlled: true, + backgroundColor: Colors.transparent, + builder: (context) => const RegistrarSheet(), + ); + }, + backgroundColor: AppColors.buttonColor, + textColor: AppColors.white, + ), + const SizedBox(height: 16), + AnimatedButton( + text: AppStrings.entrar, + onPressed: () { + showModalBottomSheet( + context: context, + isScrollControlled: true, + backgroundColor: Colors.transparent, + builder: (context) => const EntrarSheet(), + ); + }, + backgroundColor: AppColors.buttonColor, + textColor: AppColors.white, + ), + ], + ), + ), + ), + ); + } +} diff --git a/lib/screens/logado_inicial_screen.dart b/lib/screens/logado_inicial_screen.dart new file mode 100644 index 0000000..744755a --- /dev/null +++ b/lib/screens/logado_inicial_screen.dart @@ -0,0 +1,652 @@ +import 'dart:async'; +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../services/supabase_service.dart'; +import '../screens/inicial_screen.dart'; +import '../screens/google_maps_screen.dart'; +import '../screens/setting_screen.dart'; + +/// Tela principal para usuários logados com estatísticas de corrida e menu. +class LogadoInicialScreen extends StatefulWidget { + const LogadoInicialScreen({super.key}); + + @override + State createState() => _LogadoInicialScreenState(); +} + +class _LogadoInicialScreenState extends State + with SingleTickerProviderStateMixin { + // Variáveis de estado para controlar os dados da corrida. + double progress = 0.0; // Progresso de 0.0 a 1.0 (ex: 0.5 = 50%). + double targetDistance = 8.0; // Distância alvo em KM. + double currentDistance = 0.0; // Distância atual percorrida. + + @override + void initState() { + super.initState(); + // Simular progresso inicial + _simulateProgress(); + } + + void _simulateProgress() { + Timer.periodic(const Duration(seconds: 3), (timer) { + if (mounted && progress < 1.0) { + setState(() { + progress = (progress + 0.1).clamp(0.0, 1.0); + currentDistance = targetDistance * progress; + }); + } else { + timer.cancel(); + } + }); + } + + /// Constrói o indicador de progresso circular central. + Widget _buildCircularProgressIndicator() { + return SizedBox( + width: 200, + height: 200, + child: Stack( + alignment: Alignment.center, + children: [ + // TweenAnimationBuilder cria uma animação suave quando o valor do progresso muda. + TweenAnimationBuilder( + tween: Tween(begin: 0.0, end: progress), + duration: const Duration(milliseconds: 500), + builder: (context, value, _) { + return CustomPaint( + size: const Size(200, 200), + painter: CircularProgressPainter( + progress: value, + strokeWidth: 12, + progressColor: AppColors.white, + backgroundColor: AppColors.white.withOpacity(0.3), + ), + ); + }, + ), + // Círculo interno cinza que contém o texto da porcentagem. + Container( + width: 170, + height: 170, + decoration: const BoxDecoration( + color: AppColors.backgroundGrey, + shape: BoxShape.circle, + ), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + "${(progress * 100).toInt()}%", + style: const TextStyle( + fontSize: 36, + fontWeight: FontWeight.bold, + color: Colors.white, + ), + ), + const Text( + "COMPLETO", + style: TextStyle(color: Colors.white70, fontSize: 12), + ), + ], + ), + ), + ], + ), + ); + } + + @override + Widget build(BuildContext context) { + final user = SupabaseService.currentUser; + final userName = + user?.userMetadata?['name'] ?? user?.email?.split('@')[0] ?? 'Usuário'; + + return Scaffold( + backgroundColor: AppColors.background, + body: Stack( + children: [ + // Static dark gray triangles + Positioned( + top: -50, + left: -80, + child: CustomPaint( + size: const Size(160, 120), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.4), + ), + ), + ), + Positioned( + top: 20, + right: -60, + child: CustomPaint( + size: const Size(120, 90), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.3), + ), + ), + ), + Positioned( + top: 80, + left: 40, + child: CustomPaint( + size: const Size(140, 105), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.35), + ), + ), + ), + Positioned( + top: 120, + right: 80, + child: CustomPaint( + size: const Size(100, 75), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.25), + ), + ), + ), + Positioned( + top: 160, + left: -40, + child: CustomPaint( + size: const Size(130, 98), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.3), + ), + ), + ), + + // User info header + Positioned( + top: 40, + left: 20, + right: 20, + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + 'Olá, $userName!', + style: const TextStyle( + color: Colors.white, + fontSize: 20, + fontWeight: FontWeight.bold, + ), + ), + Text( + 'Bem-vindo de volta!', + style: TextStyle(color: Colors.white70, fontSize: 14), + ), + ], + ), + Container( + width: 50, + height: 50, + decoration: BoxDecoration( + color: AppColors.buttonColor, + borderRadius: BorderRadius.circular(25), + ), + child: const Icon( + Icons.person, + color: AppColors.white, + size: 24, + ), + ), + ], + ), + ), + + // 1. Indicador de progresso circular posicionado no topo central. + Align( + alignment: Alignment.topCenter, + child: Padding( + padding: const EdgeInsets.only(top: 140), + child: _buildCircularProgressIndicator(), + ), + ), + + // 2. Exibição da distância (ex: 0.0 KM | 8.0 KM). + Positioned( + top: 360, + left: 0, + right: 0, + child: Center( + child: Container( + padding: const EdgeInsets.symmetric( + horizontal: 20, + vertical: 8, + ), + decoration: BoxDecoration( + color: AppColors.white.withOpacity(0.2), + borderRadius: BorderRadius.circular(20), + ), + child: Text( + "${currentDistance.toStringAsFixed(1)} KM | ${targetDistance.toStringAsFixed(1)} KM", + style: const TextStyle( + color: AppColors.white, + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ), + + // 3. Contêiner de estatísticas (Passos, BPM, K/CAL) e o mapa clicável. + Positioned( + top: 420, + left: 20, + right: 20, + child: Container( + height: 200, + decoration: BoxDecoration( + color: AppColors.backgroundGrey, + borderRadius: BorderRadius.circular(24), + ), + child: Row( + children: [ + // Coluna esquerda com ícones e valores de estatística. + Expanded( + flex: 4, + child: Padding( + padding: const EdgeInsets.all(16.0), + child: Column( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + _buildStatItem( + Icons.directions_run, + "3219", + "PASSOS", + ), + const Divider(color: Colors.white24, height: 1), + _buildStatItem(Icons.favorite_border, "98", "BPM"), + const Divider(color: Colors.white24, height: 1), + _buildStatItem( + Icons.local_fire_department, + "480", + "K/CAL", + ), + ], + ), + ), + ), + // Coluna direita contendo o mapa clicável. + Expanded( + flex: 6, + child: GestureDetector( + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const GoogleMapScreen(), + ), + ); + }, + child: ClipRRect( + borderRadius: const BorderRadius.only( + topRight: Radius.circular(24), + bottomRight: Radius.circular(24), + ), + child: Stack( + children: [ + Container( + color: const Color(0xFF3A3A3C), + ), // Fundo do mapa. + CustomPaint( + size: Size.infinite, + painter: + MapPainter(), // Desenha as linhas e o marcador. + ), + // Overlay para indicar que é clicável + Container( + color: Colors.black.withOpacity(0.1), + child: const Center( + child: Icon( + Icons.touch_app, + color: Colors.white54, + size: 40, + ), + ), + ), + ], + ), + ), + ), + ), + ], + ), + ), + ), + + // 4. Barra de progresso linear (centralizada acima dos botões inferiores). + Positioned( + bottom: 160, + left: + 40, // Espaçamento igual na esquerda e direita para centralizar. + right: 40, + child: ClipRRect( + borderRadius: BorderRadius.circular(20), + child: LinearProgressIndicator( + value: progress, + minHeight: 12, + backgroundColor: AppColors.backgroundGrey.withOpacity(0.3), + valueColor: const AlwaysStoppedAnimation( + AppColors.white, + ), + ), + ), + ), + + // 5. Botões de menu inferiores. + Positioned( + bottom: 60, + left: 0, + right: 0, + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + _buildMenuButton( + Icons.settings, + 'Configurações', + onTap: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => const SettingsScreen(), + ), + ); + }, + ), + _buildMenuButton(Icons.group_outlined, 'Grupos'), + _buildMenuButton(Icons.access_time, 'Histórico'), + _buildMenuButton( + Icons.notifications_none, + 'Notificações', + showBadge: true, + ), + _buildMenuButton(Icons.logout, 'Sair', isLogout: true), + ], + ), + ), + + // 6. Botão de Bluetooth no canto superior direito. + Positioned( + top: 40, + right: 30, + child: GestureDetector( + onTap: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Bluetooth clicado!'), + duration: Duration(seconds: 1), + ), + ); + }, + child: Container( + padding: const EdgeInsets.all(8), + decoration: const BoxDecoration( + color: AppColors.backgroundGrey, + shape: BoxShape.circle, + ), + child: Stack( + children: [ + const Icon( + Icons.bluetooth, + color: AppColors.white, + size: 20, + ), + // Pontinho vermelho indicando status ou notificação. + Positioned( + left: 0, + bottom: 0, + child: Container( + width: 6, + height: 6, + decoration: const BoxDecoration( + color: Colors.red, + shape: BoxShape.circle, + ), + ), + ), + ], + ), + ), + ), + ), + ], + ), + ); + } + + /// Constrói uma linha de estatística com ícone, valor e rótulo. + Widget _buildStatItem(IconData icon, String value, String label) { + return Row( + children: [ + Icon(icon, color: Colors.white70, size: 24), + const SizedBox(width: 12), + Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisSize: MainAxisSize.min, + children: [ + Text( + value, + style: const TextStyle( + color: Colors.white, + fontSize: 18, + fontWeight: FontWeight.bold, + ), + ), + Text( + label, + style: const TextStyle(color: Colors.white60, fontSize: 10), + ), + ], + ), + ], + ); + } + + /// Constrói um botão de menu clicável. + Widget _buildMenuButton( + IconData icon, + String message, { + bool showBadge = false, + bool isLogout = false, + VoidCallback? onTap, + }) { + return GestureDetector( + onTap: + onTap ?? + () async { + if (isLogout) { + await SupabaseService.signOut(); + if (mounted) { + Navigator.of(context).pushAndRemoveUntil( + MaterialPageRoute( + builder: (context) => const InicialScreen(), + ), + (route) => false, + ); + } + } else { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text('$message clicado!'), + duration: const Duration(seconds: 1), + ), + ); + } + }, + child: Stack( + children: [ + Container( + padding: const EdgeInsets.all(10), + decoration: BoxDecoration( + color: isLogout ? Colors.red.shade600 : AppColors.backgroundGrey, + shape: BoxShape.circle, + ), + child: Icon(icon, color: AppColors.white, size: 24), + ), + // Exibe um pontinho vermelho de notificação se showBadge for true. + if (showBadge) + Positioned( + left: 0, + bottom: 0, + child: Container( + width: 8, + height: 8, + decoration: const BoxDecoration( + color: Colors.red, + shape: BoxShape.circle, + ), + ), + ), + ], + ), + ); + } +} + +/// Pintor customizado para desenhar os triângulos estáticos. +class TrianglePainter extends CustomPainter { + final Color color; + + TrianglePainter({required this.color}); + + @override + void paint(Canvas canvas, Size size) { + final paint = Paint() + ..color = color + ..style = PaintingStyle.fill; + + final path = Path(); + path.moveTo(size.width / 2, 0); + path.lineTo(0, size.height); + path.lineTo(size.width, size.height); + path.close(); + + canvas.drawPath(path, paint); + } + + @override + bool shouldRepaint(covariant CustomPainter oldDelegate) { + return false; + } +} + +/// Pintor customizado para desenhar o traçado do mapa simulado. +class MapPainter extends CustomPainter { + @override + void paint(Canvas canvas, Size size) { + final paint = Paint() + ..color = Colors.white38 + ..strokeWidth = 3 + ..style = PaintingStyle.stroke + ..strokeCap = StrokeCap.round; + + // Desenha a linha sinuosa do percurso. + final path = Path(); + path.moveTo(size.width * 0.1, size.height * 0.8); + path.quadraticBezierTo( + size.width * 0.3, + size.height * 0.7, + size.width * 0.4, + size.height * 0.4, + ); + path.quadraticBezierTo( + size.width * 0.5, + size.height * 0.1, + size.width * 0.7, + size.height * 0.3, + ); + path.lineTo(size.width * 0.9, size.height * 0.2); + + // Desenha uma "estrada" mais grossa branca. + final roadPaint = Paint() + ..color = Colors.white + ..strokeWidth = 8 + ..style = PaintingStyle.stroke; + + final roadPath = Path(); + roadPath.moveTo(size.width * 0.6, size.height * 1.1); + roadPath.quadraticBezierTo( + size.width * 0.7, + size.height * 0.8, + size.width * 1.1, + size.height * 0.7, + ); + + canvas.drawPath(path, paint); + canvas.drawPath(roadPath, roadPaint); + + // Desenha o marcador circular (o pino no mapa). + final markerPaint = Paint()..color = const Color(0xFFFF6B6B); + final markerPos = Offset(size.width * 0.4, size.height * 0.4); + canvas.drawCircle(markerPos, 6, markerPaint); + + // Desenha o centro branco do marcador. + final innerPaint = Paint()..color = Colors.white; + canvas.drawCircle(markerPos, 2, innerPaint); + } + + @override + bool shouldRepaint(CustomPainter oldDelegate) => false; +} + +/// Pintor customizado para desenhar o arco de progresso circular. +class CircularProgressPainter extends CustomPainter { + final double progress; + final double strokeWidth; + final Color progressColor; + final Color backgroundColor; + + CircularProgressPainter({ + required this.progress, + required this.strokeWidth, + required this.progressColor, + required this.backgroundColor, + }); + + @override + void paint(Canvas canvas, Size size) { + final center = Offset(size.width / 2, size.height / 2); + final radius = (size.width - strokeWidth) / 2; + + // Desenha o círculo de fundo (cinza transparente). + final backgroundPaint = Paint() + ..color = backgroundColor + ..strokeWidth = strokeWidth + ..style = PaintingStyle.stroke; + + canvas.drawCircle(center, radius, backgroundPaint); + + // Desenha o arco de progresso (branco). + final progressPaint = Paint() + ..color = progressColor + ..strokeWidth = strokeWidth + ..style = PaintingStyle.stroke + ..strokeCap = StrokeCap.round; + + const startAngle = -3.14159265359 / 2; // Começa no topo (-90 graus). + final sweepAngle = + 2 * + 3.14159265359 * + progress; // Define o tamanho do arco com base no progresso. + + canvas.drawArc( + Rect.fromCircle(center: center, radius: radius), + startAngle, + sweepAngle, + false, + progressPaint, + ); + } + + @override + bool shouldRepaint(CircularProgressPainter oldDelegate) => + oldDelegate.progress != progress; +} diff --git a/lib/screens/logado_screen.dart b/lib/screens/logado_screen.dart new file mode 100644 index 0000000..845ce82 --- /dev/null +++ b/lib/screens/logado_screen.dart @@ -0,0 +1,219 @@ +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../screens/inicial_screen.dart'; + +class LogadoScreen extends StatelessWidget { + const LogadoScreen({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: AppColors.background, + body: Stack( + children: [ + // Static dark gray triangles + Positioned( + top: -50, + left: -80, + child: CustomPaint( + size: const Size(160, 120), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.4), + ), + ), + ), + Positioned( + top: 20, + right: -60, + child: CustomPaint( + size: const Size(120, 90), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.3), + ), + ), + ), + Positioned( + top: 80, + left: 40, + child: CustomPaint( + size: const Size(140, 105), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.35), + ), + ), + ), + Positioned( + top: 120, + right: 80, + child: CustomPaint( + size: const Size(100, 75), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.25), + ), + ), + ), + Positioned( + top: 160, + left: -40, + child: CustomPaint( + size: const Size(130, 98), + painter: TrianglePainter( + color: Colors.grey.shade800.withOpacity(0.3), + ), + ), + ), + + // Main content + SafeArea( + child: Padding( + padding: const EdgeInsets.all(24.0), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const SizedBox(height: 80), // Space for triangles + // Success icon with animation + TweenAnimationBuilder( + duration: const Duration(milliseconds: 600), + tween: Tween(begin: 0.0, end: 1.0), + builder: (context, value, child) { + return Transform.scale( + scale: value, + child: Container( + width: 100, + height: 100, + decoration: BoxDecoration( + color: AppColors.buttonColor, + borderRadius: BorderRadius.circular(50), + boxShadow: [ + BoxShadow( + color: AppColors.buttonColor.withOpacity(0.3), + blurRadius: 20, + spreadRadius: 5, + ), + ], + ), + child: const Icon( + Icons.check, + size: 50, + color: AppColors.white, + ), + ), + ); + }, + ), + const SizedBox(height: 32), + + // Welcome message with fade in + TweenAnimationBuilder( + duration: const Duration(milliseconds: 800), + tween: Tween(begin: 0.0, end: 1.0), + builder: (context, value, child) { + return Opacity( + opacity: value, + child: const Text( + 'Login Realizado!', + style: TextStyle( + fontSize: 32, + fontWeight: FontWeight.bold, + color: Colors.white, + ), + textAlign: TextAlign.center, + ), + ); + }, + ), + const SizedBox(height: 16), + + TweenAnimationBuilder( + duration: const Duration(milliseconds: 1000), + tween: Tween(begin: 0.0, end: 1.0), + builder: (context, value, child) { + return Opacity( + opacity: value, + child: const Text( + 'Você está autenticado com sucesso.', + style: TextStyle(fontSize: 18, color: Colors.white70), + textAlign: TextAlign.center, + ), + ); + }, + ), + const SizedBox(height: 48), + + // Back button with slide up animation + TweenAnimationBuilder( + duration: const Duration(milliseconds: 1200), + tween: Tween( + begin: Offset(0, 1), + end: Offset(0, 0), + ), + builder: (context, value, child) { + return Transform.translate( + offset: value * 50, + child: SizedBox( + width: double.infinity, + height: 60, + child: ElevatedButton( + onPressed: () { + Navigator.of(context).pushReplacement( + MaterialPageRoute( + builder: (context) => const InicialScreen(), + ), + ); + }, + style: ElevatedButton.styleFrom( + backgroundColor: AppColors.buttonColor, + foregroundColor: AppColors.white, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(30), + ), + elevation: 5, + ), + child: const Text( + 'Voltar para Tela Inicial', + style: TextStyle( + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + ), + ), + ); + }, + ), + ], + ), + ), + ), + ], + ), + ); + } +} + +// Custom painter for triangles +class TrianglePainter extends CustomPainter { + final Color color; + + TrianglePainter({required this.color}); + + @override + void paint(Canvas canvas, Size size) { + final paint = Paint() + ..color = color + ..style = PaintingStyle.fill; + + final path = Path(); + path.moveTo(size.width / 2, 0); + path.lineTo(0, size.height); + path.lineTo(size.width, size.height); + path.close(); + + canvas.drawPath(path, paint); + } + + @override + bool shouldRepaint(covariant CustomPainter oldDelegate) { + return false; + } +} diff --git a/lib/screens/setting_screen.dart b/lib/screens/setting_screen.dart new file mode 100644 index 0000000..4f1fd5b --- /dev/null +++ b/lib/screens/setting_screen.dart @@ -0,0 +1,414 @@ +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../services/supabase_service.dart'; + +class SettingsScreen extends StatefulWidget { + const SettingsScreen({super.key}); + + @override + State createState() => _SettingsScreenState(); +} + +class _SettingsScreenState extends State { + bool _isNightMode = true; + bool _notificationsEnabled = true; + String _selectedLanguage = 'Português'; + + @override + Widget build(BuildContext context) { + final user = SupabaseService.currentUser; + final userName = + user?.userMetadata?['name'] ?? user?.email?.split('@')[0] ?? 'Usuário'; + final userEmail = user?.email ?? 'usuario@exemplo.com'; + + return Scaffold( + backgroundColor: AppColors.background, + appBar: AppBar( + title: const Text( + 'CONFIGURAÇÕES', + style: TextStyle( + color: Colors.white, + fontSize: 20, + fontWeight: FontWeight.bold, + ), + ), + backgroundColor: AppColors.background, + elevation: 0, + iconTheme: const IconThemeData(color: Colors.white), + leading: IconButton( + icon: const Icon(Icons.arrow_back, color: Colors.white), + onPressed: () => Navigator.pop(context), + ), + ), + body: SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Column( + children: [ + // User Profile Section + Container( + padding: const EdgeInsets.all(20), + decoration: BoxDecoration( + color: AppColors.backgroundGrey, + borderRadius: BorderRadius.circular(16), + ), + child: Row( + children: [ + Container( + width: 60, + height: 60, + decoration: BoxDecoration( + color: AppColors.buttonColor, + borderRadius: BorderRadius.circular(30), + ), + child: const Icon( + Icons.person, + color: Colors.white, + size: 30, + ), + ), + const SizedBox(width: 16), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + userName, + style: const TextStyle( + color: Colors.white, + fontSize: 18, + fontWeight: FontWeight.bold, + ), + ), + Text( + userEmail, + style: TextStyle( + color: Colors.white.withOpacity(0.7), + fontSize: 14, + ), + ), + ], + ), + ), + IconButton( + icon: const Icon(Icons.edit, color: AppColors.buttonColor), + onPressed: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Editar perfil'), + backgroundColor: AppColors.buttonColor, + ), + ); + }, + ), + ], + ), + ), + + const SizedBox(height: 24), + + // Settings Items + Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey, + borderRadius: BorderRadius.circular(16), + ), + child: Column( + children: [ + _buildSettingsItem( + icon: Icons.schedule, + title: 'Ajustar Data e Hora', + onTap: () { + _showDatePicker(context); + }, + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.dark_mode, + title: 'Modo Noturno', + trailing: Switch( + value: _isNightMode, + onChanged: (value) { + setState(() { + _isNightMode = value; + }); + }, + activeColor: AppColors.buttonColor, + ), + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.language, + title: 'Idioma', + trailing: Text( + _selectedLanguage, + style: TextStyle( + color: Colors.white.withOpacity(0.7), + fontSize: 16, + ), + ), + onTap: () { + _showLanguageSelector(context); + }, + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.accessibility, + title: 'Acessibilidade', + onTap: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Acessibilidade'), + backgroundColor: AppColors.buttonColor, + ), + ); + }, + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.notifications, + title: 'Notificações', + trailing: Switch( + value: _notificationsEnabled, + onChanged: (value) { + setState(() { + _notificationsEnabled = value; + }); + }, + activeColor: AppColors.buttonColor, + ), + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.privacy_tip, + title: 'Privacidade e Segurança', + onTap: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Privacidade e Segurança'), + backgroundColor: AppColors.buttonColor, + ), + ); + }, + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.description, + title: 'Termos de Uso', + onTap: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Termos de Uso'), + backgroundColor: AppColors.buttonColor, + ), + ); + }, + ), + _buildDivider(), + _buildSettingsItem( + icon: Icons.info, + title: 'Sobre', + onTap: () { + _showAboutDialog(context); + }, + ), + ], + ), + ), + + const SizedBox(height: 24), + + // Logout Button + Container( + width: double.infinity, + child: ElevatedButton( + onPressed: () { + _showLogoutDialog(context); + }, + style: ElevatedButton.styleFrom( + backgroundColor: Colors.red, + padding: const EdgeInsets.symmetric(vertical: 16), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + child: const Text( + 'Sair', + style: TextStyle( + color: Colors.white, + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ], + ), + ), + ); + } + + Widget _buildSettingsItem({ + required IconData icon, + required String title, + Widget? trailing, + VoidCallback? onTap, + }) { + return ListTile( + leading: Icon(icon, color: AppColors.buttonColor, size: 24), + title: Text( + title, + style: const TextStyle( + color: Colors.white, + fontSize: 16, + fontWeight: FontWeight.w500, + ), + ), + trailing: trailing, + onTap: onTap, + ); + } + + Widget _buildDivider() { + return Divider( + color: Colors.white.withOpacity(0.1), + height: 1, + indent: 16, + endIndent: 16, + ); + } + + void _showDatePicker(BuildContext context) { + showDatePicker( + context: context, + initialDate: DateTime.now(), + firstDate: DateTime(2020), + lastDate: DateTime(2025), + ).then((date) { + if (date != null) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text('Data selecionada: ${date.toString().split(' ')[0]}'), + backgroundColor: AppColors.buttonColor, + ), + ); + } + }); + } + + void _showLanguageSelector(BuildContext context) { + showDialog( + context: context, + builder: (context) => AlertDialog( + backgroundColor: AppColors.backgroundGrey, + title: const Text( + 'Selecionar Idioma', + style: TextStyle(color: Colors.white), + ), + content: Column( + mainAxisSize: MainAxisSize.min, + children: [ + _buildLanguageOption('Português'), + _buildLanguageOption('English'), + _buildLanguageOption('Español'), + ], + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context), + child: const Text( + 'Cancelar', + style: TextStyle(color: AppColors.buttonColor), + ), + ), + ], + ), + ); + } + + Widget _buildLanguageOption(String language) { + return RadioListTile( + title: Text(language, style: const TextStyle(color: Colors.white)), + value: language, + groupValue: _selectedLanguage, + onChanged: (value) { + setState(() { + _selectedLanguage = value!; + }); + Navigator.pop(context); + }, + activeColor: AppColors.buttonColor, + ); + } + + void _showAboutDialog(BuildContext context) { + showDialog( + context: context, + builder: (context) => AlertDialog( + backgroundColor: AppColors.backgroundGrey, + title: const Text('Sobre', style: TextStyle(color: Colors.white)), + content: const Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + 'Run Vision Pro', + style: TextStyle( + color: Colors.white, + fontWeight: FontWeight.bold, + ), + ), + SizedBox(height: 8), + Text('Versão: 1.0.0', style: TextStyle(color: Colors.white70)), + SizedBox(height: 8), + Text( + 'Aplicativo de corrida com estatísticas e mapas', + style: TextStyle(color: Colors.white70), + ), + ], + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context), + child: const Text( + 'OK', + style: TextStyle(color: AppColors.buttonColor), + ), + ), + ], + ), + ); + } + + void _showLogoutDialog(BuildContext context) { + showDialog( + context: context, + builder: (context) => AlertDialog( + backgroundColor: AppColors.backgroundGrey, + title: const Text( + 'Confirmar Logout', + style: TextStyle(color: Colors.white), + ), + content: const Text( + 'Tem certeza que deseja sair?', + style: TextStyle(color: Colors.white70), + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context), + child: const Text( + 'Cancelar', + style: TextStyle(color: AppColors.buttonColor), + ), + ), + TextButton( + onPressed: () { + Navigator.pop(context); + Navigator.pushReplacementNamed(context, '/'); + }, + child: const Text('Sair', style: TextStyle(color: Colors.red)), + ), + ], + ), + ); + } +} diff --git a/lib/services/supabase_service.dart b/lib/services/supabase_service.dart new file mode 100644 index 0000000..16a4f1b --- /dev/null +++ b/lib/services/supabase_service.dart @@ -0,0 +1,130 @@ +import 'package:supabase_flutter/supabase_flutter.dart'; +import '../constants/app_constants.dart'; + +class SupabaseService { + static final SupabaseClient _supabase = Supabase.instance.client; + + // Initialize Supabase + static Future initialize() async { + try { + print('DEBUG: Inicializando Supabase...'); + print('DEBUG: URL: ${AppConstants.supabaseUrl}'); + print( + 'DEBUG: AnonKey: ${AppConstants.supabaseAnonKey.substring(0, 10)}...', + ); + + await Supabase.initialize( + url: AppConstants.supabaseUrl, + anonKey: AppConstants.supabaseAnonKey, + ); + + print('DEBUG: Supabase inicializado com sucesso!'); + + // Test connection + final currentUser = _supabase.auth.currentUser; + print('DEBUG: Usuário atual: ${currentUser?.email ?? 'null'}'); + } catch (e) { + print('DEBUG: Erro ao inicializar Supabase: $e'); + rethrow; + } + } + + // Get current user + static User? get currentUser => _supabase.auth.currentUser; + + // Sign up with email and password + static Future signUp({ + required String email, + required String password, + required String name, + }) async { + try { + print('DEBUG: Criando conta - Email: $email, Name: $name'); + + final response = await _supabase.auth.signUp( + email: email, + password: password, + data: {'name': name}, + ); + + print('DEBUG: Conta criada! User ID: ${response.user?.id}'); + + // Check if user was created successfully + if (response.user != null) { + print('DEBUG: Usuário criado com sucesso!'); + return response; + } else { + print('DEBUG: Falha ao criar usuário - response.user é null'); + throw Exception('Falha ao criar usuário. Tente novamente.'); + } + } catch (e) { + print('DEBUG: Erro no signUp: $e'); + throw Exception('Erro ao criar conta: $e'); + } + } + + // Sign in with email and password + static Future signIn({ + required String email, + required String password, + }) async { + try { + print('DEBUG: Fazendo login - Email: $email'); + + final response = await _supabase.auth.signInWithPassword( + email: email, + password: password, + ); + + print('DEBUG: Login realizado! User ID: ${response.user?.id}'); + return response; + } catch (e) { + print('DEBUG: Erro no signIn: $e'); + throw Exception('Erro ao fazer login: $e'); + } + } + + // Sign out + static Future signOut() async { + try { + await _supabase.auth.signOut(); + print('DEBUG: Logout realizado'); + } catch (e) { + print('DEBUG: Erro no signOut: $e'); + throw Exception('Erro ao sair: $e'); + } + } + + // Reset password + static Future resetPassword(String email) async { + try { + await _supabase.auth.resetPasswordForEmail(email); + print('DEBUG: Email de reset enviado para: $email'); + } catch (e) { + print('DEBUG: Erro no resetPassword: $e'); + throw Exception('Erro ao redefinir senha: $e'); + } + } + + // Test connection to Supabase + static Future testConnection() async { + try { + print('DEBUG: Testando conexão com Supabase...'); + + // Test with auth service instead of database + final session = _supabase.auth.currentSession; + print('DEBUG: Sessão atual: ${session != null ? 'ativa' : 'null'}'); + + // Try to get auth settings (this should work even without tables) + print('DEBUG: Conexão básica funcionando!'); + return true; + } catch (e) { + print('DEBUG: Erro na conexão: $e'); + return false; + } + } + + // Listen to auth state changes + static Stream get authStateChanges => + _supabase.auth.onAuthStateChange; +} diff --git a/lib/sheets/entrar_sheet.dart b/lib/sheets/entrar_sheet.dart new file mode 100644 index 0000000..ab09533 --- /dev/null +++ b/lib/sheets/entrar_sheet.dart @@ -0,0 +1,360 @@ +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../services/supabase_service.dart'; +import '../screens/logado_inicial_screen.dart'; + +class AnimatedButton extends StatefulWidget { + final String text; + final VoidCallback onPressed; + final Color backgroundColor; + final Color textColor; + final bool isLoading; + + const AnimatedButton({ + super.key, + required this.text, + required this.onPressed, + required this.backgroundColor, + required this.textColor, + this.isLoading = false, + }); + + @override + State createState() => _AnimatedButtonState(); +} + +class _AnimatedButtonState extends State + with SingleTickerProviderStateMixin { + late AnimationController _controller; + late Animation _scaleAnimation; + late Animation _bounceAnimation; + + @override + void initState() { + super.initState(); + _controller = AnimationController( + duration: const Duration(milliseconds: 150), + vsync: this, + ); + _scaleAnimation = Tween( + begin: 1.0, + end: 0.92, + ).animate(CurvedAnimation(parent: _controller, curve: Curves.easeInOut)); + _bounceAnimation = Tween(begin: 0.0, end: -3.0).animate( + CurvedAnimation( + parent: _controller, + curve: const Interval(0.3, 0.8, curve: Curves.elasticOut), + ), + ); + } + + @override + void dispose() { + _controller.dispose(); + super.dispose(); + } + + void _handleTap() { + _controller.forward().then((_) { + _controller.reverse().then((_) { + widget.onPressed(); + }); + }); + } + + @override + Widget build(BuildContext context) { + return AnimatedBuilder( + animation: _controller, + builder: (context, child) { + return Transform.translate( + offset: Offset(0, _bounceAnimation.value), + child: Transform.scale( + scale: _scaleAnimation.value, + child: SizedBox( + width: double.infinity, + height: 60, + child: ElevatedButton( + onPressed: widget.isLoading ? null : _handleTap, + style: ElevatedButton.styleFrom( + backgroundColor: widget.backgroundColor, + foregroundColor: widget.textColor, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(30), + ), + elevation: 5, + ), + child: widget.isLoading + ? const CircularProgressIndicator(color: Colors.white) + : Text( + widget.text, + style: const TextStyle( + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + ), + ), + ), + ); + }, + ); + } +} + +class EntrarSheet extends StatefulWidget { + const EntrarSheet({super.key}); + + @override + State createState() => _EntrarSheetState(); +} + +class _EntrarSheetState extends State { + final _formKey = GlobalKey(); + final _emailController = TextEditingController(); + final _passwordController = TextEditingController(); + bool _isLoading = false; + + Future _handleLogin() async { + if (_formKey.currentState!.validate()) { + setState(() => _isLoading = true); + + try { + await SupabaseService.signIn( + email: _emailController.text.trim(), + password: _passwordController.text, + ); + + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show success message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Login realizado com sucesso!'), + backgroundColor: Colors.green, + ), + ); + + // Then navigate to LogadoInicialScreen + Navigator.of(context).pushReplacement( + MaterialPageRoute( + builder: (context) => const LogadoInicialScreen(), + ), + ); + } + } catch (e) { + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show error message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text(e.toString()), backgroundColor: Colors.red), + ); + } + } finally { + if (mounted) { + setState(() => _isLoading = false); + } + } + } + } + + Future _handlePasswordReset() async { + final email = _emailController.text.trim(); + if (email.isEmpty) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Por favor, insira seu email'), + backgroundColor: Colors.orange, + ), + ); + return; + } + + try { + await SupabaseService.resetPassword(email); + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show success message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Email de redefinição enviado!'), + backgroundColor: Colors.green, + ), + ); + } + } catch (e) { + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show error message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text(e.toString()), backgroundColor: Colors.red), + ); + } + } + } + + @override + void dispose() { + _emailController.dispose(); + _passwordController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return DraggableScrollableSheet( + initialChildSize: 0.6, // Start at 60% for login form + minChildSize: 0.4, // 40% minimum + maxChildSize: 0.9, // 90% maximum + snap: true, // Enable snap points + snapSizes: [0.6, 0.9], // Snap to 60% or 90% + builder: (context, scrollController) { + return Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey, + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.1), + blurRadius: 10, + offset: const Offset(0, -5), + ), + ], + ), + child: SingleChildScrollView( + controller: scrollController, + child: SafeArea( + child: Padding( + padding: const EdgeInsets.all(24.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Drag handle + Center( + child: Container( + width: 60, + height: 6, + margin: const EdgeInsets.symmetric(vertical: 8), + decoration: BoxDecoration( + color: Colors.grey[400], + borderRadius: BorderRadius.circular(3), + ), + ), + ), + const SizedBox(height: 24), + + // Title + const Text( + 'Entrar', + style: TextStyle( + fontSize: 28, + fontWeight: FontWeight.bold, + color: Colors.white, + ), + ), + const SizedBox(height: 32), + + // Email field + const Text( + 'Email', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + Form( + key: _formKey, + child: TextFormField( + controller: _emailController, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: 'seu@email.com', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, insira seu email'; + } + if (!value.contains('@')) { + return 'Email inválido'; + } + return null; + }, + ), + ), + const SizedBox(height: 20), + + // Password field + const Text( + 'Senha', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + TextFormField( + controller: _passwordController, + obscureText: true, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: '••••••••', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, insira sua senha'; + } + if (value.length < 6) { + return 'Senha deve ter pelo menos 6 caracteres'; + } + return null; + }, + ), + const SizedBox(height: 32), + + // Login button + AnimatedButton( + text: 'Entrar', + onPressed: _handleLogin, + backgroundColor: AppColors.buttonColor, + textColor: AppColors.white, + isLoading: _isLoading, + ), + const SizedBox(height: 20), + + // Forgot password + Center( + child: TextButton( + onPressed: _handlePasswordReset, + child: const Text( + 'Esqueceu a senha?', + style: TextStyle(color: Colors.white70, fontSize: 16), + ), + ), + ), + const SizedBox(height: 40), + ], + ), + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/sheets/registrar_sheet.dart b/lib/sheets/registrar_sheet.dart new file mode 100644 index 0000000..6904eeb --- /dev/null +++ b/lib/sheets/registrar_sheet.dart @@ -0,0 +1,386 @@ +import 'package:flutter/material.dart'; +import '../constants/app_colors.dart'; +import '../services/supabase_service.dart'; +import '../screens/logado_inicial_screen.dart'; + +class AnimatedButton extends StatefulWidget { + final String text; + final VoidCallback onPressed; + final Color backgroundColor; + final Color textColor; + final bool isLoading; + + const AnimatedButton({ + super.key, + required this.text, + required this.onPressed, + required this.backgroundColor, + required this.textColor, + this.isLoading = false, + }); + + @override + State createState() => _AnimatedButtonState(); +} + +class _AnimatedButtonState extends State + with SingleTickerProviderStateMixin { + late AnimationController _controller; + late Animation _scaleAnimation; + late Animation _bounceAnimation; + + @override + void initState() { + super.initState(); + _controller = AnimationController( + duration: const Duration(milliseconds: 150), + vsync: this, + ); + _scaleAnimation = Tween( + begin: 1.0, + end: 0.92, + ).animate(CurvedAnimation(parent: _controller, curve: Curves.easeInOut)); + _bounceAnimation = Tween(begin: 0.0, end: -3.0).animate( + CurvedAnimation( + parent: _controller, + curve: const Interval(0.3, 0.8, curve: Curves.elasticOut), + ), + ); + } + + @override + void dispose() { + _controller.dispose(); + super.dispose(); + } + + void _handleTap() { + _controller.forward().then((_) { + _controller.reverse().then((_) { + widget.onPressed(); + }); + }); + } + + @override + Widget build(BuildContext context) { + return AnimatedBuilder( + animation: _controller, + builder: (context, child) { + return Transform.translate( + offset: Offset(0, _bounceAnimation.value), + child: Transform.scale( + scale: _scaleAnimation.value, + child: SizedBox( + width: double.infinity, + height: 60, + child: ElevatedButton( + onPressed: widget.isLoading ? null : _handleTap, + style: ElevatedButton.styleFrom( + backgroundColor: widget.backgroundColor, + foregroundColor: widget.textColor, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(30), + ), + elevation: 5, + ), + child: widget.isLoading + ? const CircularProgressIndicator(color: Colors.white) + : Text( + widget.text, + style: const TextStyle( + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + ), + ), + ), + ); + }, + ); + } +} + +class RegistrarSheet extends StatefulWidget { + const RegistrarSheet({super.key}); + + @override + State createState() => _RegistrarSheetState(); +} + +class _RegistrarSheetState extends State { + final _formKey = GlobalKey(); + final _nameController = TextEditingController(); + final _emailController = TextEditingController(); + final _passwordController = TextEditingController(); + final _confirmPasswordController = TextEditingController(); + bool _isLoading = false; + + Future _handleRegister() async { + if (_formKey.currentState!.validate()) { + setState(() => _isLoading = true); + + print( + 'DEBUG: Dados do formulário - Nome: ${_nameController.text}, Email: ${_emailController.text}', + ); + + try { + await SupabaseService.signUp( + email: _emailController.text.trim(), + password: _passwordController.text, + name: _nameController.text.trim(), + ); + + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show success message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Conta criada com sucesso! Verifique seu email.'), + backgroundColor: Colors.green, + ), + ); + + // Then navigate to LogadoInicialScreen + Navigator.of(context).pushReplacement( + MaterialPageRoute( + builder: (context) => const LogadoInicialScreen(), + ), + ); + } + } catch (e) { + print('DEBUG: Erro no registro: $e'); + if (mounted) { + // Close the bottom sheet first + Navigator.of(context).pop(); + + // Show error message above the sheet + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text(e.toString()), backgroundColor: Colors.red), + ); + } + } finally { + if (mounted) { + setState(() => _isLoading = false); + } + } + } + } + + @override + void dispose() { + _nameController.dispose(); + _emailController.dispose(); + _passwordController.dispose(); + _confirmPasswordController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return DraggableScrollableSheet( + initialChildSize: 0.7, // Start at 70% for register form + minChildSize: 0.5, // 50% minimum + maxChildSize: 0.95, // 95% maximum + snap: true, // Enable snap points + snapSizes: [0.7, 0.95], // Snap to 70% or 95% + builder: (context, scrollController) { + return Container( + decoration: BoxDecoration( + color: AppColors.backgroundGrey, + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.1), + blurRadius: 10, + offset: const Offset(0, -5), + ), + ], + ), + child: SingleChildScrollView( + controller: scrollController, + child: SafeArea( + child: Padding( + padding: const EdgeInsets.all(24.0), + child: _buildRegistrationForm(), + ), + ), + ), + ); + }, + ); + } + + Widget _buildRegistrationForm() { + return Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // Drag handle + Center( + child: Container( + width: 60, + height: 6, + margin: const EdgeInsets.symmetric(vertical: 8), + decoration: BoxDecoration( + color: Colors.grey[400], + borderRadius: BorderRadius.circular(3), + ), + ), + ), + const SizedBox(height: 24), + + // Title + const Text( + 'Registrar', + style: TextStyle( + fontSize: 28, + fontWeight: FontWeight.bold, + color: Colors.white, + ), + ), + const SizedBox(height: 32), + + // Name field + const Text( + 'Nome', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + TextFormField( + controller: _nameController, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: 'Seu nome completo', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, insira seu nome'; + } + if (value.length < 3) { + return 'Nome deve ter pelo menos 3 caracteres'; + } + return null; + }, + ), + const SizedBox(height: 20), + + // Email field + const Text( + 'Email', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + TextFormField( + controller: _emailController, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: 'seu@email.com', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, insira seu email'; + } + if (!value.contains('@')) { + return 'Email inválido'; + } + return null; + }, + ), + const SizedBox(height: 20), + + // Password field + const Text( + 'Senha', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + TextFormField( + controller: _passwordController, + obscureText: true, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: '••••••••', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, insira sua senha'; + } + if (value.length < 6) { + return 'Senha deve ter pelo menos 6 caracteres'; + } + return null; + }, + ), + const SizedBox(height: 20), + + // Confirm password field + const Text( + 'Confirmar Senha', + style: TextStyle(fontSize: 16, color: Colors.white70), + ), + const SizedBox(height: 8), + TextFormField( + controller: _confirmPasswordController, + obscureText: true, + decoration: InputDecoration( + filled: true, + fillColor: Colors.white.withOpacity(0.1), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide.none, + ), + hintText: '••••••••', + hintStyle: const TextStyle(color: Colors.white38), + ), + style: const TextStyle(color: Colors.white), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Por favor, confirme sua senha'; + } + if (value != _passwordController.text) { + return 'Senhas não coincidem'; + } + return null; + }, + ), + const SizedBox(height: 32), + + // Register button + AnimatedButton( + text: 'Registrar', + onPressed: _handleRegister, + backgroundColor: AppColors.buttonColor, + textColor: AppColors.white, + isLoading: _isLoading, + ), + SizedBox(height: 40), + ], + ), + ); + } +} diff --git a/linux/.gitignore b/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt new file mode 100644 index 0000000..0b376be --- /dev/null +++ b/linux/CMakeLists.txt @@ -0,0 +1,128 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "run_vision_pro") +# The unique GTK application identifier for this application. See: +# https://wiki.gnome.org/HowDoI/ChooseApplicationID +set(APPLICATION_ID "com.example.run_vision_pro") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(SET CMP0063 NEW) + +# Load bundled libraries from the lib/ directory relative to the binary. +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Define build configuration options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) + +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) + install(FILES "${bundled_library}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endforeach(bundled_library) + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/linux/flutter/CMakeLists.txt b/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..d5bd016 --- /dev/null +++ b/linux/flutter/CMakeLists.txt @@ -0,0 +1,88 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..3792af4 --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,19 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include +#include + +void fl_register_plugins(FlPluginRegistry* registry) { + g_autoptr(FlPluginRegistrar) gtk_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "GtkPlugin"); + gtk_plugin_register_with_registrar(gtk_registrar); + g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); + url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); +} diff --git a/linux/flutter/generated_plugin_registrant.h b/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..5d07423 --- /dev/null +++ b/linux/flutter/generated_plugins.cmake @@ -0,0 +1,25 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + gtk + url_launcher_linux +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/linux/runner/CMakeLists.txt b/linux/runner/CMakeLists.txt new file mode 100644 index 0000000..e97dabc --- /dev/null +++ b/linux/runner/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the application ID. +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Add dependency libraries. Add any application-specific dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) + +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") diff --git a/linux/runner/main.cc b/linux/runner/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/linux/runner/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/linux/runner/my_application.cc b/linux/runner/my_application.cc new file mode 100644 index 0000000..e210b86 --- /dev/null +++ b/linux/runner/my_application.cc @@ -0,0 +1,148 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Called when first Flutter frame received. +static void first_frame_cb(MyApplication* self, FlView* view) { + gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view))); +} + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "run_vision_pro"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "run_vision_pro"); + } + + gtk_window_set_default_size(window, 1280, 720); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments( + project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + GdkRGBA background_color; + // Background defaults to black, override it here if necessary, e.g. #00000000 + // for transparent. + gdk_rgba_parse(&background_color, "#000000"); + fl_view_set_background_color(view, &background_color); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + // Show the window when Flutter renders. + // Requires the view to be realized so we can start rendering. + g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb), + self); + gtk_widget_realize(GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, + gchar*** arguments, + int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GApplication::startup. +static void my_application_startup(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application startup. + + G_APPLICATION_CLASS(my_application_parent_class)->startup(application); +} + +// Implements GApplication::shutdown. +static void my_application_shutdown(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application shutdown. + + G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application); +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = + my_application_local_command_line; + G_APPLICATION_CLASS(klass)->startup = my_application_startup; + G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + // Set the program name to the application ID, which helps various systems + // like GTK and desktop environments map this running application to its + // corresponding .desktop file. This ensures better integration by allowing + // the application to be recognized beyond its binary name. + g_set_prgname(APPLICATION_ID); + + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, "flags", + G_APPLICATION_NON_UNIQUE, nullptr)); +} diff --git a/linux/runner/my_application.h b/linux/runner/my_application.h new file mode 100644 index 0000000..db16367 --- /dev/null +++ b/linux/runner/my_application.h @@ -0,0 +1,21 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, + my_application, + MY, + APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/macos/.gitignore b/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..0115915 --- /dev/null +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,18 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import app_links +import geolocator_apple +import shared_preferences_foundation +import url_launcher_macos + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + AppLinksMacosPlugin.register(with: registry.registrar(forPlugin: "AppLinksMacosPlugin")) + GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) +} diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..06c7e6f --- /dev/null +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,705 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* run_vision_pro.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "run_vision_pro.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* run_vision_pro.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* run_vision_pro.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/run_vision_pro.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/run_vision_pro"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/run_vision_pro.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/run_vision_pro"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/run_vision_pro.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/run_vision_pro"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..f805d25 --- /dev/null +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..b3c1761 --- /dev/null +++ b/macos/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..82b6f9d Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..13b35eb Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..0a3f5fa Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bdb5722 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..f083318 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..326c0e7 Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..2f1632c Binary files /dev/null and b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/macos/Runner/Base.lproj/MainMenu.xib b/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..80e867a --- /dev/null +++ b/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..1f3ade8 --- /dev/null +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = run_vision_pro + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.example.runVisionPro + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2026 com.example. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..61f3bd1 --- /dev/null +++ b/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..e38d86e --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,954 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + adaptive_number: + dependency: transitive + description: + name: adaptive_number + sha256: "3a567544e9b5c9c803006f51140ad544aedc79604fd4f3f2c1380003f97c1d77" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + app_links: + dependency: transitive + description: + name: app_links + sha256: "5f88447519add627fe1cbcab4fd1da3d4fed15b9baf29f28b22535c95ecee3e8" + url: "https://pub.dev" + source: hosted + version: "6.4.1" + app_links_linux: + dependency: transitive + description: + name: app_links_linux + sha256: f5f7173a78609f3dfd4c2ff2c95bd559ab43c80a87dc6a095921d96c05688c81 + url: "https://pub.dev" + source: hosted + version: "1.0.3" + app_links_platform_interface: + dependency: transitive + description: + name: app_links_platform_interface + sha256: "05f5379577c513b534a29ddea68176a4d4802c46180ee8e2e966257158772a3f" + url: "https://pub.dev" + source: hosted + version: "2.0.2" + app_links_web: + dependency: transitive + description: + name: app_links_web + sha256: af060ed76183f9e2b87510a9480e56a5352b6c249778d07bd2c95fc35632a555 + url: "https://pub.dev" + source: hosted + version: "1.0.4" + archive: + dependency: transitive + description: + name: archive + sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd" + url: "https://pub.dev" + source: hosted + version: "4.0.7" + async: + dependency: transitive + description: + name: async + sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb" + url: "https://pub.dev" + source: hosted + version: "2.13.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + characters: + dependency: transitive + description: + name: characters + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://pub.dev" + source: hosted + version: "1.1.2" + code_assets: + dependency: transitive + description: + name: code_assets + sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + convert: + dependency: transitive + description: + name: convert + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 + url: "https://pub.dev" + source: hosted + version: "3.1.2" + crypto: + dependency: transitive + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://pub.dev" + source: hosted + version: "3.0.7" + csslib: + dependency: transitive + description: + name: csslib + sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" + url: "https://pub.dev" + source: hosted + version: "1.0.2" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 + url: "https://pub.dev" + source: hosted + version: "1.0.8" + dart_jsonwebtoken: + dependency: transitive + description: + name: dart_jsonwebtoken + sha256: "0de65691c1d736e9459f22f654ddd6fd8368a271d4e41aa07e53e6301eff5075" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + ed25519_edwards: + dependency: transitive + description: + name: ed25519_edwards + sha256: "6ce0112d131327ec6d42beede1e5dfd526069b18ad45dcf654f15074ad9276cd" + url: "https://pub.dev" + source: hosted + version: "0.3.1" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://pub.dev" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "3105dc8492f6183fb076ccf1f351ac3d60564bff92e20bfc4af9cc1651f4e7e1" + url: "https://pub.dev" + source: hosted + version: "6.0.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: ee8068e0e1cd16c4a82714119918efdeed33b3ba7772c54b5d094ab53f9b7fd1 + url: "https://pub.dev" + source: hosted + version: "2.0.33" + flutter_polyline_points: + dependency: "direct main" + description: + name: flutter_polyline_points + sha256: "3a1c8c30abee9fb0fbe44c70d5d1cedb10ef28ec7ea285c669f02b3e183483aa" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + functions_client: + dependency: transitive + description: + name: functions_client + sha256: "94074d62167ae634127ef6095f536835063a7dc80f2b1aa306d2346ff9023996" + url: "https://pub.dev" + source: hosted + version: "2.5.0" + geolocator: + dependency: "direct main" + description: + name: geolocator + sha256: f4efb8d3c4cdcad2e226af9661eb1a0dd38c71a9494b22526f9da80ab79520e5 + url: "https://pub.dev" + source: hosted + version: "10.1.1" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: fcb1760a50d7500deca37c9a666785c047139b5f9ee15aa5469fae7dbbe3170d + url: "https://pub.dev" + source: hosted + version: "4.6.2" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: dbdd8789d5aaf14cf69f74d4925ad1336b4433a6efdf2fce91e8955dc921bf22 + url: "https://pub.dev" + source: hosted + version: "2.3.13" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "30cb64f0b9adcc0fb36f628b4ebf4f731a2961a0ebd849f4b56200205056fe67" + url: "https://pub.dev" + source: hosted + version: "4.2.6" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: "102e7da05b48ca6bf0a5bda0010f886b171d1a08059f01bfe02addd0175ebece" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: "175435404d20278ffd220de83c2ca293b73db95eafbdc8131fe8609be1421eb6" + url: "https://pub.dev" + source: hosted + version: "0.2.5" + glob: + dependency: transitive + description: + name: glob + sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de + url: "https://pub.dev" + source: hosted + version: "2.1.3" + google_maps: + dependency: transitive + description: + name: google_maps + sha256: "5d410c32112d7c6eb7858d359275b2aa04778eed3e36c745aeae905fb2fa6468" + url: "https://pub.dev" + source: hosted + version: "8.2.0" + google_maps_flutter: + dependency: "direct main" + description: + name: google_maps_flutter + sha256: "9b0d6dab3de6955837575dc371dd772fcb5d0a90f6a4954e8c066472f9938550" + url: "https://pub.dev" + source: hosted + version: "2.14.2" + google_maps_flutter_android: + dependency: transitive + description: + name: google_maps_flutter_android + sha256: "8b569c7abc52bc62d4502bf93847d487c0843f3e6a2a8e122b72e98843b2ab4c" + url: "https://pub.dev" + source: hosted + version: "2.19.1" + google_maps_flutter_ios: + dependency: transitive + description: + name: google_maps_flutter_ios + sha256: "174d730bc3f253e1c06a342d7a5efb216f15003a6e26693c2d70d60973625af4" + url: "https://pub.dev" + source: hosted + version: "2.17.5" + google_maps_flutter_platform_interface: + dependency: transitive + description: + name: google_maps_flutter_platform_interface + sha256: "0f8c6674d70c7e9a09cd34f63b18ebaf8a5822e85b558128eae0fdf02b4a3e93" + url: "https://pub.dev" + source: hosted + version: "2.14.2" + google_maps_flutter_web: + dependency: transitive + description: + name: google_maps_flutter_web + sha256: d416602944e1859f3cbbaa53e34785c223fa0a11eddb34a913c964c5cbb5d8cf + url: "https://pub.dev" + source: hosted + version: "0.5.14+3" + gotrue: + dependency: transitive + description: + name: gotrue + sha256: f7b52008311941a7c3e99f9590c4ee32dfc102a5442e43abf1b287d9f8cc39b2 + url: "https://pub.dev" + source: hosted + version: "2.18.0" + gtk: + dependency: transitive + description: + name: gtk + sha256: e8ce9ca4b1df106e4d72dad201d345ea1a036cc12c360f1a7d5a758f78ffa42c + url: "https://pub.dev" + source: hosted + version: "2.1.0" + hooks: + dependency: transitive + description: + name: hooks + sha256: "7a08a0d684cb3b8fb604b78455d5d352f502b68079f7b80b831c62220ab0a4f6" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + html: + dependency: transitive + description: + name: html + sha256: "6d1264f2dffa1b1101c25a91dff0dc2daee4c18e87cd8538729773c073dbf602" + url: "https://pub.dev" + source: hosted + version: "0.15.6" + http: + dependency: "direct main" + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://pub.dev" + source: hosted + version: "1.6.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + jwt_decode: + dependency: transitive + description: + name: jwt_decode + sha256: d2e9f68c052b2225130977429d30f187aa1981d789c76ad104a32243cfdebfbb + url: "https://pub.dev" + source: hosted + version: "0.3.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://pub.dev" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://pub.dev" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: "12f842a479589fea194fe5c5a3095abc7be0c1f2ddfa9a0e76aed1dbd26a87df" + url: "https://pub.dev" + source: hosted + version: "6.1.0" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://pub.dev" + source: hosted + version: "1.3.0" + lottie: + dependency: "direct main" + description: + name: lottie + sha256: "8ae0be46dbd9e19641791dc12ee480d34e1fd3f84c749adc05f3ad9342b71b95" + url: "https://pub.dev" + source: hosted + version: "3.3.2" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + url: "https://pub.dev" + source: hosted + version: "0.12.17" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + url: "https://pub.dev" + source: hosted + version: "0.11.1" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://pub.dev" + source: hosted + version: "1.17.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + native_toolchain_c: + dependency: transitive + description: + name: native_toolchain_c + sha256: "89e83885ba09da5fdf2cdacc8002a712ca238c28b7f717910b34bcd27b0d03ac" + url: "https://pub.dev" + source: hosted + version: "0.17.4" + objective_c: + dependency: transitive + description: + name: objective_c + sha256: "100a1c87616ab6ed41ec263b083c0ef3261ee6cd1dc3b0f35f8ddfa4f996fe52" + url: "https://pub.dev" + source: hosted + version: "9.3.0" + path: + dependency: transitive + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: f2c65e21139ce2c3dad46922be8272bb5963516045659e71bb16e151c93b580e + url: "https://pub.dev" + source: hosted + version: "2.2.22" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699" + url: "https://pub.dev" + source: hosted + version: "2.6.0" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + permission_handler: + dependency: "direct main" + description: + name: permission_handler + sha256: "59adad729136f01ea9e35a48f5d1395e25cba6cea552249ddbe9cf950f5d7849" + url: "https://pub.dev" + source: hosted + version: "11.4.0" + permission_handler_android: + dependency: transitive + description: + name: permission_handler_android + sha256: d3971dcdd76182a0c198c096b5db2f0884b0d4196723d21a866fc4cdea057ebc + url: "https://pub.dev" + source: hosted + version: "12.1.0" + permission_handler_apple: + dependency: transitive + description: + name: permission_handler_apple + sha256: f000131e755c54cf4d84a5d8bd6e4149e262cc31c5a8b1d698de1ac85fa41023 + url: "https://pub.dev" + source: hosted + version: "9.4.7" + permission_handler_html: + dependency: transitive + description: + name: permission_handler_html + sha256: "38f000e83355abb3392140f6bc3030660cfaef189e1f87824facb76300b4ff24" + url: "https://pub.dev" + source: hosted + version: "0.1.3+5" + permission_handler_platform_interface: + dependency: transitive + description: + name: permission_handler_platform_interface + sha256: eb99b295153abce5d683cac8c02e22faab63e50679b937fa1bf67d58bb282878 + url: "https://pub.dev" + source: hosted + version: "4.3.0" + permission_handler_windows: + dependency: transitive + description: + name: permission_handler_windows + sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e" + url: "https://pub.dev" + source: hosted + version: "0.2.1" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + pointycastle: + dependency: transitive + description: + name: pointycastle + sha256: "92aa3841d083cc4b0f4709b5c74fd6409a3e6ba833ffc7dc6a8fee096366acf5" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + posix: + dependency: transitive + description: + name: posix + sha256: "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61" + url: "https://pub.dev" + source: hosted + version: "6.0.3" + postgrest: + dependency: transitive + description: + name: postgrest + sha256: f4b6bb24b465c47649243ef0140475de8a0ec311dc9c75ebe573b2dcabb10460 + url: "https://pub.dev" + source: hosted + version: "2.6.0" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + realtime_client: + dependency: transitive + description: + name: realtime_client + sha256: "5268afc208d02fb9109854d262c1ebf6ece224cd285199ae1d2f92d2ff49dbf1" + url: "https://pub.dev" + source: hosted + version: "2.7.0" + retry: + dependency: transitive + description: + name: retry + sha256: "822e118d5b3aafed083109c72d5f484c6dc66707885e07c0fbcb8b986bba7efc" + url: "https://pub.dev" + source: hosted + version: "3.1.2" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" + url: "https://pub.dev" + source: hosted + version: "0.28.0" + sanitize_html: + dependency: transitive + description: + name: sanitize_html + sha256: "12669c4a913688a26555323fb9cec373d8f9fbe091f2d01c40c723b33caa8989" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + shared_preferences: + dependency: transitive + description: + name: shared_preferences + sha256: "2939ae520c9024cb197fc20dee269cd8cdbf564c8b5746374ec6cacdc5169e64" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: cbc40be9be1c5af4dab4d6e0de4d5d3729e6f3d65b89d21e1815d57705644a6f + url: "https://pub.dev" + source: hosted + version: "2.4.20" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "4e7eaffc2b17ba398759f1151415869a34771ba11ebbccd1b0145472a619a64f" + url: "https://pub.dev" + source: hosted + version: "2.5.6" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://pub.dev" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab" + url: "https://pub.dev" + source: hosted + version: "1.10.2" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + storage_client: + dependency: transitive + description: + name: storage_client + sha256: "1c61b19ed9e78f37fdd1ca8b729ab8484e6c8fe82e15c87e070b861951183657" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871 + url: "https://pub.dev" + source: hosted + version: "2.1.1" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + supabase: + dependency: transitive + description: + name: supabase + sha256: cc039f63a3168386b3a4f338f3bff342c860d415a3578f3fbe854024aee6f911 + url: "https://pub.dev" + source: hosted + version: "2.10.2" + supabase_flutter: + dependency: "direct main" + description: + name: supabase_flutter + sha256: "92b2416ecb6a5c3ed34cf6e382b35ce6cc8921b64f2a9299d5d28968d42b09bb" + url: "https://pub.dev" + source: hosted + version: "2.12.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 + url: "https://pub.dev" + source: hosted + version: "0.7.7" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + url_launcher: + dependency: transitive + description: + name: url_launcher + sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8 + url: "https://pub.dev" + source: hosted + version: "6.3.2" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: "767344bf3063897b5cf0db830e94f904528e6dd50a6dfaf839f0abf509009611" + url: "https://pub.dev" + source: hosted + version: "6.3.28" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: b1aca26728b7cc7a3af971bb6f601554a8ae9df2e0a006de8450ba06a17ad36a + url: "https://pub.dev" + source: hosted + version: "6.4.0" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: d5e14138b3bc193a0f63c10a53c94b91d399df0512b1f29b94a043db7482384a + url: "https://pub.dev" + source: hosted + version: "3.2.2" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: "368adf46f71ad3c21b8f06614adb38346f193f3a59ba8fe9a2fd74133070ba18" + url: "https://pub.dev" + source: hosted + version: "3.2.5" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: d0412fcf4c6b31ecfdb7762359b7206ffba3bbffd396c6d9f9c4616ece476c1f + url: "https://pub.dev" + source: hosted + version: "2.4.2" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: "712c70ab1b99744ff066053cbe3e80c73332b38d46e5e945c98689b2e66fc15f" + url: "https://pub.dev" + source: hosted + version: "3.1.5" + uuid: + dependency: transitive + description: + name: uuid + sha256: "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489" + url: "https://pub.dev" + source: hosted + version: "4.5.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://pub.dev" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60" + url: "https://pub.dev" + source: hosted + version: "15.0.2" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + web_socket: + dependency: transitive + description: + name: web_socket + sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8 + url: "https://pub.dev" + source: hosted + version: "3.0.3" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce + url: "https://pub.dev" + source: hosted + version: "3.1.3" + yet_another_json_isolate: + dependency: transitive + description: + name: yet_another_json_isolate + sha256: fe45897501fa156ccefbfb9359c9462ce5dec092f05e8a56109db30be864f01e + url: "https://pub.dev" + source: hosted + version: "2.1.0" +sdks: + dart: ">=3.10.7 <4.0.0" + flutter: ">=3.38.4" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..c052993 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,95 @@ +name: run_vision_pro +description: "A new Flutter project." +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: ^3.10.7 + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.8 + lottie: ^3.1.2 + supabase_flutter: ^2.6.0 + google_maps_flutter: ^2.5.3 + geolocator: ^10.1.0 + flutter_polyline_points: ^2.0.0 + http: ^1.1.0 + permission_handler: ^11.0.1 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^6.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - assets/animations/ + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/to/resolution-aware-images + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/to/asset-from-package + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/to/font-from-package diff --git a/runvisionpro_app b/runvisionpro_app new file mode 160000 index 0000000..e20de5f --- /dev/null +++ b/runvisionpro_app @@ -0,0 +1 @@ +Subproject commit e20de5f992a350a1e58bdad288e872590b286d41 diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..52f3d0c --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:run_vision_pro/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/web/favicon.png differ diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/web/icons/Icon-192.png differ diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/web/icons/Icon-512.png differ diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/web/icons/Icon-maskable-192.png differ diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/web/icons/Icon-maskable-512.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..b5bb91c --- /dev/null +++ b/web/index.html @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + run_vision_pro + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..9bdd3d4 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "run_vision_pro", + "short_name": "run_vision_pro", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/windows/.gitignore b/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt new file mode 100644 index 0000000..e8e1808 --- /dev/null +++ b/windows/CMakeLists.txt @@ -0,0 +1,108 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.14) +project(run_vision_pro LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "run_vision_pro") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(VERSION 3.14...3.25) + +# Define build configuration option. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() +# Define settings for the Profile build mode. +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..903f489 --- /dev/null +++ b/windows/flutter/CMakeLists.txt @@ -0,0 +1,109 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# Set fallback configurations for older versions of the flutter tool. +if (NOT DEFINED FLUTTER_TARGET_PLATFORM) + set(FLUTTER_TARGET_PLATFORM "windows-x64") +endif() + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + ${FLUTTER_TARGET_PLATFORM} $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..3e035bd --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,23 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include +#include +#include +#include + +void RegisterPlugins(flutter::PluginRegistry* registry) { + AppLinksPluginCApiRegisterWithRegistrar( + registry->GetRegistrarForPlugin("AppLinksPluginCApi")); + GeolocatorWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("GeolocatorWindows")); + PermissionHandlerWindowsPluginRegisterWithRegistrar( + registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin")); + UrlLauncherWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("UrlLauncherWindows")); +} diff --git a/windows/flutter/generated_plugin_registrant.h b/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..d49f920 --- /dev/null +++ b/windows/flutter/generated_plugins.cmake @@ -0,0 +1,27 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + app_links + geolocator_windows + permission_handler_windows + url_launcher_windows +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..394917c --- /dev/null +++ b/windows/runner/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the build version. +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") + +# Disable Windows macros that collide with C++ standard library functions. +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") + +# Add dependency libraries and include directories. Add any application-specific +# dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc new file mode 100644 index 0000000..e8d6324 --- /dev/null +++ b/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) +#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD +#else +#define VERSION_AS_NUMBER 1,0,0,0 +#endif + +#if defined(FLUTTER_VERSION) +#define VERSION_AS_STRING FLUTTER_VERSION +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "run_vision_pro" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "run_vision_pro" "\0" + VALUE "LegalCopyright", "Copyright (C) 2026 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "run_vision_pro.exe" "\0" + VALUE "ProductName", "run_vision_pro" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/windows/runner/flutter_window.cpp b/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..955ee30 --- /dev/null +++ b/windows/runner/flutter_window.cpp @@ -0,0 +1,71 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + + flutter_controller_->engine()->SetNextFrameCallback([&]() { + this->Show(); + }); + + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + flutter_controller_->ForceRedraw(); + + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/windows/runner/flutter_window.h b/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp new file mode 100644 index 0000000..a406c6d --- /dev/null +++ b/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.Create(L"run_vision_pro", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/windows/runner/resource.h b/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/windows/runner/resources/app_icon.ico b/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000..c04e20c Binary files /dev/null and b/windows/runner/resources/app_icon.ico differ diff --git a/windows/runner/runner.exe.manifest b/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..153653e --- /dev/null +++ b/windows/runner/runner.exe.manifest @@ -0,0 +1,14 @@ + + + + + PerMonitorV2 + + + + + + + + + diff --git a/windows/runner/utils.cpp b/windows/runner/utils.cpp new file mode 100644 index 0000000..3a0b465 --- /dev/null +++ b/windows/runner/utils.cpp @@ -0,0 +1,65 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + unsigned int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr) + -1; // remove the trailing null character + int input_length = (int)wcslen(utf16_string); + std::string utf8_string; + if (target_length == 0 || target_length > utf8_string.max_size()) { + return utf8_string; + } + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + input_length, utf8_string.data(), target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/windows/runner/utils.h b/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/windows/runner/win32_window.cpp b/windows/runner/win32_window.cpp new file mode 100644 index 0000000..60608d0 --- /dev/null +++ b/windows/runner/win32_window.cpp @@ -0,0 +1,288 @@ +#include "win32_window.h" + +#include +#include + +#include "resource.h" + +namespace { + +/// Window attribute that enables dark mode window decorations. +/// +/// Redefined in case the developer's machine has a Windows SDK older than +/// version 10.0.22000.0. +/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute +#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE +#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 +#endif + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +/// Registry key for app theme preference. +/// +/// A value of 0 indicates apps should use dark mode. A non-zero or missing +/// value indicates apps should use light mode. +constexpr const wchar_t kGetPreferredBrightnessRegKey[] = + L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + } + FreeLibrary(user32_module); +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registrar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::Create(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + UpdateTheme(window); + + return OnCreate(); +} + +bool Win32Window::Show() { + return ShowWindow(window_handle_, SW_SHOWNORMAL); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + + case WM_DWMCOLORIZATIONCOLORCHANGED: + UpdateTheme(hwnd); + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} + +void Win32Window::UpdateTheme(HWND const window) { + DWORD light_mode; + DWORD light_mode_size = sizeof(light_mode); + LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, + kGetPreferredBrightnessRegValue, + RRF_RT_REG_DWORD, nullptr, &light_mode, + &light_mode_size); + + if (result == ERROR_SUCCESS) { + BOOL enable_dark_mode = light_mode == 0; + DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, + &enable_dark_mode, sizeof(enable_dark_mode)); + } +} diff --git a/windows/runner/win32_window.h b/windows/runner/win32_window.h new file mode 100644 index 0000000..e901dde --- /dev/null +++ b/windows/runner/win32_window.h @@ -0,0 +1,102 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates a win32 window with |title| that is positioned and sized using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size this function will scale the inputted width and height as + // as appropriate for the default monitor. The window is invisible until + // |Show| is called. Returns true if the window was created successfully. + bool Create(const std::wstring& title, const Point& origin, const Size& size); + + // Show the current window. Returns true if the window was successfully shown. + bool Show(); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + // Update the window frame's theme to match the system theme. + static void UpdateTheme(HWND const window); + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_