diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..64070e7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,66 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
+# Gradle caches
+.gradle/
+
+# Ignore Android Studio specific files
+.idea/
+
+# Ignore build output directories
+build/
+app/build/
+
+# Ignore generated files
+gen/
+out/
+generated/
+
+# Log files
+*.log
+
+# Bytecode files
+*.class
+
+# Keystore files
+*.keystore
+
+# Apk files
+*.apk
+*.ap_
+
+# IntelliJ IDEA specific files
+*.iws
+*.ipr
+*.iws
+
+# Windows specific files
+Thumbs.db
+ehthumbs.db
+Desktop.ini
+
+# macOS specific files
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Thumbnails
+._*
+
+# Temporary files created by editors
+*.swp
+*.swo
+*~
+
diff --git a/.well-known/funding-manifest-urls b/.well-known/funding-manifest-urls
new file mode 100644
index 0000000..3ad0a02
--- /dev/null
+++ b/.well-known/funding-manifest-urls
@@ -0,0 +1 @@
+https://zendalona.com/funding.json
diff --git a/README.md b/README.md
index 12e5067..b57979b 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,2 @@
-# zen-maths-tutor
+# MathMantra
Maths-Tutor for smart devices
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
new file mode 100644
index 0000000..d3ecd62
--- /dev/null
+++ b/app/build.gradle.kts
@@ -0,0 +1,51 @@
+plugins {
+ id("com.android.application")
+}
+
+android {
+ namespace = "com.zendalona.mathmantra"
+ compileSdk = 34
+
+ defaultConfig {
+ applicationId = "com.zendalona.mathmantra"
+ minSdk = 30
+ targetSdk = 34
+ versionCode = 1
+ versionName = "1.0"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+
+ viewBinding {
+ enable = true
+ }
+}
+
+dependencies {
+
+ implementation("androidx.appcompat:appcompat:1.6.1")
+ implementation("com.google.android.material:material:1.11.0")
+ implementation("com.airbnb.android:lottie:4.2.2")
+ implementation("androidx.constraintlayout:constraintlayout:2.1.4")
+ implementation("androidx.fragment:fragment:1.8.2")
+ implementation("androidx.activity:activity:1.7.0")
+ testImplementation("junit:junit:4.13.2")
+ androidTestImplementation("androidx.test.ext:junit:1.1.5")
+ androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
+ implementation("com.github.bumptech.glide:glide:4.15.1")
+ annotationProcessor("com.github.bumptech.glide:compiler:4.15.1")
+}
\ No newline at end of file
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..5f9883d
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/MainActivity.java b/app/src/main/java/com/zendalona/mathmantra/MainActivity.java
new file mode 100644
index 0000000..c4b37a4
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/MainActivity.java
@@ -0,0 +1,80 @@
+package com.zendalona.mathmantra;
+
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.core.view.WindowInsetsCompat;
+import androidx.core.view.WindowInsetsControllerCompat;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.os.Bundle;
+import android.util.Log;
+
+import com.zendalona.mathmantra.databinding.ActivityMainBinding;
+import com.zendalona.mathmantra.ui.DashboardFragment;
+import com.zendalona.mathmantra.utils.FragmentNavigation;
+import com.zendalona.mathmantra.utils.PermissionManager;
+
+import java.util.Optional;
+
+public class MainActivity extends AppCompatActivity implements FragmentNavigation {
+ private ActivityMainBinding binding;
+ private PermissionManager permissionManager;
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ binding = ActivityMainBinding.inflate(getLayoutInflater());
+ setContentView(binding.getRoot());
+
+ // Set immersive full-screen mode
+ WindowInsetsControllerCompat controller = new WindowInsetsControllerCompat(getWindow(), getWindow().getDecorView());
+ controller.hide(WindowInsetsCompat.Type.statusBars() | WindowInsetsCompat.Type.navigationBars());
+ controller.setSystemBarsBehavior(WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE);
+
+ if (savedInstanceState == null) loadFragment(new DashboardFragment(), FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+
+ setSupportActionBar(binding.toolbar);
+ ActionBar actionBar = getSupportActionBar();
+ if (actionBar != null) actionBar.setDisplayHomeAsUpEnabled(true);
+
+
+ //Permissions management
+ permissionManager = new PermissionManager(this, new PermissionManager.PermissionCallback() {
+ @Override
+ public void onPermissionGranted() {
+ Log.d("PermissionManager.PermissionCallback", "Granted!");
+ }
+ @Override
+ public void onPermissionDenied() {
+ Log.w("PermissionManager.PermissionCallback", "Denied!");
+ }
+ });
+ // TODO : ask for the sensor permissions
+ permissionManager.requestMicrophonePermission();
+// permissionManager.requestAccelerometerPermission();
+ }
+
+ @Override
+ public boolean onSupportNavigateUp() {
+ loadFragment(new DashboardFragment(), FragmentTransaction.TRANSIT_FRAGMENT_CLOSE);
+ return true;
+ }
+
+ @Override
+ public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
+ super.onRequestPermissionsResult(requestCode, permissions, grantResults);
+ permissionManager.handlePermissionsResult(requestCode, permissions, grantResults);
+ }
+
+ public void loadFragment(Fragment fragment, int transition) {
+ FragmentManager fragmentManager = getSupportFragmentManager();
+ FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
+ fragmentTransaction.setTransition(transition);
+ fragmentTransaction.replace(binding.fragmentContainer.getId(), fragment);
+ // TODO : binding.toolbar.setTitle();
+ fragmentTransaction.commit();
+ }
+
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/MathMantra.java b/app/src/main/java/com/zendalona/mathmantra/MathMantra.java
new file mode 100644
index 0000000..3024c35
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/MathMantra.java
@@ -0,0 +1,13 @@
+package com.zendalona.mathmantra;
+
+import android.app.Application;
+import androidx.appcompat.app.AppCompatDelegate;
+
+public class MathMantra extends Application {
+ @Override
+ public void onCreate() {
+ super.onCreate();
+ // Enforce Light Mode
+ AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/enums/Difficulty.java b/app/src/main/java/com/zendalona/mathmantra/enums/Difficulty.java
new file mode 100644
index 0000000..d361f4d
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/enums/Difficulty.java
@@ -0,0 +1,7 @@
+package com.zendalona.mathmantra.enums;
+
+public enum Difficulty {
+ EASY,
+ MEDIUM,
+ HARD
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/enums/Topic.java b/app/src/main/java/com/zendalona/mathmantra/enums/Topic.java
new file mode 100644
index 0000000..88c3386
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/enums/Topic.java
@@ -0,0 +1,8 @@
+package com.zendalona.mathmantra.enums;
+
+public enum Topic {
+ ADDITION,
+ SUBTRACTION,
+ MULTIPLICATION,
+ DIVISION
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/ChooseLessonFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/ChooseLessonFragment.java
new file mode 100644
index 0000000..334c281
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/ChooseLessonFragment.java
@@ -0,0 +1,177 @@
+package com.zendalona.mathmantra.ui;
+
+import android.content.Context;
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.FragmentChooseLessonBinding;
+import com.zendalona.mathmantra.utils.FragmentNavigation;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+
+public class ChooseLessonFragment extends Fragment {
+ private FragmentChooseLessonBinding binding;
+ private FragmentNavigation navigationListener;
+
+
+ @Override
+ public void onAttach(Context context) {
+ super.onAttach(context);
+ if (context instanceof FragmentNavigation) navigationListener = (FragmentNavigation) context;
+ else throw new RuntimeException(context.toString() + " must implement FragmentNavigation");
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+ binding = FragmentChooseLessonBinding.inflate(inflater, container, false);
+ ArrayList contents = new ArrayList<>();
+
+
+ //Zero
+ binding.chooseLesson1.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("A long time ago in India, there was a very smart person named Aryabhatta. He loved learning about the stars and numbers. Aryabhatta did something very important for all of us: he helped people understand the number zero.",
+
+ "Imagine you have a few sweets, but then you give them all away. You don't have any sweets left, right? Aryabhatta showed everyone that we can use the number zero to show that there's nothing left. Before Aryabhatta, people didn't have a way to write down 'zero' or 'nothing,' so his idea was really special.",
+
+ "Aryabhatta's discovery of zero was like finding a missing piece of a puzzle. It helped people count and do math better. Thanks to him, we can do things like counting, adding, and even using technology like computers, all because we understand zero. Aryabhatta's ideas are still very important today, and we're grateful for his great work in India!",
+
+ "Zero is a special number. It means nothing. When we have zero cookies, it means we have no cookies at all.",
+
+ " Zero is also like a superhero in math! It helps us count, even when there's nothing.",
+
+ " For example, when we start counting, we say zero, one, two, three. Zero is the start. ",
+
+ " And if you add zero to any number, that number stays the same.",
+
+ " Zero is cool because it helps us know when there is nothing."));
+ sendDataToNarratorFragment(contents);
+ });
+
+ //Addition
+ binding.chooseLesson2.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("A long time ago, people wanted to find out how to combine things. Imagine you have two apples and then you get two more apples. Now you have four apples! This is called addition, and it's a way to find out how many things you have when you put them together.",
+
+ "Addition is like making a bigger group. When you have a few toys and then get some more, you can count them all together using addition. It's like a magic trick that shows us the total number of things we have.",
+
+ "Addition helps us in our daily lives. When you count your toys, candies, or even books, you’re using addition. It makes counting easier and faster.",
+
+ "Thanks to addition, we can easily find out the total when we bring things together. It's a simple yet powerful tool we use every day!"));
+ sendDataToNarratorFragment(contents);
+ });
+
+
+ //Subtraction
+ binding.chooseLesson3.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("Imagine you have five balloons, but then one flies away. Now you have four left. This is called subtraction, and it's how we find out how many things are left when we take some away.",
+
+ "Subtraction is like taking things out of a group. When you share your cookies with friends, you can use subtraction to see how many you have left. It's a way to see what remains after giving some away.",
+
+ "Subtraction is very helpful in our daily lives. Whether you’re counting how many candies you’ve eaten or how many toys you’ve given away, subtraction helps you know what’s left.",
+
+ "Thanks to subtraction, we can figure out what happens when we take things away. It’s a simple and useful way to keep track of what we still have."));
+
+ sendDataToNarratorFragment(contents);
+ });
+
+ //Multiplication
+ binding.chooseLesson4.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("Once upon a time, people needed a faster way to add the same number many times. Imagine you have three bags, and each bag has four apples. To find out how many apples you have in total, you can use multiplication!",
+
+ "Multiplication is like adding the same number again and again, but much faster. Instead of saying four plus four plus four, you can simply say three times four, which gives you twelve.",
+
+ "Multiplication helps us when we need to group things quickly. Whether you're arranging chairs or counting stars in the sky, multiplication makes it easy to find out the total.",
+
+ "Thanks to multiplication, we can solve big counting problems in a snap. It's like a shortcut that makes math easier!"));
+ sendDataToNarratorFragment(contents);
+ });
+
+
+ //Division
+ binding.chooseLesson5.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("Imagine you have twelve cookies, and you want to share them equally with three friends. How many cookies will each friend get? This is where division comes in!",
+
+ "Division is like sharing things equally among groups. It helps us find out how many things each person gets when we split them up. In our example, twelve cookies divided by three friends means each friend gets four cookies.",
+
+ "Division is very useful in our daily lives. When you're sharing candies, books, or toys, division helps you make sure everyone gets the same amount.",
+
+ "Thanks to division, we can split things evenly and fairly. It's a handy tool for making sure everyone gets their fair share!"));
+ sendDataToNarratorFragment(contents);
+ });
+
+
+ //Percentage
+ binding.chooseLesson6.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("Long ago, people needed a way to talk about parts of a whole. Imagine you have a big pizza with 100 slices, and you eat 25 slices. You ate 25% of the pizza!",
+
+ "Percentage is like a way to describe parts of something using the number 100. If you have 100 candies and eat 10, you ate 10% of the candies. It helps us understand how big or small a part is compared to the whole.",
+
+ "Percentage is very helpful in daily life. Whether you're shopping, studying, or looking at scores, percentage tells you how much of something you have or need.",
+
+ "Thanks to percentage, we can easily compare different amounts. It's a simple way to understand parts of a whole in everyday situations!"));
+ sendDataToNarratorFragment(contents);
+ });
+
+
+ //Time
+ binding.chooseLesson7.setOnClickListener(v -> {
+ contents.addAll(Arrays.asList("A long time ago, people needed a way to measure how long things take. Imagine you’re playing a game, and you want to know how long you’ve been playing. This is where time comes in!",
+
+ "Time is like a way to measure how long things last. We use clocks to see how many hours, minutes, or seconds have passed. It helps us know when to start and stop doing things.",
+
+ "Time is very important in our daily lives. It helps us wake up in the morning, go to school, play, and even know when it's time to sleep.",
+
+ "Thanks to time, we can organize our day and make sure we do everything we need to. It's a special tool that helps us manage our day-to-day activities!"));
+ sendDataToNarratorFragment(contents);
+ });
+
+
+ return binding.getRoot();
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+
+ private void sendDataToNarratorFragment(ArrayList contents){
+ Bundle bundle = new Bundle();
+ bundle.putStringArrayList("contents",contents);
+
+ NarratorFragment narratorFragment = new NarratorFragment();
+
+ narratorFragment.setArguments(bundle);
+
+ if (navigationListener != null) navigationListener.loadFragment(narratorFragment, FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/CountNumbersFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/CountNumbersFragment.java
new file mode 100644
index 0000000..6a01241
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/CountNumbersFragment.java
@@ -0,0 +1,171 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.os.Bundle;
+import android.speech.RecognitionListener;
+import android.util.Log;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.Toast;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentCountNumbersBinding;
+import com.zendalona.mathmantra.utils.PermissionManager;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+import com.zendalona.mathmantra.utils.SpeechRecognitionUtility;
+import com.zendalona.mathmantra.utils.TTSUtility;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.stream.Collectors;
+
+public class CountNumbersFragment extends Fragment {
+
+ private FragmentCountNumbersBinding binding;
+ private SpeechRecognitionUtility speechRecognitionUtil;
+ private TTSUtility tts;
+ private PermissionManager permissionManager;
+ private List correctSequence;
+ private RandomValueGenerator random;
+ private final int COUNT_RANGE = 50;
+ private String answer;
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ binding = FragmentCountNumbersBinding.inflate(inflater, container, false);
+ random = new RandomValueGenerator();
+ tts = new TTSUtility(requireActivity());
+ answer = startGame();
+
+ // Initialize PermissionManager
+ permissionManager = new PermissionManager(requireActivity(), new PermissionManager.PermissionCallback() {
+ @Override
+ public void onPermissionGranted() {
+ // Initialize SpeechRecognitionUtility iff permission is granted
+ speechRecognitionUtil = new SpeechRecognitionUtility(requireActivity(), new SpeechRecognitionUtility.SpeechRecognitionCallback() {
+ @Override
+ public void onResults(String spokenText) {
+ binding.micAnimationView.pauseAnimation();
+ String normalizedSpokenText = spokenText.replaceAll("\\s+", "");
+ boolean isCorrect = normalizedSpokenText.equalsIgnoreCase(answer);
+
+ if(!isCorrect) {
+ //tts.speak("You missed");
+ List missingNumbers = correctSequence.stream().map(String::valueOf).collect(Collectors.toList());
+ //TODO : missingNumbers.removeAll(spokenNumbers);
+ }
+ showResultDialog(isCorrect);
+ Log.d("Recite Numbers : spoken:-", spokenText);
+ Log.d("Recite Numbers : answerFormed:-", answer);
+ }
+
+ @Override
+ public void onError(int error) {
+ binding.micAnimationView.pauseAnimation();
+ Toast.makeText(requireActivity(),"Error counting" + error, Toast.LENGTH_SHORT).show();
+ Log.e("Error in speech recognition : ", String.valueOf(error));
+ }
+ });
+ }
+
+ @Override
+ public void onPermissionDenied() {
+ Toast.makeText(getContext(), "Permission Denied", Toast.LENGTH_SHORT).show();
+ }
+ });
+
+ permissionManager.requestMicrophonePermission();
+
+ // Set up button listener to start listening
+ binding.startListeningButton.setOnClickListener(v -> {
+ binding.micAnimationView.playAnimation();
+ if(speechRecognitionUtil != null) speechRecognitionUtil.startListening();
+ else Log.d("CountNumbers :: startListeningBtnClicked", "speechRecognitionUtil value is null!");
+ });
+
+ return binding.getRoot();
+
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+ private String startGame() {
+ // Initialize the correct sequence and other variables
+ correctSequence = new ArrayList<>();
+ StringBuilder answer = new StringBuilder();
+ int[] range = random.generateNumberRangeForCount(COUNT_RANGE);
+ int start = range[0];
+ int end = range[1];
+ String message = "Count from " + start + " to " + end;
+ binding.countFromRangeTv.setText(message);
+ tts.speak(message);
+ for (int i = start; i <= end; i++) {
+ correctSequence.add(i);
+ answer.append(i);
+ }
+ return answer.toString();
+ }
+
+ private void showResultDialog(boolean isCorrect) {
+ String message = isCorrect ? "Very Good" : "Try again";
+ int gifResource = isCorrect ? R.drawable.right : R.drawable.wrong;
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ tts.speak(message);
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("Continue", (dialog, which) -> {
+ dialog.dismiss();
+ answer = startGame();
+ })
+ .create()
+ .show();
+ }
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ if (speechRecognitionUtil != null) speechRecognitionUtil.destroy();
+ if (tts != null) tts.shutdown();
+ binding = null;
+ }
+
+
+
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/DashboardFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/DashboardFragment.java
new file mode 100644
index 0000000..27443e4
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/DashboardFragment.java
@@ -0,0 +1,61 @@
+package com.zendalona.mathmantra.ui;
+
+import android.content.Context;
+import android.os.Bundle;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.zendalona.mathmantra.databinding.FragmentDashboardBinding;
+import com.zendalona.mathmantra.utils.FragmentNavigation;
+
+public class DashboardFragment extends Fragment {
+
+ private FragmentDashboardBinding binding;
+ private FragmentNavigation navigationListener;
+
+
+ @Override
+ public void onAttach(Context context) {
+ super.onAttach(context);
+ if (context instanceof FragmentNavigation) navigationListener = (FragmentNavigation) context;
+ else throw new RuntimeException(context.toString() + " must implement FragmentNavigation");
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ binding = FragmentDashboardBinding.inflate(inflater, container, false);
+
+ binding.ringBellCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new RingBellFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.tapTablaCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new TapTablaFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.speakNumbersCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new CountNumbersFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.ttsCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new ChooseLessonFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.mcqCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new MCQFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.mathQuizCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new MathQuizFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+ binding.numberLineCv.setOnClickListener(v -> {
+ if (navigationListener != null) navigationListener.loadFragment(new NumberLineFragment(),FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
+ });
+
+ return binding.getRoot();
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/MCQFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/MCQFragment.java
new file mode 100644
index 0000000..2626586
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/MCQFragment.java
@@ -0,0 +1,150 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentMCQBinding;
+import com.zendalona.mathmantra.enums.Difficulty;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+import com.zendalona.mathmantra.utils.TTSUtility;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.function.Function;
+
+public class MCQFragment extends Fragment {
+
+ private FragmentMCQBinding binding;
+ private RandomValueGenerator random;
+ private TTSUtility tts;
+
+ public MCQFragment() {
+ }
+
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+ binding = FragmentMCQBinding.inflate(inflater, container, false);
+ random = new RandomValueGenerator();
+ tts = new TTSUtility(requireActivity());
+ generateNewQuestion();
+ return binding.getRoot();
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+
+ private void generateNewQuestion() {
+ int topic = random.generateQuestionTopic();
+ int[] numbers;
+ String operator = "+";
+ switch (topic){
+ case 1 :
+ numbers = random.generateSubtractionValues(Difficulty.EASY);
+ operator = "-";
+ break;
+ case 2 :
+ numbers = random.generateMultiplicationValues(Difficulty.EASY);
+ operator = "*";
+ break;
+ case 3 :
+ numbers = random.generateDivisionValues(Difficulty.EASY);
+ operator = "/";
+ break;
+ default: numbers = random.generateAdditionValues(Difficulty.EASY);
+ }
+ StringBuilder questionBuilder = new StringBuilder();
+ questionBuilder.append(numbers[0])
+ .append(operator)
+ .append(numbers[1])
+ .append(" = ?");
+ binding.questionTv.setText(questionBuilder);
+ int[] options = random.generateDivisionValues(Difficulty.EASY);
+ List choices = new ArrayList<>();
+ choices.add(options[0]);
+ choices.add(options[1]);
+ choices.add(options[2]);
+ choices.add(numbers[2]);
+
+ Collections.shuffle(choices);
+ binding.optionA.setText(String.valueOf(choices.get(0)));
+ binding.optionB.setText(String.valueOf(choices.get(1)));
+ binding.optionC.setText(String.valueOf(choices.get(2)));
+ binding.optionD.setText(String.valueOf(choices.get(3)));
+
+ binding.optionA
+ .setOnClickListener(v -> showResultDialog(Integer.parseInt(binding.optionA.getText().toString()) == numbers[2]));
+ binding.optionB
+ .setOnClickListener(v -> showResultDialog(Integer.parseInt(binding.optionB.getText().toString()) == numbers[2]));
+ binding.optionC
+ .setOnClickListener(v -> showResultDialog(Integer.parseInt(binding.optionC.getText().toString()) == numbers[2]));
+ binding.optionD
+ .setOnClickListener(v -> showResultDialog(Integer.parseInt(binding.optionD.getText().toString()) == numbers[2]));
+ }
+
+ private void showResultDialog(boolean isCorrect) {
+ String message = isCorrect ? "Right Answer" : "Wrong Answer";
+ int gifResource = isCorrect ? R.drawable.right : R.drawable.wrong;
+ tts.speak(message);
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("Continue", (dialog, which) -> {
+ dialog.dismiss();
+ generateNewQuestion();
+ })
+ .create()
+ .show();
+ }
+
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/MathQuizFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/MathQuizFragment.java
new file mode 100644
index 0000000..0f29741
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/MathQuizFragment.java
@@ -0,0 +1,104 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.TextView;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentMathQuizBinding;
+import com.zendalona.mathmantra.enums.Difficulty;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+
+public class MathQuizFragment extends Fragment {
+
+ private FragmentMathQuizBinding binding;
+ private RandomValueGenerator random;
+
+ public MathQuizFragment() {
+ // Required empty public constructor
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+ binding = FragmentMathQuizBinding.inflate(inflater, container, false);
+ random = new RandomValueGenerator();
+ generateNewQuestion();
+ return binding.getRoot();
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+
+ private void generateNewQuestion() {
+ int numbers[] = random.generateAdditionValues(Difficulty.EASY);
+ StringBuilder questionBuilder = new StringBuilder();
+ questionBuilder.append(numbers[0])
+ .append("+")
+ .append(numbers[1])
+ .append(" = ?");
+ binding.answerEt.setText("");
+ binding.questionTv.setText(questionBuilder);
+ binding.submitAnswerBtn
+ .setOnClickListener(v -> showResultDialog(Integer.parseInt(binding.answerEt.getText().toString()) == numbers[2]));
+ }
+
+ private void showResultDialog(boolean isCorrect) {
+ String message = isCorrect ? "Right Answer" : "Wrong Answer";
+ int gifResource = isCorrect ? R.drawable.right : R.drawable.wrong;
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("OK", (dialog, which) -> {
+ dialog.dismiss();
+ generateNewQuestion();
+ })
+ .create()
+ .show();
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/NarratorFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/NarratorFragment.java
new file mode 100644
index 0000000..a3f265f
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/NarratorFragment.java
@@ -0,0 +1,97 @@
+package com.zendalona.mathmantra.ui;
+
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.FragmentNarratorBinding;
+import com.zendalona.mathmantra.utils.TTSUtility;
+
+import java.util.ArrayList;
+
+public class NarratorFragment extends Fragment {
+
+ private FragmentNarratorBinding binding;
+ private TTSUtility tts;
+
+ private ArrayList theoryContents;
+
+ private int currentIndex = 0;
+
+ public NarratorFragment() {
+ // Required empty public constructor
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ tts = new TTSUtility(requireContext());
+ tts.setSpeechRate(0.9f);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ binding = FragmentNarratorBinding.inflate(inflater, container, false);
+ Bundle args = getArguments();
+ assert args != null;
+ if(!args.isEmpty()){
+ theoryContents = args.getStringArrayList("contents");
+ }
+
+ updateTheoryContent();
+
+ binding.repeatButton.setOnClickListener(v -> tts.speak(binding.theoryText.getText().toString()));
+
+ binding.previousButton.setOnClickListener(v -> {
+ if(currentIndex == 0) currentIndex++;
+ currentIndex = (currentIndex - 1) % theoryContents.size();
+ updateTheoryContent();
+ });
+
+ binding.nextButton.setOnClickListener(v -> {
+ currentIndex = (currentIndex + 1) % theoryContents.size();
+ updateTheoryContent();
+ });
+ return binding.getRoot();
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+
+ private void updateTheoryContent() {
+ String content = theoryContents.get(currentIndex);
+ binding.theoryText.setText(content);
+ tts.speak(content);
+ }
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ tts.shutdown();
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineFragment.java
new file mode 100644
index 0000000..a6fea12
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineFragment.java
@@ -0,0 +1,191 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.content.pm.ActivityInfo;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+import androidx.lifecycle.ViewModelProvider;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentNumberLineBinding;
+import com.zendalona.mathmantra.enums.Topic;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+import com.zendalona.mathmantra.utils.TTSUtility;
+import com.zendalona.mathmantra.viewModels.NumberLineViewModel;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class NumberLineFragment extends Fragment {
+
+ private FragmentNumberLineBinding binding;
+ private NumberLineViewModel viewModel;
+ private TTSUtility tts;
+ private RandomValueGenerator random;
+ private final String CURRENT_POSITION = "You're standing on number : \n";
+ private int answer;
+ private String questionDesc = "";
+ private String correctAnswerDesc = "";
+
+ public NumberLineFragment() {
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ viewModel = new ViewModelProvider(this).get(NumberLineViewModel.class);
+ tts = new TTSUtility(requireContext());
+ tts.setSpeechRate(0.8f);
+ }
+
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+
+ @Override
+ public void onPause() {
+ super.onPause();
+// requireActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ binding = FragmentNumberLineBinding.inflate(inflater, container, false);
+// tts.speak("You're standing on the start of number line, at position 0.");
+
+ random = new RandomValueGenerator();
+ setupObservers();
+
+ correctAnswerDesc = askNewQuestion(0);
+
+ binding.numberLineQuestion.setOnClickListener(v -> tts.speak(questionDesc));
+ binding.btnLeft.setOnClickListener(v -> {
+ viewModel.moveLeft();
+ binding.numberLineView.moveLeft();
+ });
+ binding.btnRight.setOnClickListener(v -> {
+ viewModel.moveRight();
+ binding.numberLineView.moveRight();
+ });
+
+ return binding.getRoot();
+ }
+
+ private String askNewQuestion(int position) {
+
+ Topic topic = random.generateNumberLineQuestion()? Topic.ADDITION : Topic.SUBTRACTION;
+ int unitsToMove = random.generateNumberForCountGame();
+ String operator = " plus ";
+ String direction = " right ";
+ Map operatorMap = new HashMap<>();
+ operatorMap.put("plus","+");
+ operatorMap.put("minus","-");
+
+ switch (topic){
+ case ADDITION:
+ operator = " plus ";
+ direction = " right ";
+ answer = position + unitsToMove;
+ break;
+ case SUBTRACTION:
+ operator = " minus ";
+ direction = " left ";
+ answer = position - unitsToMove;
+ break;
+ }
+ String questionBrief = "What is " + position + operatorMap.get(operator.trim()) + unitsToMove + "?";
+ binding.numberLineQuestion.setText(questionBrief);
+ questionDesc =
+ "You're standing on " + position + "."
+ + "What is " + position + operator + unitsToMove + "?"
+ + "Move " + unitsToMove + "units to the" + direction + "of Number line.";
+
+ tts.speak(questionDesc);
+
+ return position + operator + unitsToMove + " equals " + answer;
+ }
+
+ private void setupObservers() {
+ viewModel.lineStart.observe(getViewLifecycleOwner(), start -> {
+ int end = viewModel.lineEnd.getValue() != null ? viewModel.lineEnd.getValue() : start + 10;
+ int position = viewModel.currentPosition.getValue() != null ? viewModel.currentPosition.getValue() : start;
+ binding.numberLineView.updateNumberLine(start, end, position);
+ });
+
+ viewModel.lineEnd.observe(getViewLifecycleOwner(), end -> {
+ int start = viewModel.lineStart.getValue() != null ? viewModel.lineStart.getValue() : end - 10;
+ int position = viewModel.currentPosition.getValue() != null ? viewModel.currentPosition.getValue() : start;
+ binding.numberLineView.updateNumberLine(start, end, position);
+ });
+
+ viewModel.currentPosition.observe(getViewLifecycleOwner(), position -> {
+ binding.currentPositionTv.setText(CURRENT_POSITION + position);
+// tts.speak(Integer.toString(position));
+ if(position == answer) {
+ tts.speak("Correct Answer! " + correctAnswerDesc + ".");
+ appreciateUser();
+ }
+ });
+ }
+
+ private void appreciateUser() {
+ String message = "Good going";
+ int gifResource = R.drawable.right;
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("Continue", (dialog, which) -> {
+ dialog.dismiss();
+ correctAnswerDesc = askNewQuestion(answer);
+ })
+ .create()
+ .show();
+// tts.speak("Click on continue!");
+ }
+
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineView.java b/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineView.java
new file mode 100644
index 0000000..220e3dd
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/NumberLineView.java
@@ -0,0 +1,105 @@
+package com.zendalona.mathmantra.ui;
+
+import android.content.Context;
+import android.graphics.Canvas;
+import android.graphics.Paint;
+import android.util.AttributeSet;
+import android.util.Log;
+import android.view.View;
+import androidx.core.content.ContextCompat;
+import com.zendalona.mathmantra.R;
+
+public class NumberLineView extends View {
+
+ private int currentPosition;
+ private int numberRangeStart;
+ private int numberRangeEnd;
+ private final String MASCOT_EMOJI = "\uD83E\uDDCD\u200D♂\uFE0F";
+
+ private Paint linePaint;
+ private Paint numberPaint;
+ private Paint mascotPaint;
+
+ private float gap;
+
+ public NumberLineView(Context context) {
+ super(context);
+ init();
+ }
+
+ public NumberLineView(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ init();
+ }
+
+ public NumberLineView(Context context, AttributeSet attrs, int defStyleAttr) {
+ super(context, attrs, defStyleAttr);
+ init();
+ }
+
+ private void init() {
+ linePaint = new Paint();
+ linePaint.setColor(ContextCompat.getColor(getContext(), R.color.blue));
+ linePaint.setStrokeWidth(12f);
+
+ numberPaint = new Paint();
+ numberPaint.setColor(ContextCompat.getColor(getContext(), R.color.lightBlue));
+ numberPaint.setTextSize(40f);
+
+ mascotPaint = new Paint();
+ mascotPaint.setTextSize(200f);
+ }
+
+ @Override
+ protected void onDraw(Canvas canvas) {
+ super.onDraw(canvas);
+ drawNumberLine(canvas);
+ drawMascot(canvas);
+ }
+
+
+ private void drawNumberLine(Canvas canvas) {
+ float startX = getWidth() * 0.01f;
+ float endX = getWidth() * 0.98f;
+ float centerY = getHeight() / 2f;
+
+ canvas.drawLine(0 , centerY, getWidth(), centerY, linePaint);
+
+ gap = (endX - startX) / (numberRangeEnd - numberRangeStart);
+
+ // Draw numbers on the number line
+ Log.d("Drawing number line range : ", numberRangeStart + " to " + numberRangeEnd);
+ for (int number = numberRangeStart; number <= numberRangeEnd; number++) {
+ float x = startX + (number - numberRangeStart) * gap;
+ canvas.drawText(String.valueOf(number), x, centerY + 50f, numberPaint);
+ }
+ }
+
+ private void drawMascot(Canvas canvas) {
+ float centerY = getHeight() / 2f;
+ float mascotPosition = (currentPosition - numberRangeStart - 0.4f) * gap;
+ if (mascotPosition < 0) mascotPosition = 0;
+ if (mascotPosition > getWidth()) mascotPosition = getWidth();
+ canvas.drawText(MASCOT_EMOJI, mascotPosition , centerY - 50f, mascotPaint);
+ }
+
+ public void updateNumberLine(int start, int end, int position) {
+ this.numberRangeStart = start;
+ this.numberRangeEnd = end;
+ this.currentPosition = position;
+ invalidate();
+ }
+
+ public int moveLeft() {
+ currentPosition--;
+ invalidate();
+ return currentPosition;
+ }
+
+ public int moveRight() {
+ currentPosition++;
+ invalidate();
+ return currentPosition;
+ }
+
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/RingBellFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/RingBellFragment.java
new file mode 100644
index 0000000..b2fff01
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/RingBellFragment.java
@@ -0,0 +1,148 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.appcompat.app.ActionBar;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.util.Log;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentRingBellBinding;
+import com.zendalona.mathmantra.utils.AccelerometerUtility;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+import com.zendalona.mathmantra.utils.ResponseFeedbackDialog;
+import com.zendalona.mathmantra.utils.SoundEffectUtility;
+import com.zendalona.mathmantra.utils.TTSUtility;
+
+public class RingBellFragment extends Fragment {
+
+ private FragmentRingBellBinding binding;
+ private AccelerometerUtility accelerometerUtility;
+ private SoundEffectUtility soundEffectUtility;
+ private RandomValueGenerator randomValueGenerator;
+ private TTSUtility tts;
+ int count, target;
+
+ public RingBellFragment() {
+ // Required empty public constructor
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ soundEffectUtility = SoundEffectUtility.getInstance(requireContext());
+ accelerometerUtility = new AccelerometerUtility(requireContext());
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ binding = FragmentRingBellBinding.inflate(inflater, container, false);
+ randomValueGenerator = new RandomValueGenerator();
+ tts = new TTSUtility(requireContext());
+ startGame();
+ return binding.getRoot();
+ }
+
+ private void ringBell() {
+ binding.bellAnimationView.playAnimation();
+ soundEffectUtility.playSound(R.raw.bell_ring);
+ binding.ringCount.setText(String.valueOf(++count));
+ if (count == target) appreciateUser();
+ }
+
+ private void appreciateUser() {
+ String message = "Well done";
+ int gifResource = R.drawable.right;
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ tts.speak("Well done!, Click on continue!");
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("Continue", (dialog, which) -> {
+ dialog.dismiss();
+ startGame();
+ })
+ .create()
+ .show();
+ }
+
+ private void startGame() {
+ count = 0;
+ binding.ringCount.setText(String.valueOf(count));
+ target = randomValueGenerator.generateNumberForCountGame();
+ String targetText = "Ring the bell " + target + " times";
+ tts.speak(targetText);
+ binding.ringMeTv.setText(targetText);
+ }
+
+
+ @Override
+ public void onResume() {
+ super.onResume();
+ // Start a thread to check for shakes
+ new Thread(() -> {
+ while (isVisible()) {
+ try {
+ Thread.sleep(200);
+ } catch (InterruptedException e) {
+ Log.d("Accelerometer Thread sleep Error", e.getLocalizedMessage());
+ e.printStackTrace();
+ }
+ if (accelerometerUtility.isDeviceShaken())
+ requireActivity().runOnUiThread(this::ringBell);
+ }
+ }).start();
+
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+
+}
+
+@Override
+public void onPause() {
+ super.onPause();
+ accelerometerUtility.unregisterListener();
+}
+
+@Override
+public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ tts.shutdown();
+}
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/ui/TapTablaFragment.java b/app/src/main/java/com/zendalona/mathmantra/ui/TapTablaFragment.java
new file mode 100644
index 0000000..38f0d1f
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/ui/TapTablaFragment.java
@@ -0,0 +1,130 @@
+package com.zendalona.mathmantra.ui;
+
+import android.app.AlertDialog;
+import android.content.Intent;
+import android.os.Bundle;
+
+import androidx.activity.OnBackPressedCallback;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentTransaction;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.MainActivity;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+import com.zendalona.mathmantra.databinding.FragmentTapTablaBinding;
+import com.zendalona.mathmantra.utils.RandomValueGenerator;
+import com.zendalona.mathmantra.utils.SoundEffectUtility;
+import com.zendalona.mathmantra.utils.TTSUtility;
+
+public class TapTablaFragment extends Fragment {
+
+ private FragmentTapTablaBinding binding;
+ private SoundEffectUtility soundEffectUtility;
+ private RandomValueGenerator randomValueGenerator;
+ private TTSUtility tts;
+ private int count, target;
+
+ public TapTablaFragment() {
+ // Required empty public constructor
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ soundEffectUtility = SoundEffectUtility.getInstance(requireContext());
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ // Inflate the layout for this fragment
+ binding = FragmentTapTablaBinding.inflate(inflater, container, false);
+ randomValueGenerator = new RandomValueGenerator();
+ tts = new TTSUtility(requireContext());
+ startGame();
+ binding.tablaAnimationView.setOnClickListener(v -> onTablaTapped());
+ return binding.getRoot();
+ }
+ @Override
+ public void onResume() {
+ super.onResume();
+ requireActivity().getOnBackPressedDispatcher().addCallback(
+ getViewLifecycleOwner(),
+ new OnBackPressedCallback(true) {
+ @Override
+ public void handleOnBackPressed() {
+ // Navigate back to MainFragment
+ FragmentManager fragmentManager = requireActivity().getSupportFragmentManager();
+ FragmentTransaction transaction = fragmentManager.beginTransaction();
+ transaction.replace(R.id.fragment_container, new DashboardFragment()); // Change fragment_container to your actual container ID
+ transaction.addToBackStack(null); // Adds to back stack for proper back navigation
+ transaction.commit();
+ }
+ });
+ }
+ private void onTablaTapped() {
+ binding.tapCount.setText(String.valueOf(++count));
+ binding.tablaAnimationView.playAnimation();
+ soundEffectUtility.playSound(R.raw.drums_sound);
+ if(count == target) appreciateUser();
+ }
+
+
+ private void appreciateUser() {
+ String message = "Well done";
+ int gifResource = R.drawable.right;
+
+ LayoutInflater inflater = getLayoutInflater();
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ // Load the GIF using Glide
+ Glide.with(this)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ tts.speak("Well done!, Click on continue!");
+
+ new AlertDialog.Builder(requireContext())
+ .setView(dialogView)
+ .setPositiveButton("Continue", (dialog, which) -> {
+ dialog.dismiss();
+ binding.tapCount.setText("0");
+ startGame();
+ })
+ .create()
+ .show();
+ }
+
+ private void startGame() {
+ count = 0;
+ binding.tapMeTv.setText(String.valueOf(count));
+ target = randomValueGenerator.generateNumberForCountGame();
+ String targetText = "Tap the drum " + target + " times";
+ tts.speak(targetText);
+ binding.tapMeTv.setText(targetText);
+ }
+
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ // Release resources related to binding
+ binding = null;
+ }
+
+ @Override
+ public void onDestroy() {
+ super.onDestroy();
+ // Release sound effect resources when fragment is destroyed
+ // FIXME : soundEffectUtility.release();
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/AccelerometerUtility.java b/app/src/main/java/com/zendalona/mathmantra/utils/AccelerometerUtility.java
new file mode 100644
index 0000000..1b3de8a
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/AccelerometerUtility.java
@@ -0,0 +1,74 @@
+package com.zendalona.mathmantra.utils;
+
+import android.content.Context;
+import android.hardware.Sensor;
+import android.hardware.SensorEvent;
+import android.hardware.SensorEventListener;
+import android.hardware.SensorManager;
+import android.widget.Toast;
+
+public class AccelerometerUtility implements SensorEventListener {
+
+ private static final float SHAKE_THRESHOLD = 2000.0f; // Threshold for detecting shake
+
+ private SensorManager sensorManager;
+ private Sensor accelerometer;
+ private boolean isDeviceShaken = false;
+ private float lastX, lastY, lastZ;
+ private long lastUpdate = 0;
+
+ public AccelerometerUtility(Context context) {
+ sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);
+ if (sensorManager != null) {
+ accelerometer = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
+ if (accelerometer != null) {
+ sensorManager.registerListener(this, accelerometer, SensorManager.SENSOR_DELAY_UI);
+ } else {
+ Toast.makeText(context, "Accelerometer Sensor Unavailable", Toast.LENGTH_SHORT).show();
+ }
+ } else {
+ Toast.makeText(context, "Sensor Manager Unavailable", Toast.LENGTH_SHORT).show();
+ }
+ }
+
+ public void unregisterListener() {
+ if (sensorManager != null) {
+ sensorManager.unregisterListener(this);
+ }
+ }
+
+ @Override
+ public void onSensorChanged(SensorEvent event) {
+ if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
+ long currentTime = System.currentTimeMillis();
+ if ((currentTime - lastUpdate) > 100) {
+ long diffTime = (currentTime - lastUpdate);
+ lastUpdate = currentTime;
+
+ float x = event.values[0];
+ float y = event.values[1];
+ float z = event.values[2];
+
+ float speed = Math.abs(x + y + z - lastX - lastY - lastZ) / diffTime * 10000;
+ if (speed > SHAKE_THRESHOLD) {
+ isDeviceShaken = true;
+ }
+
+ lastX = x;
+ lastY = y;
+ lastZ = z;
+ }
+ }
+ }
+
+ @Override
+ public void onAccuracyChanged(Sensor sensor, int accuracy) {
+ // No need to handle accuracy changes for this use case
+ }
+
+ public boolean isDeviceShaken() {
+ boolean shaken = isDeviceShaken;
+ isDeviceShaken = false; // Reset the flag
+ return shaken;
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/FragmentNavigation.java b/app/src/main/java/com/zendalona/mathmantra/utils/FragmentNavigation.java
new file mode 100644
index 0000000..f1b0354
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/FragmentNavigation.java
@@ -0,0 +1,7 @@
+package com.zendalona.mathmantra.utils;
+
+import androidx.fragment.app.Fragment;
+
+public interface FragmentNavigation {
+ void loadFragment(Fragment fragment, int transition);
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/PermissionManager.java b/app/src/main/java/com/zendalona/mathmantra/utils/PermissionManager.java
new file mode 100644
index 0000000..e74036a
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/PermissionManager.java
@@ -0,0 +1,72 @@
+package com.zendalona.mathmantra.utils;
+
+import android.Manifest;
+import android.app.Activity;
+import android.content.pm.PackageManager;
+import android.util.Log;
+import androidx.core.app.ActivityCompat;
+import androidx.core.content.ContextCompat;
+import java.util.Arrays;
+
+public class PermissionManager {
+ public static final int REQUEST_CODE_MICROPHONE = 100;
+ public static final int REQUEST_CODE_ACCELEROMETER = 101;
+
+ private final Activity activity;
+ private final PermissionCallback callback;
+ private String permissionToRequest;
+ private final String TAG = "PermissionManager";
+
+ public PermissionManager(Activity activity, PermissionCallback callback) {
+ this.activity = activity;
+ this.callback = callback;
+ }
+
+ public void requestMicrophonePermission() {
+ permissionToRequest = Manifest.permission.RECORD_AUDIO;
+ Log.i(TAG + " :: requestMicrophonePermission()", permissionToRequest);
+ requestPermission();
+ }
+
+ public void requestAccelerometerPermission() {
+ permissionToRequest = Manifest.permission.BODY_SENSORS;
+ Log.i(TAG + " :: requestAccelerometerPermission()", permissionToRequest);
+ requestPermission();
+ }
+
+ private int getRequestCode() {
+ switch (permissionToRequest){
+ case Manifest.permission.RECORD_AUDIO: return REQUEST_CODE_MICROPHONE;
+ case Manifest.permission.BODY_SENSORS: return REQUEST_CODE_ACCELEROMETER;
+ default: Log.e("PermissionManager", "Unknown permission: " + permissionToRequest); return -1;
+ }
+ }
+
+ private void requestPermission() {
+ if (permissionToRequest != null) {
+ if (ContextCompat.checkSelfPermission(activity, permissionToRequest) == PackageManager.PERMISSION_GRANTED) {
+ if (callback != null) callback.onPermissionGranted();
+ } else {
+ Log.w(TAG + " :: requestPermission()", "Permission not already granted. " + permissionToRequest + "w/" + getRequestCode());
+ String[] permissionsToRequest = {Manifest.permission.RECORD_AUDIO, Manifest.permission.BODY_SENSORS};
+ Log.i(TAG, "requesting permissions : " + Arrays.toString(permissionsToRequest));
+ ActivityCompat.requestPermissions(activity, permissionsToRequest, 101);
+// ActivityCompat.requestPermissions(activity, new String[]{permissionToRequest}, 42);
+ }
+ }
+ else Log.e(TAG + " :: requestPermission()", "permissionToRequest value is null");
+ }
+
+ public void handlePermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
+ if(callback != null) {
+ if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) callback.onPermissionGranted();
+ else callback.onPermissionDenied();
+ }
+ else Log.w(TAG + " :: handlePermissionsResult() ","callback value is null");
+ }
+
+ public interface PermissionCallback {
+ void onPermissionGranted();
+ void onPermissionDenied();
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/RandomValueGenerator.java b/app/src/main/java/com/zendalona/mathmantra/utils/RandomValueGenerator.java
new file mode 100644
index 0000000..2f297a5
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/RandomValueGenerator.java
@@ -0,0 +1,128 @@
+package com.zendalona.mathmantra.utils;
+
+import com.zendalona.mathmantra.enums.Difficulty;
+
+import java.util.Random;
+
+public class RandomValueGenerator {
+ private Random random;
+ private final int NO_OF_TOPICS = 4;
+
+ public RandomValueGenerator() {
+ this.random = new Random();
+ }
+
+ public boolean generateNumberLineQuestion(){
+ return random.nextBoolean();
+ }
+
+ public int generateQuestionTopic(){
+ return random.nextInt(NO_OF_TOPICS);
+ }
+
+ public int generateNumberForCountGame() {
+ return random.nextInt(16) + 2;
+ }
+
+ public int[] generateNumberRangeForCount(int upperBound){
+ int start = random.nextInt(upperBound - 10);
+ int end = random.nextInt(11) + start + 6;
+ return new int[]{start, end};
+ }
+
+ public int[] generateAdditionValues(Difficulty difficulty) {
+ int[] values = new int[3];
+ switch (difficulty) {
+ case EASY:
+ values[0] = random.nextInt(10) + 1;
+ values[1] = random.nextInt(10) + 1;
+ break;
+ case MEDIUM:
+ values[0] = random.nextInt(50) + 10;
+ values[1] = random.nextInt(50) + 10;
+ break;
+ case HARD:
+ values[0] = random.nextInt(500) + 17;
+ values[1] = random.nextInt(500) + 17;
+ break;
+ }
+ values[2] = values[0] + values[1];
+ return values;
+ }
+
+ public int[] generateSubtractionValues(Difficulty difficulty) {
+ int[] values = new int[3];
+ switch (difficulty) {
+ case EASY:
+ values[0] = random.nextInt(10) + 1;
+ values[1] = random.nextInt(10) + 1;
+ if (values[1] > values[0]) {
+ int temp = values[0];
+ values[0] = values[1];
+ values[1] = temp;
+ }
+ break;
+ case MEDIUM:
+ values[0] = random.nextInt(50) + 10;
+ values[1] = random.nextInt(50) + 10;
+ if (values[1] > values[0]) {
+ int temp = values[0];
+ values[0] = values[1];
+ values[1] = temp;
+ }
+ break;
+ case HARD:
+ values[0] = random.nextInt(500) + 17;
+ values[1] = random.nextInt(500) + 17;
+ if (values[1] > values[0]) {
+ int temp = values[0];
+ values[0] = values[1];
+ values[1] = temp;
+ }
+ break;
+ }
+ values[2] = values[0] - values[1];
+ return values;
+ }
+
+ public int[] generateMultiplicationValues(Difficulty difficulty) {
+ int[] values = new int[3];
+ switch (difficulty) {
+ case EASY:
+ values[0] = random.nextInt(10) + 1;
+ values[1] = random.nextInt(10) + 1;
+ break;
+ case MEDIUM:
+ values[0] = random.nextInt(20) + 1;
+ values[1] = random.nextInt(20) + 1;
+ break;
+ case HARD:
+ values[0] = random.nextInt(50) + 1;
+ values[1] = random.nextInt(50) + 1;
+ break;
+ }
+ values[2] = values[0] * values[1];
+ return values;
+ }
+
+ public int[] generateDivisionValues(Difficulty difficulty) {
+ int[] values = new int[3];
+ switch (difficulty) {
+ case EASY:
+ values[1] = random.nextInt(9) + 1; // Avoid division by zero
+ values[0] = values[1] * (random.nextInt(10) + 1);
+ break;
+ case MEDIUM:
+ values[1] = random.nextInt(19) + 1; // Avoid division by zero
+ values[0] = values[1] * (random.nextInt(20) + 1);
+ break;
+ case HARD:
+ values[1] = random.nextInt(49) + 1; // Avoid division by zero
+ values[0] = values[1] * (random.nextInt(50) + 1); //TODO : Scope for decimal values?
+ break;
+ }
+ values[2] = values[0] / values[1];
+ return values;
+ }
+
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/ResponseFeedbackDialog.java b/app/src/main/java/com/zendalona/mathmantra/utils/ResponseFeedbackDialog.java
new file mode 100644
index 0000000..237f3c0
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/ResponseFeedbackDialog.java
@@ -0,0 +1,74 @@
+package com.zendalona.mathmantra.utils;
+
+import android.content.Context;
+import android.os.Handler;
+import android.os.Looper;
+import android.view.LayoutInflater;
+import android.view.View;
+import androidx.appcompat.app.AlertDialog;
+import com.bumptech.glide.Glide;
+import com.zendalona.mathmantra.R;
+import com.zendalona.mathmantra.databinding.DialogResultBinding;
+
+import java.util.Random;
+
+public class ResponseFeedbackDialog {
+
+ private static final int DIALOG_DURATION = 3 * 1000;
+ private static final String[] POSITIVE_MESSAGES = {
+ "Awesome!",
+ "Great job!",
+ "Well done!",
+ "Correct!",
+ "Bravo!"
+ };
+ private static final String[] NEGATIVE_MESSAGES = {
+ "Try again!",
+ "Not quite!",
+ "Oops, wrong answer!",
+ "Better luck next time!",
+ "Incorrect!"
+ };
+
+
+ public static void showFeedbackDialog(Context context, boolean isCorrect, Runnable onDismissAction) {
+ String message = isCorrect ? getRandomPositiveMessage() : getRandomNegativeMessage();
+ int gifResource = isCorrect ? R.drawable.right : R.drawable.wrong;
+
+ LayoutInflater inflater = LayoutInflater.from(context);
+ DialogResultBinding dialogBinding = DialogResultBinding.inflate(inflater);
+ View dialogView = dialogBinding.getRoot();
+
+ Glide.with(context)
+ .asGif()
+ .load(gifResource)
+ .into(dialogBinding.gifImageView);
+
+ dialogBinding.messageTextView.setText(message);
+
+ AlertDialog alertDialog = new AlertDialog.Builder(context)
+ .setView(dialogView)
+ .create();
+
+ alertDialog.show();
+
+ // Automatically dismiss the dialog after t seconds
+ new Handler(Looper.getMainLooper()).postDelayed(() -> {
+ if (alertDialog.isShowing()) {
+ alertDialog.dismiss();
+ if (onDismissAction != null) {
+ onDismissAction.run();
+ }
+ }
+ }, DIALOG_DURATION);
+ }
+
+ private static String getRandomPositiveMessage() {
+ return POSITIVE_MESSAGES[new Random().nextInt(POSITIVE_MESSAGES.length)];
+ }
+
+ private static String getRandomNegativeMessage() {
+ return NEGATIVE_MESSAGES[new Random().nextInt(NEGATIVE_MESSAGES.length)];
+ }
+
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/SoundEffectUtility.java b/app/src/main/java/com/zendalona/mathmantra/utils/SoundEffectUtility.java
new file mode 100644
index 0000000..fadfe24
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/SoundEffectUtility.java
@@ -0,0 +1,62 @@
+package com.zendalona.mathmantra.utils;
+
+import android.content.Context;
+import android.media.AudioAttributes;
+import android.media.SoundPool;
+import android.util.Log;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class SoundEffectUtility {
+ private static SoundEffectUtility instance;
+ private SoundPool soundPool;
+ private Context context;
+ private Map soundMap; // Map to hold sound resource IDs and their corresponding SoundPool IDs
+
+ // Singleton pattern to ensure a single instance of SoundEffectUtility
+ public static synchronized SoundEffectUtility getInstance(Context context) {
+ if (instance == null) {
+ instance = new SoundEffectUtility(context.getApplicationContext());
+ }
+ return instance;
+ }
+
+ private SoundEffectUtility(Context context) {
+ this.context = context;
+ this.soundMap = new HashMap<>();
+
+ AudioAttributes audioAttributes = new AudioAttributes.Builder()
+ .setUsage(AudioAttributes.USAGE_MEDIA)
+ .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
+ .build();
+
+ soundPool = new SoundPool.Builder()
+ .setAudioAttributes(audioAttributes)
+ .setMaxStreams(1)
+ .build();
+ }
+
+ public void loadSound(int soundResId) {
+ int soundId = soundPool.load(context, soundResId, 1);
+ soundMap.put(soundResId, soundId); // Map the resource ID to the SoundPool ID
+ }
+
+ public void playSound(int soundResId) {
+ Integer soundId = soundMap.get(soundResId);
+ if (soundId != null) {
+ soundPool.play(soundId, 1.0f, 1.0f, 1, 0, 1.0f);
+ Log.d("Sound played",soundId.toString());
+ } else {
+ this.loadSound(soundResId);
+ this.playSound(soundResId);
+ }
+ }
+
+ public void release() {
+ if (soundPool != null) {
+ soundPool.release();
+ soundPool = null;
+ }
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/SpeechRecognitionUtility.java b/app/src/main/java/com/zendalona/mathmantra/utils/SpeechRecognitionUtility.java
new file mode 100644
index 0000000..8acc579
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/SpeechRecognitionUtility.java
@@ -0,0 +1,103 @@
+package com.zendalona.mathmantra.utils;
+
+import android.content.Context;
+import android.content.Intent;
+import android.os.Bundle;
+import android.speech.RecognitionListener;
+import android.speech.RecognizerIntent;
+import android.speech.SpeechRecognizer;
+import android.util.Log;
+import android.widget.TextView;
+
+import java.util.ArrayList;
+import java.util.Locale;
+
+public class SpeechRecognitionUtility {
+
+ private Context context;
+ private SpeechRecognizer speechRecognizer;
+ private SpeechRecognitionCallback callback;
+ private final String TAG = "SpeechRecognitionUtility";
+
+ public SpeechRecognitionUtility(Context context, SpeechRecognitionCallback callback) {
+ this.context = context;
+ this.callback = callback;
+ this.speechRecognizer = SpeechRecognizer.createSpeechRecognizer(context);
+ this.speechRecognizer.setRecognitionListener(new RecognitionListener() {
+ @Override
+ public void onReadyForSpeech(Bundle params) {
+ Log.d(TAG, "Ready for speech");
+ }
+
+ @Override
+ public void onBeginningOfSpeech() {
+ Log.d(TAG, "Beginning of speech");
+ }
+
+ @Override
+ public void onRmsChanged(float rmsdB) {
+ // handle changes in volume
+ }
+
+ @Override
+ public void onBufferReceived(byte[] buffer) {
+ // handle raw audio data
+ }
+
+ @Override
+ public void onEndOfSpeech() {
+ Log.d(TAG, "End of speech");
+ }
+
+ @Override
+ public void onError(int error) {
+ Log.e(TAG, "Error: " + error);
+ if (callback != null) callback.onError(error);
+ }
+
+ @Override
+ public void onResults(Bundle results) {
+ ArrayList matches = results.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
+ if (matches != null && !matches.isEmpty()) {
+ String spokenText = matches.get(0);
+ Log.d(TAG, "Heard: " + spokenText);
+ if (callback != null) callback.onResults(spokenText);
+ }
+ }
+
+ @Override
+ public void onPartialResults(Bundle partialResults) {
+ // TODO : check partial results
+ }
+
+ @Override
+ public void onEvent(int eventType, Bundle params) {
+
+ }
+ });
+ }
+
+ public void startListening() {
+ Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
+ intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
+ intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
+
+ speechRecognizer.startListening(intent);
+ }
+
+ public void stopListening() {
+ if (speechRecognizer != null) {
+ speechRecognizer.stopListening();
+ }
+ }
+
+ public void destroy() {
+ if (speechRecognizer != null) speechRecognizer.destroy();
+ }
+
+ public interface SpeechRecognitionCallback {
+ void onResults(String spokenText);
+ void onError(int error);
+ }
+
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/utils/TTSUtility.java b/app/src/main/java/com/zendalona/mathmantra/utils/TTSUtility.java
new file mode 100644
index 0000000..b5306b4
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/utils/TTSUtility.java
@@ -0,0 +1,44 @@
+package com.zendalona.mathmantra.utils;
+
+import android.content.Context;
+import android.speech.tts.TextToSpeech;
+import java.util.Locale;
+
+public class TTSUtility {
+ private TextToSpeech tts;
+ private boolean isInitialized = false;
+
+ public TTSUtility(Context context) {
+ tts = new TextToSpeech(context, status -> {
+ if (status == TextToSpeech.SUCCESS) {
+// int result = tts.setLanguage(Locale.US);
+ int result = tts.setLanguage(Locale.forLanguageTag("en-IN"));
+ isInitialized = result != TextToSpeech.LANG_MISSING_DATA
+ && result != TextToSpeech.LANG_NOT_SUPPORTED;
+ }
+ });
+ }
+
+ public void speak(String text) {
+ if (isInitialized) {
+ tts.speak(text, TextToSpeech.QUEUE_FLUSH, null, null);
+ }
+ }
+
+ public void setSpeechRate(float rate) {
+ tts.setSpeechRate(rate);
+ }
+
+ public void stop() {
+ if (tts != null) {
+ tts.stop();
+ }
+ }
+
+ public void shutdown() {
+ if (tts != null) {
+ tts.stop();
+ tts.shutdown();
+ }
+ }
+}
diff --git a/app/src/main/java/com/zendalona/mathmantra/viewModels/NumberLineViewModel.java b/app/src/main/java/com/zendalona/mathmantra/viewModels/NumberLineViewModel.java
new file mode 100644
index 0000000..721af9d
--- /dev/null
+++ b/app/src/main/java/com/zendalona/mathmantra/viewModels/NumberLineViewModel.java
@@ -0,0 +1,68 @@
+package com.zendalona.mathmantra.viewModels;
+
+import androidx.lifecycle.LiveData;
+import androidx.lifecycle.MutableLiveData;
+import androidx.lifecycle.ViewModel;
+
+public class NumberLineViewModel extends ViewModel {
+
+ private final MutableLiveData _lineStart = new MutableLiveData<>(-5);
+ private final MutableLiveData _lineEnd = new MutableLiveData<>(5);
+ private final MutableLiveData _currentPosition = new MutableLiveData<>(0);
+
+ public LiveData lineStart = _lineStart;
+ public LiveData lineEnd = _lineEnd;
+ public LiveData currentPosition = _currentPosition;
+
+ public void reset() {
+ _lineStart.setValue(-5);
+ _lineEnd.setValue(5);
+ _currentPosition.setValue(0);
+ }
+
+ public void moveRight() {
+ Integer currentPositionValue = _currentPosition.getValue();
+ Integer lineEndValue = _lineEnd.getValue();
+ if (currentPositionValue != null && lineEndValue != null) {
+ if (currentPositionValue < lineEndValue) {
+ _currentPosition.setValue(currentPositionValue + 1);
+ } else {
+ shiftRight();
+ }
+ }
+ }
+
+ public void moveLeft() {
+ Integer currentPositionValue = _currentPosition.getValue();
+ Integer lineStartValue = _lineStart.getValue();
+ if (currentPositionValue != null && lineStartValue != null) {
+ if (currentPositionValue > lineStartValue) {
+ _currentPosition.setValue(currentPositionValue - 1);
+ } else {
+ shiftLeft();
+ }
+ }
+ }
+
+ private void shiftRight() {
+ Integer lineEndValue = _lineEnd.getValue();
+ if (lineEndValue != null) {
+ int newStart = lineEndValue + 1;
+ int newEnd = newStart + 10;
+ _lineStart.setValue(newStart);
+ _lineEnd.setValue(newEnd);
+ _currentPosition.setValue(newStart);
+ }
+ }
+
+ private void shiftLeft() {
+ Integer lineStartValue = _lineStart.getValue();
+ if (lineStartValue != null) {
+ int newEnd = lineStartValue - 1;
+ int newStart = newEnd - 10;
+ _lineStart.setValue(newStart);
+ _lineEnd.setValue(newEnd);
+ _currentPosition.setValue(newEnd);
+ }
+ }
+}
diff --git a/app/src/main/res/drawable/bell.png b/app/src/main/res/drawable/bell.png
new file mode 100644
index 0000000..80b39b8
Binary files /dev/null and b/app/src/main/res/drawable/bell.png differ
diff --git a/app/src/main/res/drawable/books.png b/app/src/main/res/drawable/books.png
new file mode 100644
index 0000000..b3dca12
Binary files /dev/null and b/app/src/main/res/drawable/books.png differ
diff --git a/app/src/main/res/drawable/drum.png b/app/src/main/res/drawable/drum.png
new file mode 100644
index 0000000..e2f305a
Binary files /dev/null and b/app/src/main/res/drawable/drum.png differ
diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/mcq.png b/app/src/main/res/drawable/mcq.png
new file mode 100644
index 0000000..edee1f9
Binary files /dev/null and b/app/src/main/res/drawable/mcq.png differ
diff --git a/app/src/main/res/drawable/mic.png b/app/src/main/res/drawable/mic.png
new file mode 100644
index 0000000..b2bb356
Binary files /dev/null and b/app/src/main/res/drawable/mic.png differ
diff --git a/app/src/main/res/drawable/molepointingup.png b/app/src/main/res/drawable/molepointingup.png
new file mode 100644
index 0000000..34d0f52
Binary files /dev/null and b/app/src/main/res/drawable/molepointingup.png differ
diff --git a/app/src/main/res/drawable/molereading.png b/app/src/main/res/drawable/molereading.png
new file mode 100644
index 0000000..3bab0ed
Binary files /dev/null and b/app/src/main/res/drawable/molereading.png differ
diff --git a/app/src/main/res/drawable/numberline.png b/app/src/main/res/drawable/numberline.png
new file mode 100644
index 0000000..5d358bf
Binary files /dev/null and b/app/src/main/res/drawable/numberline.png differ
diff --git a/app/src/main/res/drawable/right.gif b/app/src/main/res/drawable/right.gif
new file mode 100644
index 0000000..606a18a
Binary files /dev/null and b/app/src/main/res/drawable/right.gif differ
diff --git a/app/src/main/res/drawable/test.png b/app/src/main/res/drawable/test.png
new file mode 100644
index 0000000..f134087
Binary files /dev/null and b/app/src/main/res/drawable/test.png differ
diff --git a/app/src/main/res/drawable/wrong.gif b/app/src/main/res/drawable/wrong.gif
new file mode 100644
index 0000000..cadbb0b
Binary files /dev/null and b/app/src/main/res/drawable/wrong.gif differ
diff --git a/app/src/main/res/font/ubuntu.xml b/app/src/main/res/font/ubuntu.xml
new file mode 100644
index 0000000..959cfb0
--- /dev/null
+++ b/app/src/main/res/font/ubuntu.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..1643f18
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_result.xml b/app/src/main/res/layout/dialog_result.xml
new file mode 100644
index 0000000..2f9da06
--- /dev/null
+++ b/app/src/main/res/layout/dialog_result.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/fragment_choose_lesson.xml b/app/src/main/res/layout/fragment_choose_lesson.xml
new file mode 100644
index 0000000..78befad
--- /dev/null
+++ b/app/src/main/res/layout/fragment_choose_lesson.xml
@@ -0,0 +1,185 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/fragment_count_numbers.xml b/app/src/main/res/layout/fragment_count_numbers.xml
new file mode 100644
index 0000000..89897a5
--- /dev/null
+++ b/app/src/main/res/layout/fragment_count_numbers.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml
new file mode 100644
index 0000000..8d44767
--- /dev/null
+++ b/app/src/main/res/layout/fragment_dashboard.xml
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_m_c_q.xml b/app/src/main/res/layout/fragment_m_c_q.xml
new file mode 100644
index 0000000..2a252c7
--- /dev/null
+++ b/app/src/main/res/layout/fragment_m_c_q.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_math_quiz.xml b/app/src/main/res/layout/fragment_math_quiz.xml
new file mode 100644
index 0000000..547e670
--- /dev/null
+++ b/app/src/main/res/layout/fragment_math_quiz.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_narrator.xml b/app/src/main/res/layout/fragment_narrator.xml
new file mode 100644
index 0000000..af671bc
--- /dev/null
+++ b/app/src/main/res/layout/fragment_narrator.xml
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_number_line.xml b/app/src/main/res/layout/fragment_number_line.xml
new file mode 100644
index 0000000..e6bcbc2
--- /dev/null
+++ b/app/src/main/res/layout/fragment_number_line.xml
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_ring_bell.xml b/app/src/main/res/layout/fragment_ring_bell.xml
new file mode 100644
index 0000000..cf2d5ac
--- /dev/null
+++ b/app/src/main/res/layout/fragment_ring_bell.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_tap_tabla.xml b/app/src/main/res/layout/fragment_tap_tabla.xml
new file mode 100644
index 0000000..e8920ed
--- /dev/null
+++ b/app/src/main/res/layout/fragment_tap_tabla.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/app/src/main/res/mipmap-anydpi/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/raw/bell_ring.wav b/app/src/main/res/raw/bell_ring.wav
new file mode 100644
index 0000000..043a616
Binary files /dev/null and b/app/src/main/res/raw/bell_ring.wav differ
diff --git a/app/src/main/res/raw/drums.json b/app/src/main/res/raw/drums.json
new file mode 100644
index 0000000..064269f
--- /dev/null
+++ b/app/src/main/res/raw/drums.json
@@ -0,0 +1 @@
+{"nm":"Comp 1","ddd":0,"h":1080,"w":1570,"meta":{"g":"@lottiefiles/toolkit-js 0.33.2"},"layers":[{"ty":4,"nm":"баÑабанÑ","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-7,272,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[732,833,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 7","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[7,6.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.3922,0.2706,0.1647],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-5,164.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 6","ix":2,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[7,7],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.3922,0.2706,0.1647],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-97.5,161.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 5","ix":3,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[7,7],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.3922,0.2706,0.1647],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-113.5,160],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 2","ix":4,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[420,420],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9137,0.9137,0.9137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":41},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":44},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":84},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":86},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":87},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100],"t":88},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":104},{"s":[100,100],"t":105}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[271,286],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":5,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[432,422],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9137,0.9137,0.9137],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":41},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":44},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":84},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":86},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":87},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100],"t":88},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[102,102],"t":104},{"s":[100,100],"t":105}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-305,281],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":6,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-469,479],[-407,421],[-203,429],[-154,482]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":4,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[108,487],[170,429],[391,429],[440,482]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 4","ix":7,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[312,13.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.6824,0.6353,0.5922],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,156],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,98],"t":41},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,156],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,98],"t":43},{"s":[100,156],"t":44}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-8,142.25],"t":40,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-8,145.25],"t":41,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-8,142.25],"t":42,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-8,145.25],"t":43,"ti":[0,0],"to":[0,0]},{"s":[-8,142.25],"t":44}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":8,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-159,34]],"o":[[0,0],[159,-34]],"v":[[-183,322],[204,313]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":9,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-144,31]],"o":[[0,0],[144,-31]],"v":[[-169,234],[187,228]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":10,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[118,0],[0,0],[-254.648,-31.438],[0,0]],"o":[[0,0],[-118,0],[0,0],[243,30],[0,0]],"v":[[164,130],[-17.5,145],[-183,130],[-196,425],[170,421]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,7],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":1},{"ty":4,"nm":"Shape Layer 43","sr":1,"st":0,"op":1200,"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":[91.56,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[785,552,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-199,55]],"o":[[0,0],[41.625,-11.504]],"v":[[88,321],[449,314]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":2,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[-255,53]],"o":[[0,0],[12.766,-2.653]],"v":[[65,211],[447,198]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":3,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[394,34],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.6824,0.6353,0.5922],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,69.697],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[249.5,131],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":4,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[-219,46],[0,0]],"o":[[0,0],[0,0],[1.384,-0.291],[0,0]],"v":[[54,134],[60,432],[450,449],[446,132]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":2},{"ty":4,"nm":"ÑÑка п 3","sr":1,"st":0,"op":145,"ip":133,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[218.168,-10.96,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1049,545,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1032.5,595,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1028.5,586,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1030,580.5,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,568.5,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":90,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":95,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1020.5,552,0],"t":100,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":112,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":117,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017,566.5,0],"t":122,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[1024.5,545.5,0],"t":135,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1024.5,545.5,0],"t":145,"ti":[0,0,0],"to":[0,0,0]},{"s":[1049,545,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":1,"y":0},"i":{"x":0.85,"y":1},"s":[-11],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-180],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":50},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-103],"t":75},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":80},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":82},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":84},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":90},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-103],"t":95},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":100},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":102},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":104},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-124],"t":117},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":122},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":124},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[-173],"t":130},{"o":{"x":1,"y":0},"i":{"x":0.667,"y":1},"s":[-58],"t":135},{"o":{"x":1,"y":0},"i":{"x":0.667,"y":1},"s":[-58],"t":145},{"s":[-11],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":30},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":40},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":90},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":130},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":135},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":145},{"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":150}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":80,"ix":5},"c":{"a":0,"k":[1,0.7373,0.451],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":3},{"ty":4,"nm":"Shape Layer 39","sr":1,"st":0,"op":145,"ip":133,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[137.75,-133.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[355.77,-94.007,0],"ix":2},"r":{"a":0,"k":51.781,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[26.5,69.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9059,0.651,0.3686],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0.5,32],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[138.25,-135.75],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":4,"parent":8},{"ty":4,"nm":"палоÑка п","sr":1,"st":0,"op":150,"ip":30,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[202,9,0],"ix":1},"s":{"a":0,"k":[96.441,168.389,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":[342.049,-84.7,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[342.049,-84.7,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.844},"s":[342.049,-84.7,0],"t":134,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[382.356,-138.102,0],"t":138,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.234},"i":{"x":0.667,"y":1},"s":[382.356,-138.102,0],"t":144,"ti":[0,0,0],"to":[0,0,0]},{"s":[342.049,-84.7,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[43.185],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":41},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":80},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":81},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":84},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":90},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":100},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":104},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":105},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":112},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":122},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":123},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[113.185],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[117.185],"t":127},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[117.185],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[117.185],"t":133},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[436.185],"t":144},{"s":[403.185],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":1,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[8.808,-13.999],[-13.279,-0.215],[0,0]],"o":[[0,0],[-7.137,11.344],[35.862,0.581],[0,0]],"v":[[206.272,-14.11],[150.702,-1.964],[190.983,27.723],[222.439,11.473]]}],"t":133},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[2.159,-3.16],[-5.612,1.848],[0,0]],"o":[[0,0],[-7.56,11.067],[34.067,-11.219],[0,0]],"v":[[207.34,-5.313],[198.723,-5.982],[202.61,2.424],[210.981,-7.224]]}],"t":135},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[2.159,-3.16],[-5.612,1.848],[0,0]],"o":[[0,0],[-7.56,11.067],[34.067,-11.219],[0,0]],"v":[[207.34,-5.313],[198.723,-5.982],[202.61,2.424],[210.981,-7.224]]}],"t":145},{"s":[{"c":false,"i":[[0,0],[8.808,-13.999],[-13.279,-0.215],[0,0]],"o":[[0,0],[-7.137,11.344],[35.862,0.581],[0,0]],"v":[[206.272,-14.11],[150.702,-1.964],[190.983,27.723],[222.439,11.473]]}],"t":149}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0,0],"t":30,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[4.651,12.986],"t":40,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[8.256,14.902],"t":43,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[8.256,14.902],"t":133,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[8.256,14.902],"t":144,"ti":[0,0],"to":[0,0]},{"s":[0,0],"t":150}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":133},{"s":[0],"t":135}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":2,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[4.5,4.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[142.887,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[112.5,-92.75],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-100.59,-79.314],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-120.425,-67.017],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":41},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-70.447,-84.957],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":44},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-12.659,-71.524],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-100.59,-79.314],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":77},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-120.425,-67.017],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":81},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":84},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":90},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-12.659,-71.524],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":95},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-100.59,-79.314],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":97},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":104},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":105},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-29.594,-71.054],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":117},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-100.59,-79.314],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":119},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":123},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-85.232,-83.463],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":127},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-74.826,-84.839],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-29.594,-71.054],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":133},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-56.582,-65.442],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":134},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-56.582,-65.442],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":144},{"s":[{"c":false,"i":[[0,0],[-0.049,0.176],[0,0]],"o":[[0,0],[-100.59,-79.314],[0,0]],"v":[[220,31.5],[219.725,31.375],[114,-91]]}],"t":150}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":5,"parent":8},{"ty":4,"nm":"Shape Layer 40","sr":1,"st":0,"op":145,"ip":133,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[137.75,-133.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[344.375,-110.417,0],"ix":2},"r":{"a":0,"k":32.781,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[26.5,69.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9059,0.651,0.3686],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0.5,32],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[138.25,-135.75],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":6,"parent":8},{"ty":4,"nm":"Shape Layer 42","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-125,133.375,0],"ix":1},"s":{"a":0,"k":[154.189,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[647.263,673.375,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[206,16],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.6824,0.6353,0.5922],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":81},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":83},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":84},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":121},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":122},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":123},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,85],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":125},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":126},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":127},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":128},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":130},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":131},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":132},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":140},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":141},{"s":[100,100],"t":142}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":81,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":82,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":83,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":84,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-124,98],"t":85,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":101,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":102,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-124,98],"t":103,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":120,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":121,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":122,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":123,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":124,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":125,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":126,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":127,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-124,98],"t":128,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":130,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":131,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-124,98],"t":132,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,98],"t":140,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124,106.5],"t":141,"ti":[0,0],"to":[0,0]},{"s":[-124,98],"t":142}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":2,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-21.25,98.25],[-225.5,98.5],[-229.75,176.75],[-20.25,167.5]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.3922,0.2706,0.1647],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[-127.765,135],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":81},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":83},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":84},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":121},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":122},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":123},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,85],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":125},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":126},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":127},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":128},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":130},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":131},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":132},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100],"t":140},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,75],"t":141},{"s":[100,100],"t":142}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-128,136],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":7},{"ty":4,"nm":"ÑÑка п 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[218.168,-10.96,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1049,545,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1032.5,595,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1028.5,586,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1030,580.5,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,568.5,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":90,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":95,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1020.5,552,0],"t":100,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":112,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017.5,553.5,0],"t":117,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1017,566.5,0],"t":122,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1015.5,558,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[1024.5,545.5,0],"t":135,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1024.5,545.5,0],"t":145,"ti":[0,0,0],"to":[0,0,0]},{"s":[1049,545,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":1,"y":0},"i":{"x":0.85,"y":1},"s":[-11],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-180],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":50},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-103],"t":75},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":80},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":82},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":84},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":90},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-103],"t":95},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-180],"t":100},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":102},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-178],"t":104},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-173],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-124],"t":117},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-178],"t":122},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-170],"t":124},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-178],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[-173],"t":130},{"o":{"x":1,"y":0},"i":{"x":0.667,"y":1},"s":[-58],"t":135},{"o":{"x":1,"y":0},"i":{"x":0.667,"y":1},"s":[-58],"t":145},{"s":[-11],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":30},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":40},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":90},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[270.373,-62.363],[217,-11]]}],"t":130},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":135},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":145},{"s":[{"c":false,"i":[[0,0],[26.049,-18.928],[0,0]],"o":[[0,0],[-24.245,17.617],[0,0]],"v":[[335.342,-102.789],[283.189,-49.684],[217,-11]]}],"t":150}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":80,"ix":5},"c":{"a":0,"k":[1,0.7373,0.451],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":8},{"ty":4,"nm":"палоÑка л","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-217.835,61.757,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[422.75,406,0],"t":35,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[422.75,406,0],"t":45,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[422.75,406,0],"t":55,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[422.75,406,0],"t":65,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[422.75,406,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[553.75,429,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.463},"s":[497.25,382,0],"t":85,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.448},"i":{"x":0.667,"y":1},"s":[501.622,392.912,0],"t":89,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[508.25,413,0],"t":95,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.508},"s":[503.25,407,0],"t":98,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.423},"i":{"x":0.667,"y":1},"s":[458.017,432.747,0],"t":99,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.604},"s":[357.75,500.5,0],"t":101,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.668},"i":{"x":0.667,"y":1},"s":[448.001,437.749,0],"t":102,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[508.25,413,0],"t":103,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[505.25,406,0],"t":110,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.386,"y":0},"i":{"x":0.716,"y":0.411},"s":[512.75,389,0],"t":114,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.371,"y":0.251},"i":{"x":0.703,"y":0.62},"s":[527.683,388.694,0],"t":116,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.39,"y":0.218},"i":{"x":0.719,"y":0.662},"s":[550.514,386.824,0],"t":117,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.44,"y":0.308},"i":{"x":0.759,"y":0.691},"s":[597.867,409.387,0],"t":118,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.595,"y":0.588},"i":{"x":0.715,"y":1},"s":[629.959,493.513,0],"t":119,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.323,"y":0},"i":{"x":0.675,"y":0.535},"s":[606.75,608,0],"t":120,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.357,"y":0.443},"i":{"x":0.697,"y":1},"s":[620,508.785,0],"t":122,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.715,"y":1},"s":[619.75,451,0],"t":123,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.715,"y":1},"s":[606.75,608,0],"t":126,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.715,"y":1},"s":[619.75,451,0],"t":129,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.715,"y":1},"s":[606.75,608,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.715,"y":1},"s":[630.75,507,0],"t":137,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.796},"s":[610.75,587,0],"t":140,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.186},"i":{"x":0.667,"y":0.78},"s":[619.822,535.068,0],"t":142,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.2},"i":{"x":0.667,"y":0.782},"s":[628.455,507.531,0],"t":143,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.257},"i":{"x":0.667,"y":0.754},"s":[618.161,477.53,0],"t":144,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.295},"i":{"x":0.667,"y":0.766},"s":[612.393,451.274,0],"t":145,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0.401},"i":{"x":0.667,"y":1},"s":[589.403,412.863,0],"t":147,"ti":[0,0,0],"to":[0,0,0]},{"s":[553.75,429,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-117],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-123],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-123],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-123],"t":65},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-123],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[-11],"t":80},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-18],"t":85},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-18],"t":98},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-98],"t":101},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-18],"t":103},{"o":{"x":0.167,"y":0},"i":{"x":0.583,"y":0.167},"s":[-18],"t":114},{"o":{"x":0.417,"y":0.357},"i":{"x":0.833,"y":1},"s":[6],"t":117},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[62],"t":120},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[36],"t":123},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[62],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[36],"t":129},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[62],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[36],"t":137},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[62],"t":140},{"s":[-11],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 2","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[37.972,40.489],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,100],"t":95},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80,80],"t":96},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80,80],"t":114},{"s":[100,100],"t":115}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-197.761,38.408],"t":30,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":36,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-199.879,43.484],"t":41,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-198.492,53.956],"t":47,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-199.879,43.484],"t":51,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-198.058,50.377],"t":52,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-198.971,52.385],"t":53,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-195.542,51.108],"t":57,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-199.879,43.484],"t":61,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":67,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-197.761,38.408],"t":71,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-196.646,49.739],"t":73,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":77,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-198.496,46.935],"t":81,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-199.365,51.44],"t":82,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-200.255,53.168],"t":83,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":87,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":95,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-206.158,53.02],"t":96,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-201.89,52.829],"t":100,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-202.512,59.053],"t":101,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-197.742,54.695],"t":102,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-203.716,48.811],"t":107,"ti":[0,0],"to":[0,0]},{"s":[-208.7,53.957],"t":115}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":2,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[9.115,8.139],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[119.215,130.411],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.025},"s":[-59.22,-51.936],"t":80,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.343},"i":{"x":0.667,"y":0.575},"s":[-71.358,-58.549],"t":82,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.44},"i":{"x":0.667,"y":0.624},"s":[-88.709,-67.809],"t":83,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.397},"i":{"x":0.667,"y":1},"s":[-103.436,-79.789],"t":84,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.484,-89.592],"t":85,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-128.654,-96.314],"t":86,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-128.654,-96.314],"t":98,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-94.675,-74.991],"t":99,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-59.217,-51.429],"t":100,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-60.455,-51.602],"t":101,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-63.091,-53.935],"t":102,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-75.259,-63.409],"t":103,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-95.042,-76.145],"t":104,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-114.194,-89.202],"t":105,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-127.937,-97.874],"t":106,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.89,"y":0},"s":[-130.803,-98.829],"t":117,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.162},"i":{"x":0.667,"y":1},"s":[-130.504,-96.913],"t":119,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":0.813},"s":[-118.9,-82.874],"t":120,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.253},"i":{"x":0.667,"y":0.462},"s":[-116.053,-80.391],"t":122,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0.072},"i":{"x":0.667,"y":1},"s":[-117.073,-81.342],"t":123,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124.442,-88.643],"t":124,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-130.442,-96.988],"t":125,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.953,-82.385],"t":126,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.547,-82.092],"t":127,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-116.96,-81.883],"t":128,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-116.96,-81.883],"t":129,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-130.394,-99.219],"t":130,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-129.177,-97.343],"t":131,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-127.41,-94.616],"t":132,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-124.291,-92.111],"t":133,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-122.972,-89.499],"t":134,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-120.658,-85.856],"t":135,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.832,-83.156],"t":136,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-115.708,-81.408],"t":137,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-121.063,-87.704],"t":138,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-126.872,-93.752],"t":139,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-131.23,-98.334],"t":140,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-114.845,-80.367],"t":141,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-114.845,-80.367],"t":142,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-115.633,-81.337],"t":143,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-115.633,-81.337],"t":144,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-115.633,-81.337],"t":145,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-115.633,-81.337],"t":146,"ti":[0,0],"to":[0,0]},{"s":[-115.633,-81.337],"t":147}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":3,"it":[{"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},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":31},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":36},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":41},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":46},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":51},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":56},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":61},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":66},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":71},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":76},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":81},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-130.514,-93.631]]}],"t":86},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-130.514,-93.631]]}],"t":98},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-64.723,-50.174]]}],"t":100},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-3.037,0.839],[0,0]],"o":[[0,0],[91.591,-25.288],[0,0]],"v":[[-222.663,59.561],[-212.498,58.712],[-64.723,-50.174]]}],"t":102},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-130.514,-93.631]]}],"t":106},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-130.514,-93.631]]}],"t":112},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.484,2.78],[0,0]],"o":[[0,0],[39.404,-73.83],[0,0]],"v":[[-216.468,68.329],[-212.498,58.712],[-130.514,-93.631]]}],"t":116},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.619,1.752],[0,0]],"o":[[0,0],[84.418,-56.487],[0,0]],"v":[[-218.234,63.487],[-212.498,58.712],[-130.514,-93.631]]}],"t":117},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-130.514,-93.631]]}],"t":119},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-119.73,-77.704]]}],"t":120},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.902,2.512],[0,0]],"o":[[0,0],[55.213,-72.945],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-119.73,-77.704]]}],"t":121},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.314,3.135],[0,0]],"o":[[0,0],[7.739,-77.166],[0,0]],"v":[[-212.629,68.333],[-212.498,58.712],[-119.73,-77.704]]}],"t":122},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.366,2.84],[0,0]],"o":[[0,0],[40.041,-83.237],[0,0]],"v":[[-215.429,66.863],[-212.498,58.712],[-119.73,-77.704]]}],"t":123},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-130.514,-93.631]]}],"t":125},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-119.73,-77.704]]}],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-0.507,3.11],[0,0]],"o":[[0,0],[11.811,-72.453],[0,0]],"v":[[-215.429,66.863],[-212.498,58.712],[-119.73,-77.704]]}],"t":129},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-130.514,-93.631]]}],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-1.366,2.84],[0,0]],"o":[[0,0],[40.041,-83.237],[0,0]],"v":[[-215.429,66.863],[-212.498,58.712],[-119.73,-77.704]]}],"t":137},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[{"c":false,"i":[[0,0],[-2.206,2.25],[0,0]],"o":[[0,0],[65.263,-66.54],[0,0]],"v":[[-218.575,65.031],[-212.498,58.712],[-130.514,-93.631]]}],"t":140},{"s":[{"c":false,"i":[[0,0],[-1.366,2.84],[0,0]],"o":[[0,0],[40.041,-83.237],[0,0]],"v":[[-215.429,66.863],[-212.498,58.712],[-119.73,-77.704]]}],"t":141}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":9},{"ty":4,"nm":"ÑÑка л 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-375,-70,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[514,583.001,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[490,568.001,0],"t":35,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[513,595.001,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[493,572.001,0],"t":45,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[523,587.001,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[486,563.001,0],"t":55,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[509,592.001,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[485,564.001,0],"t":65,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[511,583.001,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[487,563.001,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[521,597.001,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[488,567.001,0],"t":85,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[529,600.001,0],"t":95,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[511,582.001,0],"t":110,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[453,525.001,0],"t":120,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[454,510.001,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[447,521.001,0],"t":140,"ti":[0,0,0],"to":[0,0,0]},{"s":[514,583.001,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":1,"y":0},"i":{"x":0,"y":1},"s":[-98],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":35},{"o":{"x":1,"y":0},"i":{"x":0,"y":1},"s":[-98],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":45},{"o":{"x":1,"y":0},"i":{"x":0.28,"y":1},"s":[-98],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":55},{"o":{"x":1,"y":0},"i":{"x":0.252,"y":1},"s":[-98],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":65},{"o":{"x":1,"y":0},"i":{"x":0.305,"y":1},"s":[-98],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":75},{"o":{"x":1,"y":0},"i":{"x":0.318,"y":1},"s":[-98],"t":80},{"o":{"x":0.333,"y":0},"i":{"x":0.318,"y":1},"s":[-106],"t":85},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":98},{"o":{"x":0.333,"y":0},"i":{"x":0.318,"y":1},"s":[-138],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-106],"t":103},{"o":{"x":1,"y":0},"i":{"x":0.894,"y":1},"s":[-106],"t":110},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[14],"t":120},{"o":{"x":0.167,"y":0},"i":{"x":0.894,"y":1},"s":[-36],"t":123},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[14],"t":126},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-36],"t":129},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[11],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-17],"t":137},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[7],"t":140},{"s":[-98],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":65},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":80},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-32.799,-12.53],[0,0]],"o":[[0,0],[38.689,14.78],[0,0]],"v":[[-378,-70],[-287.387,-51.169],[-206,-4]]}],"t":98},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-34.798,-4.678],[0,0]],"o":[[0,0],[52.499,7.057],[0,0]],"v":[[-378,-70],[-289.732,-57.988],[-194.076,-69.106]]}],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-32.799,-12.53],[0,0]],"o":[[0,0],[38.689,14.78],[0,0]],"v":[[-378,-70],[-291.655,-38.849],[-216.072,6.796]]}],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-32.799,-12.53],[0,0]],"o":[[0,0],[38.689,14.78],[0,0]],"v":[[-378,-70],[-291.655,-38.849],[-216.072,6.796]]}],"t":110},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-32.799,-12.53],[0,0]],"o":[[0,0],[38.689,14.781],[0,0]],"v":[[-378,-70],[-307.941,-8.538],[-217.548,11.018]]}],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[-32.799,-12.53],[0,0]],"o":[[0,0],[38.689,14.781],[0,0]],"v":[[-378,-70],[-307.941,-8.538],[-217.548,11.018]]}],"t":140},{"s":[{"c":false,"i":[[0,0],[-30.356,-17.644],[0,0]],"o":[[0,0],[37.288,21.674],[0,0]],"v":[[-378,-70],[-290.639,-42.718],[-221.453,31.231]]}],"t":150}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":80,"ix":5},"c":{"a":0,"k":[1,0.7373,0.451],"ix":3}},{"ty":"tr","a":{"a":0,"k":[-379,-70],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-379,-70],"ix":2},"r":{"a":0,"k":-6.711,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":10},{"ty":4,"nm":"ÑаÑелка на ÑÑойке 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[381.625,-51.069,0],"ix":1},"s":{"a":0,"k":[100,163.36,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":35,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":38,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[230.625,349.931,0],"t":42,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":45,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":48,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[230.625,349.931,0],"t":52,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":55,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":58,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[230.625,349.931,0],"t":62,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":65,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":68,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[230.625,349.931,0],"t":72,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":78,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[230.625,349.931,0],"t":82,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,349.931,0],"t":101,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[230.625,363.931,0],"t":104,"ti":[0,0,0],"to":[0,0,0]},{"s":[230.625,349.931,0],"t":108}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":36},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":37},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":38},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":39},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":46},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":47},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":48},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":49},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":56},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":57},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":58},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":59},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":65},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":66},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":67},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":68},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":69},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":76},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":77},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":78},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":79},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[9],"t":102},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":103},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6],"t":104},{"s":[0],"t":105}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[40.75,-12.75],[-16.5,0.093],[0,0],[42.25,-0.5],[0,0]],"o":[[0,0],[0,0],[0,0.126],[16.5,-0.093],[0,0],[-0.25,-0.25],[0,0]],"v":[[377.5,-59.625],[375,-53],[303.25,-42.5],[382.25,-45.907],[460,-42.5],[387.5,-53.5],[384.25,-59.75]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.8902,0.8902,0.5294],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9098,0.9098,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":11},{"ty":4,"nm":"ÑÑойка 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[449.03,218.71,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[161.03,661.71,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 2","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[11.75,11.25],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[450.625,499.625],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":2,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[15.5,17],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,91.176],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[447.75,-12.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 2","ix":3,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[8,20.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,-108.5],"ix":1},"s":{"a":0,"k":[117.143,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":35,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":38,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517.375,-47.875],"t":42,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":45,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":48,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517.375,-47.875],"t":52,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":55,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":58,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517.375,-47.875],"t":62,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":65,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":68,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517.375,-47.875],"t":72,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":75,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":78,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517.375,-47.875],"t":82,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-47.875],"t":101,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517.375,-17.875],"t":104,"ti":[0,0],"to":[0,0]},{"s":[517.375,-47.875],"t":108}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":4,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,-3]],"o":[[0,0],[0,3]],"v":[[383,-92],[383,38]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[382.502,-52.656],"ix":1},"s":{"a":0,"k":[135.163,115.847],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":35,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":38,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517,-48],"t":42,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":45,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":48,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517,-48],"t":52,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":55,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":58,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517,-48],"t":62,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":65,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":68,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517,-48],"t":72,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":75,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":78,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[517,-48],"t":82,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-48],"t":101,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[517,-23],"t":104,"ti":[0,0],"to":[0,0]},{"s":[517,-48],"t":108}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":5,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[19,7.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[-70.388,2.074],"ix":1},"s":{"a":0,"k":[100,-128.047],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[448,-14],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":38},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":48},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":52},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":58},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":62},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":65},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":68},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":72},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":78},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.82],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[165.82],"t":104},{"s":[150.82],"t":108}],"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":6,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[504,16],[383,-46]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[435.766,-19.151],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[447.5,-13.5],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":38},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":48},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":52},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":58},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":62},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":65},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":68},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":72},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":75},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":78},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":82},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-53.529],"t":101},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-38.529],"t":104},{"s":[-53.529],"t":108}],"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":7,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[518.5,442.5],[450,410],[376,440.5]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,88.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":8,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[448,-12],[451,411]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,121.516],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":12},{"ty":4,"nm":"ÑаÑелка на ÑÑойке","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[381.625,-51.069,0],"ix":1},"s":{"a":0,"k":[100,180.633,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1248.625,334.931,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[1248.625,312.931,0],"t":36,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1248.625,312.931,0],"t":148,"ti":[0,0,0],"to":[0,0,0]},{"s":[1248.625,334.931,0],"t":149}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.323,"y":0},"i":{"x":0.656,"y":0.999},"s":[8],"t":30},{"o":{"x":0.324,"y":-0.002},"i":{"x":0.658,"y":1.001},"s":[-5.006],"t":32},{"o":{"x":0.184,"y":-0.079},"i":{"x":0.672,"y":1},"s":[0],"t":34},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":148},{"s":[-9],"t":149}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[40.75,-12.75],[-16.5,0.093],[0,0],[42.25,-0.5],[0,0]],"o":[[0,0],[0,0],[0,0.126],[16.5,-0.093],[0,0],[-0.25,-0.25],[0,0]],"v":[[377.5,-59.625],[375,-53],[303.25,-42.5],[382.25,-45.907],[460,-42.5],[387.5,-53.5],[384.25,-59.75]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.8902,0.8902,0.5294],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9098,0.9098,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":13},{"ty":4,"nm":"ÑÑойка 1","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[447.25,175.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[1316.25,585.25,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 2","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[11.75,11.25],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[451.125,512.625],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":2,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[15.5,17],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,91.176],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[447.75,-12.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 2","ix":3,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[8,20.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[117.143,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[380.375,65.125],"t":30,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[380.375,34.125],"t":36,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[380.375,34.125],"t":148,"ti":[0,0],"to":[0,0]},{"s":[380.375,65.125],"t":149}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":4,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,-3]],"o":[[0,0],[0,3]],"v":[[383,-92],[383,38]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-2.5,24],"t":30,"ti":[0,0],"to":[0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-2.5,0],"t":36,"ti":[0,0],"to":[0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-2.5,0],"t":148,"ti":[0,0],"to":[0,0]},{"s":[-2.5,24],"t":149}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":5,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[19,7.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.4588,0.4588,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[-59.028,0.767],"ix":1},"s":{"a":0,"k":[100,-128.047],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[447.25,-13],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[5.263],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[26.263],"t":36},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[26.263],"t":148},{"s":[5.263],"t":149}],"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":6,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[504,16],[383,-46]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[447.75,-12.75],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[447.75,-12.75],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-21],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":36},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":148},{"s":[-21],"t":149}],"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":7,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[518.5,442.5],[450,410],[376,440.5]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,125.238],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":8,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[448,-12],[451,411]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,125.243],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":14},{"ty":0,"nm":"Ñел","sr":1,"st":80,"op":151,"ip":110,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[785,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[785,540,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1570,"h":1080,"refId":"comp_0","ind":15},{"ty":0,"nm":"Ñел","sr":1,"st":40,"op":110,"ip":70,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[785,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[785,540,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1570,"h":1080,"refId":"comp_0","ind":16},{"ty":0,"nm":"Ñел","sr":1,"st":0,"op":70,"ip":30,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[785,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[785,540,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1570,"h":1080,"refId":"comp_0","ind":17},{"ty":4,"nm":"ÑÑка п 1","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[81,-107,0],"ix":1},"s":{"a":0,"k":[133.015,119.19,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[969,409.5,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[979,453.5,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[970,425.5,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[979,433.5,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[969,409.5,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[961,413.5,0],"t":75,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[958,430.5,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[963,409.5,0],"t":90,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[962,408.5,0],"t":95,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[954,415.5,0],"t":100,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[969,409.5,0],"t":110,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[961,413.5,0],"t":115,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[958,430.5,0],"t":120,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[963,409.5,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[962,408.5,0],"t":135,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[954,415.5,0],"t":140,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[954,415.5,0],"t":145,"ti":[0,0,0],"to":[0,0,0]},{"s":[969,409.5,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-1],"t":30},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[8],"t":40},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[8],"t":70},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[3],"t":75},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[8],"t":90},{"o":{"x":0.203,"y":0},"i":{"x":0.569,"y":1.443},"s":[3],"t":95},{"o":{"x":0.317,"y":0.199},"i":{"x":0.703,"y":1},"s":[0.796],"t":100},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[8],"t":110},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[3],"t":115},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[8],"t":130},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[3],"t":135},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[3],"t":145},{"s":[-1],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[102.332,-49.133],[134.875,-66.522]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":2,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[8.879,20.904],[0,0],[-8.078,2.982],[-10.203,0.65],[-5.53,0.55],[-8.508,1.017],[-1.451,-4.534],[0,0],[-7.616,0.559],[-1.583,-4.766],[0,0]],"o":[[-7.903,-18.606],[0,0],[0.186,-0.029],[-0.093,0.015],[-0.372,0.058],[0.049,0.041],[1.451,4.534],[0,0],[0.053,0.045],[1.691,5.091],[0,0]],"v":[[100.666,-53.319],[103.68,-71.584],[110.127,-58.828],[113.283,-75.208],[118.227,-62.322],[120.932,-78.526],[121.568,-70.255],[125.345,-66.086],[128.342,-81.698],[129.466,-73.665],[133.942,-70.336]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"c":{"a":0,"k":[0.0588,0.0588,0.0588],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81,-105],[133,6]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":68,"ix":5},"c":{"a":0,"k":[1,0.7373,0.451],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":18},{"ty":4,"nm":"ÑÑка л 1","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-158,-128,0],"ix":1},"s":{"a":0,"k":[88.604,103.214,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,415,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,431,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,415,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[639,428,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[642,417,0],"t":70,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,431,0],"t":80,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,415,0],"t":90,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[639,428,0],"t":100,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[642,417,0],"t":110,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,431,0],"t":120,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[644,415,0],"t":130,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[639,428,0],"t":140,"ti":[0,0,0],"to":[0,0,0]},{"s":[642,417,0],"t":150}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.278,"y":0},"i":{"x":0.615,"y":1},"s":[-44],"t":30},{"o":{"x":0.22,"y":0},"i":{"x":0.833,"y":1},"s":[-35],"t":35},{"o":{"x":0.278,"y":0},"i":{"x":0.615,"y":1},"s":[-44],"t":40},{"o":{"x":0.301,"y":0},"i":{"x":0.636,"y":0.986},"s":[-36],"t":45},{"o":{"x":0.259,"y":-0.009},"i":{"x":0.615,"y":1},"s":[-47.246],"t":50},{"o":{"x":0.22,"y":0},"i":{"x":0.833,"y":1},"s":[-35],"t":55},{"o":{"x":0.278,"y":0},"i":{"x":0.615,"y":1},"s":[-44],"t":60},{"o":{"x":0.22,"y":0},"i":{"x":0.833,"y":1},"s":[-35],"t":65},{"o":{"x":0.278,"y":0},"i":{"x":0.615,"y":1},"s":[-44],"t":70},{"o":{"x":0.301,"y":0},"i":{"x":0.636,"y":0.986},"s":[-36],"t":75},{"o":{"x":0.259,"y":-0.009},"i":{"x":0.615,"y":1},"s":[-47.246],"t":80},{"o":{"x":0.242,"y":0},"i":{"x":0.604,"y":0.876},"s":[-35],"t":85},{"o":{"x":0.337,"y":-0.372},"i":{"x":0.711,"y":1},"s":[-50.678],"t":95},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-44],"t":110},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-17],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-17],"t":140},{"s":[-44],"t":150}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-158,-126],[-398,-94]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":2,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":88,"ix":5},"c":{"a":0,"k":[1,0.7373,0.451],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":19}],"v":"5.6.1","fr":60,"op":149,"ip":30,"assets":[{"nm":"","id":"comp_0","layers":[{"ty":4,"nm":"Shape Layer 41","sr":1,"st":0,"op":1200,"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":0,"k":[764.157,563.867,0],"ix":2},"r":{"a":0,"k":-3,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":1,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.5,-309]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.333,-367.035]]}],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[144.315,-382.614]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.261,-323.091]]}],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.5,-309]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.333,-367.035]]}],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[144.315,-382.614]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.261,-323.091]]}],"t":65},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-300.5],[143.5,-309]]}],"t":70}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":2,"cix":2,"np":3,"it":[{"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.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-84.5,-320.5]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-77.823,-379.991]]}],"t":35},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-76.62,-394.359]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-83.288,-336.416]]}],"t":45},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-84.5,-320.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-77.823,-379.991]]}],"t":55},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-76.62,-394.359]]}],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":1},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-83.288,-336.416]]}],"t":65},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.5,-308],[-84.5,-320.5]]}],"t":70}],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.5216,0.3529,0.2078],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":1,"parent":2},{"ty":0,"nm":"оÑки и глаза","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[785,276,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2,-58,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2,-28,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2,-58,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2,-26,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[2,-58,0],"t":70}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":1570,"h":1080,"refId":"comp_1","ind":2,"parent":11},{"ty":4,"nm":"глаз п","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-35.75,-177.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[31.25,-77.25,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[31.25,-47.25,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[31.25,-77.25,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[31.25,-45.25,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[31.25,-77.25,0],"t":70}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[30.5,26.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,1,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-35.75,-177.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":3,"parent":11},{"ty":4,"nm":"глаз л","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-35.75,-177.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.75,-77.25,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.75,-47.25,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.75,-77.25,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-43.75,-45.25,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[-43.75,-77.25,0],"t":70}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[30.5,26.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,1,1],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-35.75,-177.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":4,"parent":11},{"ty":4,"nm":"ÑÑ 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[63.5,-129.5,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,95.4,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,95.4,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,122.4,100],"t":50},{"s":[99.831,95.4,100],"t":60}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-14,-21.524,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-14,30.476,0],"t":43,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-14,-21.524,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-14,30.476,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[-14,-21.524,0],"t":70}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[15],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[15],"t":53},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[15],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-11],"t":63},{"s":[-11],"t":70}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":112,"ix":4},"s":{"a":0,"k":[72,19],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[36,-129.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":5,"parent":11},{"ty":4,"nm":"ÑÑ 1","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[10,-129.5,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,95.4,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,95.4,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[99.831,122.4,100],"t":50},{"s":[99.831,95.4,100],"t":60}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.5,-21.524,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.5,30.476,0],"t":43,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.5,-21.524,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.5,30.476,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[6.5,-21.524,0],"t":70}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[11],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-15],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[11],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[11],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-15],"t":53},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-15],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[11],"t":63},{"s":[11],"t":70}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":112,"ix":4},"s":{"a":0,"k":[72,19],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[36,-129.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":6,"parent":11},{"ty":4,"nm":"ÑÑ
о п","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-120,-162.25,0],"ix":1},"s":{"a":0,"k":[173.81,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[105.5,-62.25,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[105.5,-106.25,0],"t":33,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[105.5,-106.25,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[105.5,-62.25,0],"t":43,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[105.5,-62.25,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[105.5,-106.25,0],"t":53,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[105.5,-106.25,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[105.5,-62.25,0],"t":63,"ti":[0,0,0],"to":[0,0,0]},{"s":[105.5,-62.25,0],"t":70}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[21,42.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-120,-162.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":7,"parent":11},{"ty":4,"nm":"ÑÑ
о л","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-120,-162.25,0],"ix":1},"s":{"a":0,"k":[171.429,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.5,-62.25,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-118.5,-106.25,0],"t":33,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.5,-106.25,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-118.5,-62.25,0],"t":43,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.5,-62.25,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-118.5,-106.25,0],"t":53,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-118.5,-106.25,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-118.5,-62.25,0],"t":63,"ti":[0,0,0],"to":[0,0,0]},{"s":[-118.5,-62.25,0],"t":70}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[21,42.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-120,-162.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":8,"parent":11},{"ty":4,"nm":"пÑиÑа","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[4.5,-233,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,66,100],"t":33},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,66,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,66,100],"t":60},{"s":[100,100,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-6,-134.083,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":112,"ix":4},"s":{"a":0,"k":[73,101],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[4.5,-283.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":9,"parent":11},{"ty":4,"nm":"ноÑ","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[23.979,-259.817,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,183,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":42},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,200,100],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":62},{"s":[100,100,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-4.077,-31.673,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-4.077,26.327,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-4.077,-31.673,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-4.077,26.327,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[-4.077,-31.673,0],"t":70}],"ix":2},"r":{"a":0,"k":-1,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[16.5,1.25],[-30.75,-2.25]],"o":[[-16.5,-1.25],[30.75,2.25]],"v":[[25.25,-279.5],[23,-259.75]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9059,0.651,0.3686],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.9216,0.5922,0.2353],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":10,"parent":11},{"ty":4,"nm":"голова","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-6,88,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,103,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,103,100],"t":60},{"s":[100,100,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.059,"y":0},"i":{"x":0,"y":1},"s":[805.25,399,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.899,"y":0},"i":{"x":0.258,"y":1},"s":[774,541.125,0],"t":40,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0,"y":0},"i":{"x":0.075,"y":1},"s":[755.5,401.5,0],"t":50,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.968,"y":0},"i":{"x":0.327,"y":1},"s":[794.5,541.625,0],"t":60,"ti":[0,0,0],"to":[0,0,0]},{"s":[805.25,399,0],"t":70}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[3],"t":30},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[-3],"t":40},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[-3],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[3],"t":60},{"s":[3],"t":70}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":86,"ix":4},"s":{"a":0,"k":[224,284],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-6,-54],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":11},{"ty":4,"nm":"пÑиÑеÑка 2","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[9.344,-119.249,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,138.397,100],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,167.397,100],"t":34},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,167.397,100],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,138.397,100],"t":43},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,138.397,100],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,167.397,100],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,167.397,100],"t":60},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100,138.397,100],"t":62},{"s":[100,138.397,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-4.656,-0.93,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":112,"ix":4},"s":{"a":0,"k":[294,73],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[8,-156.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":12,"parent":11},{"ty":4,"nm":"пÑиÑеÑка 1","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-2.361,-168.149,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,160.177,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[89.427,205.177,100],"t":34},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,205.177,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,160.177,100],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,160.177,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[89.427,205.177,100],"t":54},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,205.177,100],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,160.177,100],"t":62},{"s":[100,160.177,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-6.361,-8.451,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":99,"ix":4},"s":{"a":0,"k":[265,113],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-3.5,-217.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":13,"parent":11},{"ty":4,"nm":"Shape Layer 40","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-18.5,-359.75,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":32},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":44},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":52},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":64},{"s":[100,100,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[42.719,-133.603,0],"ix":2},"r":{"a":0,"k":-3,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[87,112.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9059,0.651,0.3686],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,80.444],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-18,-386.75],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":14,"parent":11},{"ty":4,"nm":"Shape Layer 39","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-19,-358.25,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":32},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":40},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":44},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":52},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[143,159,100],"t":60},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":64},{"s":[100,100,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-57.118,-127.871,0],"ix":2},"r":{"a":0,"k":-3,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[87,112.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9059,0.651,0.3686],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,80.444],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-18,-386.75],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":15,"parent":11},{"ty":4,"nm":"ÑеÑ","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[8,-8,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[778,405,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","ix":1,"cix":2,"np":3,"it":[{"ty":"el","bm":0,"hd":false,"mn":"ADBE Vector Shape - Ellipse","nm":"Ellipse Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"s":{"a":0,"k":[168,92],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8902,0.651,0.3922],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[8,-8],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":16},{"ty":4,"nm":"пÑзо","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[9,290,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[93.191,116.667,100],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[94.191,121.961,100],"t":39},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[93.191,116.667,100],"t":60},{"s":[93.191,116.667,100],"t":70}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[778,708.556,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[470,312],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8824,0.8824,0.8824],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[9,290],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":17},{"ty":4,"nm":"Ñело","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-45,144,0],"ix":1},"s":{"a":0,"k":[100,136.111,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[778,546,0],"t":30,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[778,576,0],"t":43,"ti":[0,0,0],"to":[0,0,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[778,546,0],"t":56,"ti":[0,0,0],"to":[0,0,0]},{"s":[778,546,0],"t":70}],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-1],"t":43},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-1],"t":56},{"s":[1],"t":70}],"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":1,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[7.589,3.879],[-0.378,-5.497],[0,0],[1.414,9.931]],"o":[[-2.875,-1.469],[2.25,32.694],[0,0],[-9.568,-67.188]],"v":[[95,17.633],[80.5,31.959],[119.417,105.362],[147.699,103.193]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[0.5,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":2,"cix":2,"np":3,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[11.038,-6.625],[0,0],[-22.637,57.471]],"o":[[-65.633,39.39],[0,0],[10.899,-27.67]],"v":[[-175.996,14.32],[-232.713,108.026],[-166.776,66.663]]},"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[1,0.7373,0.451],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-0.75,0],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":3,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[382,284],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8824,0.8824,0.8824],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-43,142],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":18}]},{"nm":"","id":"comp_1","layers":[{"ty":4,"nm":"Shape Layer 13","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-39.75,-175.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[818.25,258.75,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":70,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[77.5,51.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-39.75,-175.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":1},{"ty":4,"nm":"Shape Layer 17","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-39.75,-175.25,0],"ix":1},"s":{"a":0,"k":[99.548,106,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[819.25,258.75,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[77.5,51.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-39.75,-175.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":2},{"ty":4,"nm":"Shape Layer 16","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-39.75,-175.25,0],"ix":1},"s":{"a":0,"k":[100.839,106,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[739.75,258.75,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[77.5,51.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":3}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-39.75,-175.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":3},{"ty":4,"nm":"Shape Layer 12","sr":1,"st":0,"op":1200,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-39.75,-175.25,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[739.25,258.75,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":70,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 1","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":113,"ix":4},"s":{"a":0,"k":[77.5,51.5],"ix":2}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","lc":1,"lj":1,"ml":4,"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"c":{"a":0,"k":[0.9412,0.5137,0.5137],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.1451,0.1412,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-39.75,-175.25],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":4}]}]}
\ No newline at end of file
diff --git a/app/src/main/res/raw/drums_sound.wav b/app/src/main/res/raw/drums_sound.wav
new file mode 100644
index 0000000..5ca81f1
Binary files /dev/null and b/app/src/main/res/raw/drums_sound.wav differ
diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..c474dd6
--- /dev/null
+++ b/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..eeaaf1a
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,7 @@
+
+
+ #FF000000
+ #FFFFFFFF
+ #012D74
+ #0096E7
+
\ No newline at end of file
diff --git a/app/src/main/res/values/font_certs.xml b/app/src/main/res/values/font_certs.xml
new file mode 100644
index 0000000..d2226ac
--- /dev/null
+++ b/app/src/main/res/values/font_certs.xml
@@ -0,0 +1,17 @@
+
+
+
+ - @array/com_google_android_gms_fonts_certs_dev
+ - @array/com_google_android_gms_fonts_certs_prod
+
+
+ -
+ MIIEqDCCA5CgAwIBAgIJANWFuGx90071MA0GCSqGSIb3DQEBBAUAMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTAeFw0wODA0MTUyMzM2NTZaFw0zNTA5MDEyMzM2NTZaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBANbOLggKv+IxTdGNs8/TGFy0PTP6DHThvbbR24kT9ixcOd9W+EaBPWW+wPPKQmsHxajtWjmQwWfna8mZuSeJS48LIgAZlKkpFeVyxW0qMBujb8X8ETrWy550NaFtI6t9+u7hZeTfHwqNvacKhp1RbE6dBRGWynwMVX8XW8N1+UjFaq6GCJukT4qmpN2afb8sCjUigq0GuMwYXrFVee74bQgLHWGJwPmvmLHC69EH6kWr22ijx4OKXlSIx2xT1AsSHee70w5iDBiK4aph27yH3TxkXy9V89TDdexAcKk/cVHYNnDBapcavl7y0RiQ4biu8ymM8Ga/nmzhRKya6G0cGw8CAQOjgfwwgfkwHQYDVR0OBBYEFI0cxb6VTEM8YYY6FbBMvAPyT+CyMIHJBgNVHSMEgcEwgb6AFI0cxb6VTEM8YYY6FbBMvAPyT+CyoYGapIGXMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbYIJANWFuGx90071MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEEBQADggEBABnTDPEF+3iSP0wNfdIjIz1AlnrPzgAIHVvXxunW7SBrDhEglQZBbKJEk5kT0mtKoOD1JMrSu1xuTKEBahWRbqHsXclaXjoBADb0kkjVEJu/Lh5hgYZnOjvlba8Ld7HCKePCVePoTJBdI4fvugnL8TsgK05aIskyY0hKI9L8KfqfGTl1lzOv2KoWD0KWwtAWPoGChZxmQ+nBli+gwYMzM1vAkP+aayLe0a1EQimlOalO762r0GXO0ks+UeXde2Z4e+8S/pf7pITEI/tP+MxJTALw9QUWEv9lKTk+jkbqxbsh8nfBUapfKqYn0eidpwq2AzVp3juYl7//fKnaPhJD9gs=
+
+
+
+ -
+ MIIEQzCCAyugAwIBAgIJAMLgh0ZkSjCNMA0GCSqGSIb3DQEBBAUAMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtHb29nbGUgSW5jLjEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDAeFw0wODA4MjEyMzEzMzRaFw0zNjAxMDcyMzEzMzRaMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtHb29nbGUgSW5jLjEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBAKtWLgDYO6IIrgqWbxJOKdoR8qtW0I9Y4sypEwPpt1TTcvZApxsdyxMJZ2JORland2qSGT2y5b+3JKkedxiLDmpHpDsz2WCbdxgxRczfey5YZnTJ4VZbH0xqWVW/8lGmPav5xVwnIiJS6HXk+BVKZF+JcWjAsb/GEuq/eFdpuzSqeYTcfi6idkyugwfYwXFU1+5fZKUaRKYCwkkFQVfcAs1fXA5V+++FGfvjJ/CxURaSxaBvGdGDhfXE28LWuT9ozCl5xw4Yq5OGazvV24mZVSoOO0yZ31j7kYvtwYK6NeADwbSxDdJEqO4k//0zOHKrUiGYXtqw/A0LFFtqoZKFjnkCAQOjgdkwgdYwHQYDVR0OBBYEFMd9jMIhF1Ylmn/Tgt9r45jk14alMIGmBgNVHSMEgZ4wgZuAFMd9jMIhF1Ylmn/Tgt9r45jk14aloXikdjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLR29vZ2xlIEluYy4xEDAOBgNVBAsTB0FuZHJvaWQxEDAOBgNVBAMTB0FuZHJvaWSCCQDC4IdGZEowjTAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBAUAA4IBAQBt0lLO74UwLDYKqs6Tm8/yzKkEu116FmH4rkaymUIE0P9KaMftGlMexFlaYjzmB2OxZyl6euNXEsQH8gjwyxCUKRJNexBiGcCEyj6z+a1fuHHvkiaai+KL8W1EyNmgjmyy8AW7P+LLlkR+ho5zEHatRbM/YAnqGcFh5iZBqpknHf1SKMXFh4dd239FJ1jWYfbMDMy3NS5CTMQ2XFI1MvcyUTdZPErjQfTbQe3aDQsQcafEQPD+nqActifKZ0Np0IS9L9kR/wbNvyz6ENwPiTrjV2KRkEjH78ZMcUQXg0L3BYHJ3lc69Vs5Ddf9uUGGMYldX3WfMBEmh/9iFBDAaTCK
+
+
+
diff --git a/app/src/main/res/values/preloaded_fonts.xml b/app/src/main/res/values/preloaded_fonts.xml
new file mode 100644
index 0000000..c406f4e
--- /dev/null
+++ b/app/src/main/res/values/preloaded_fonts.xml
@@ -0,0 +1,6 @@
+
+
+
+ - @font/ubuntu
+
+
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..dce12b7
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,6 @@
+
+ MathMantra
+
+ Hello blank fragment
+ >]]>
+
\ No newline at end of file
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..7297e67
--- /dev/null
+++ b/app/src/main/res/values/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..fa0f996
--- /dev/null
+++ b/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..011b1d5
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,4 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ id("com.android.application") version "8.2.1" apply false
+}
\ No newline at end of file
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..3e927b1
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,21 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..7676177
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sun Jul 07 07:03:13 IST 2024
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..ac1b06f
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/settings.gradle.kts b/settings.gradle.kts
new file mode 100644
index 0000000..55a214d
--- /dev/null
+++ b/settings.gradle.kts
@@ -0,0 +1,18 @@
+pluginManagement {
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.name = "MathMantra"
+include(":app")
+
\ No newline at end of file