diff --git a/.github/workflows/issue-reminder.yml b/.github/workflows/issue-reminder.yml index 009a325c..ef29e9b0 100644 --- a/.github/workflows/issue-reminder.yml +++ b/.github/workflows/issue-reminder.yml @@ -2,32 +2,36 @@ name: "Open-Issue-Reminder" on: schedule: - - cron: "0 12 */3 * *" + - cron: "0 0 * * *" jobs: - welcome: + comment: runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - name: Run script - uses: actions/github-script@v4 + steps: + - uses: actions/github-script@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | - const { data: issues } = await github.issues.listForRepo({ + const threeDays = 259200000; // Milliseconds in 3 days + const now = Date.now(); + + const issueList = await github.issues.listForRepo({ owner: context.repo.owner, repo: context.repo.repo, - state: 'open' + state: 'open', }); - for (const issue of issues) { - const issueComment = `Hi there! This issue is still open. We are waiting for your response. - Assignees: ${issue.assignees.map(assignee => '@' + assignee.login).join(', ') || 'None'}`; - await github.issues.createComment({ - issue_number: issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: issueComment - }); + + for (const issue of issueList.data) { + const issueAge = now - issue.created_at; + if (issueAge > threeDays) { + const commentBody = `Hi there! This issue is still open. We are waiting for your response. + Assignees: ${issue.assignees.map(assignee => '@' + assignee.login).join(', ') || 'None'}`; + await github.issues.createComment({ + issue_number: issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: commentBody + }); + } } diff --git a/App Development/readme.md b/App Development/readme.md index 38076439..1106991c 100644 --- a/App Development/readme.md +++ b/App Development/readme.md @@ -12,6 +12,7 @@ App development refers to crafting software for diverse devices, involving plann - [YouTube Channels](#youtube-channels)
- [YouTube Playlists](#youtube-playlists) - [GitHub Repositories](#github-repositories) +- [Interview](#interview) - [Conclusion](#conclusion) ### Roadmap @@ -340,6 +341,28 @@ App development refers to crafting software for diverse devices, involving plann Library for handling localization and internationalization in React Native apps, supporting language and region detection. +### Interview + + Here are some Interview Preparation Resources. + + + + + + + + + + + + + + + +
Resource NameDescription
10 Essential Mobile App Interview QuestionsThis Website consists of curated app development interview questions with the answers pravided by different persons here we can even post the question which were asked in our interview.Top 10 most frequently asked questions will be displayed.
Interviewing Guides-BarRaiserThis Website provides the App developer Interview Guide.Tells about the rounds which were present in the interview,types of questions,tips and tricks to crack mobile app Interview.
+ + + ### Conclusion diff --git a/Computer Networks/readme.md b/Computer Networks/readme.md index ed0bb832..e819b808 100644 --- a/Computer Networks/readme.md +++ b/Computer Networks/readme.md @@ -8,6 +8,13 @@ A computer network is a collection of interconnected devices that can communicat - [Tutorials or Courses](#tutorials-or-courses)
- [Free Cources](#free-courses)
- [Paid Courses](#paid-courses)
+- [Network Implementation](#network-implementation) + - [Routing](#routing) + - [SD-WAN and Swutching](#sd-wan-and-switching) + - [VPN](#vpn) + - [Network Services](#network-services) + - [Network Simulators and Traffic Generators](#network-simulators-and-traffic-generators) + - [Network Connectivity](#network-connectivity) - [Books](#books)
- [Youtube Channels](#youtube-channels)
- [YouTube Playlist](#youtube-playlists)
@@ -30,7 +37,7 @@ A computer network is a collection of interconnected devices that can communicat ## Tutorials or Courses -> You can consider these courses for learning Data Science: +> You can consider these courses for learning Computer Networks: #### Free Courses @@ -49,6 +56,19 @@ A computer network is a collection of interconnected devices that can communicat YouTube - Computer Networks by Ravindrababu Ravula This playlist contains all the Computer Network lectures required for preparing for various competitive exams + + + Computer Networking Full Course - OSI Model Deep Dive with Real Life Examples + Learn how the internet works in this complete computer networking course. Here we cover the fundamentals of networking, OSI model deep dive, networking protocols, devices, tools, and more with real-life examples. + + + Computer Networking Course - Network Engineering by freeCodeCamp + This full college-level computer networking course will prepare you to configure, manage, and troubleshoot computer networks. It will also help you prepare for CompTIA's Network+ exam. + + + Master Computer Networking by Scaler + Scaler's Computer Networks Course is a valuable resource that provides a deep understanding of the fundamental concepts and principles underlying computer networks. Designed for beginners and individuals with limited networking experience, this course aims to equip you with the necessary skills to excel in this exciting domain. + #### Paid Courses @@ -69,8 +89,180 @@ A computer network is a collection of interconnected devices that can communicat Networking Courses CCNP All-in-1 Video Boot Camp With Chris Bryant + + The Bits and Bytes of Computer Networking + This course is designed to provide a full overview of computer networking. + +## Network Implementation +> The implementation plan is a detailed roadmap that outlines every step of deploying the network. It includes routing, switching, VPN, Network Services, Network Connectivity, etc. + +### Routing + + + + + + + + + + + + + +
Resource NameDescription
Free Range RoutingIP routing protocol suite for Linux and Unix platforms which includes protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP.
VyOSOpen source network operating system that can be installed on physical hardware or a virtual machine on your own server, or a cloud platform.
+ + +### SD-WAN and Switching + + + + + + + + + + + + + + +
Resource NameDescription
Silver PeakSD-WAN Solution(Commercial).
snabbSnabb (formerly "Snabb Switch") is a simple and fast packet networking toolkit.
+ +### VPN + + + + + + + + + + + + + + +
Resource NameDescription
FirezoneOpen-source VPN server and egress firewall for Linux built on WireGuard. Firezone is easy to set up (all dependencies are bundled thanks to Chef Omnibus), secure, performant, and self hostable.
PiVPNSimplest OpenVPN setup and configuration, designed for Raspberry Pi.
+ +### Network Services + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Pi-HoleNetwork-wide ad blocking via your own Linux hardware.
PortNoxNetwork Access Control as a Service (Commercial).
Bunny.netGlobal Content Delivery Platform.
+ + +### Network Simulators and Traffic Generators + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
GNS3Network software emulator that allows the combination of virtual and real devices, used to simulate complex networks.
MininetInstant Virtual Network on your Laptop.
WANemWide Area Network Emulator.
OstinatoPacket crafter, network traffic generator and analyzer with a friendly GUI.
SIPpFree Open Source test tool / traffic generator for the SIP protocol.
StarTrinity SIP Tester™VoIP monitoring and testing tool, VoIP recorder.
Multi-GeneratorOpen source software that provides the ability to perform IP network performance tests and measurements using TCP and UDP/IP traffic.
Network-Conditions-EmulatorArtificially limit uplink and downlink bandwidth, delay and loss rate on selected interfaces.
snabbSnabb (formerly "Snabb Switch") is a simple and fast packet networking toolkit.
vqfx10k-vagrantVagrant files to bring up Juniper virtual QFX instances.
Packet Communication InvestigatorImport network traffic into a graphtool to analyse packet interactions between machines and network.
SafePcapGDPR and NISTIR 8053 Compliance for your Pcap files.
ArkimeArkime augments your current security infrastructure to store and index network traffic in standard PCAP format, providing fast, indexed access.
pyNTMA network traffic modeler written in Python 3.
+ +### Network Connectivity + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
PacketfabricNetwork as a service provider (commercial).
ProsimoAutonomous Multi-Cloud Network (commercial).
Subtelforum Online MapSubmarine cables map.
MegaportNetwork as a Service (NaaS) platform (commercial).
+ + + ## Books > You can refer to these books on Computer Networks. They are listed below: @@ -162,6 +354,14 @@ A computer network is a collection of interconnected devices that can communicat Networking InsideWire This playlist is a valuable resource for anyone looking for reviews and tutorials on networking products for home and small business environments. It features a wide range of products, from routers and switches to security appliances and networking tools. + + Computer Networks Complete Playlist by Gate Smashers + This playlist is for those aspirants who want to just smash the concepts of Computer Networks but they are lagging behind due to lack of proper guidance + + + Computer Networks by KnowledgeGATE + KnowledgeGATE by Sanchit Sir helps students to prepare for GATE, NET, PSU, and University/semester Exams. + ## Interview @@ -248,4 +448,4 @@ Assaf Muller | [Distributed Virtual Routing – Floating IPs](https://assafmulle Computer Networks are the backbone of modern communication, enabling seamless data exchange and connectivity across various devices and systems. With the advent of technologies such as the Internet of Things (IoT), 5G, and cloud computing, the importance of robust and efficient network infrastructures has grown exponentially. The diverse range of network types, including Local Area Networks (LANs), Wide Area Networks (WANs), and Wireless Networks, cater to different connectivity needs and scales. Advanced networking features and protocols, such as IP addressing, routing, and network security measures, empower administrators to manage and secure networks effectively. The networking community is vibrant and supportive, offering numerous resources such as tutorials, forums, and documentation to help both novices and seasoned professionals. To excel in computer networking, practical experience is essential—engage in hands-on labs, participate in networking challenges, and contribute to open-source projects. This practical approach not only enhances your understanding of networking concepts but also opens up exciting career opportunities in network administration, network engineering, and beyond. -Stay curious and keep networking! \ No newline at end of file +Stay curious and keep networking! diff --git a/DBMS (Database)/readme.md b/DBMS (Database)/readme.md index 85794a49..fa3483af 100644 --- a/DBMS (Database)/readme.md +++ b/DBMS (Database)/readme.md @@ -13,6 +13,8 @@ A database is an organized collection of structured information, or data, typica - [Best Practices](#best-practices) - [Challenges](#challenges) - [Books](#books) + - [Free Books](#free-books) + - [Paid Books](#paid-books) - [Interview](#interview) - [GitHub Repositories](#github-repositories) - [projects](#projects) @@ -236,26 +238,56 @@ Database design and modeling are critical steps in the creation and management o ### Books +> These books helps you to learn about DBMS topics that courses cannot teach. + +#### Free Books + - - - - - + + - + + + + + + +
Resource Name DescriptionStatus
Database Design-2nd Edition This book covers the fundamental concepts of database design, including data models, database management systems, and integrity rules. It is well-suited for introductory courses and provides clear explanations and examples.Free
Relational Databases and Microsoft Access 365-Version 4.0This book provides a comprehensive introduction to relational database principles and practical usage of Microsoft Access. It is ideal for beginners and includes detailed chapters on tables, queries, and formsFree
This book provides a comprehensive introduction to relational database principles and practical usage of Microsoft Access. It is ideal for beginners and includes detailed chapters on tables, queries, and forms.
Introduction to Database Systems This lecture series provides an in-depth introduction to database systems, including database management systems, design, and implementation​.Free
Fundamentals of Database SystemThis book is a comprehensive introduction to the principles and practices of database systems. In its seventh edition, the book continues to serve as a fundamental resource for students, professionals, and academics in the field of database management.
+ +#### Paid Books + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Mongo DB for Job seekersThis book is a comprehensive guide designed to help jobseekers and professionals advance their careers in the field of database management, specifically focusing on MongoDB. Written by an expert in the field, this book covers essential concepts, practical applications, and advanced techniques related to MongoDB, a popular NoSQL database system.
Learn SQL Database ProgrammingThis book is a comprehensive guide for individuals seeking to master SQL (Structured Query Language) and database programming. Written in a step-by-step format, this book is tailored for beginners as well as intermediate users looking to enhance their SQL skills.
SQL all-in-one for dummiesThis book is designed to help readers master SQL (Structured Query Language), the standard language used for managing and manipulating relational databases. Whether you're a beginner looking to learn SQL from scratch or an experienced user seeking to deepen your understanding, this book provides everything you need to know about SQL in one accessible resource.
Learning SQLThis book is a comprehensive guide aimed at individuals looking to learn SQL (Structured Query Language) from scratch or enhance their existing SQL skills. Authored by renowned database experts, the book offers a practical and hands-on approach to understanding and using SQL effectively.
diff --git a/Data Structures and Algorithm (DSA)/readme.md b/Data Structures and Algorithm (DSA)/readme.md index 25994a5c..bdea3e26 100644 --- a/Data Structures and Algorithm (DSA)/readme.md +++ b/Data Structures and Algorithm (DSA)/readme.md @@ -35,6 +35,10 @@ This section serves as a curated collection of valuable resources for learning a A 3-month journey to rock Data Structures and Algorithms (DSA)! Whether you're new to this or polishing your skills, this roadmap's got your back. Let's navigate the DSA world together and crush it! Let's make coding fun and exciting! 🚀. + + DSA Roadmap for beginners + This article will lay down a complete DSA roadmap for any beginner to obtain proficiency in solving complex computational challenges needed to crack any top product-based companies + ### Types of Data Structures @@ -185,7 +189,11 @@ To the Point, Short and Practical - These 3 terms defines our Content Interviewbit - Interviewbit is a platform, providing preparation for technical interviews, coding interviews. Has a vast list of coding questions from all topics along with their company tags + Interviewbit is a platform, providing preparation for technical interviews, coding interviews. Has a vast list of coding questions from all topics along with their company tags. + + +GeeksforGeeks + GeeksforGeeks has a dedicated practicing platform where people can go and practice problems by sorting them by Company Name and difficulty. diff --git a/DevOps/readme.md b/DevOps/readme.md index 9e4d310a..cb029458 100644 --- a/DevOps/readme.md +++ b/DevOps/readme.md @@ -1,37 +1,55 @@ # DevOps ♾️ -DevOps is a combination of software development (Dev) and operations (Ops). It is defined as a software engineering methodology which aims to integrate the work of development teams and operations teams by facilitating a culture of collaboration and shared responsibility. The DevOps methodology aims to shorten the systems development lifecycle and provide continuous delivery with high software quality. It emphasizes collaboration, automation, integration and rapid feedback cycles. These characteristics help ensure a culture of building, testing, and releasing software that is more reliable and at a high velocity. +DevOps is a combination of software development (Dev) and operations (Ops). It is defined as a software engineering methodology which aims to integrate the work of development teams and operations teams by facilitating a culture of collaboration and shared responsibility. The DevOps methodology aims to shorten the systems development lifecycle and provide continuous delivery with high software quality. + +It emphasizes collaboration, automation, integration and rapid feedback cycles. These characteristics help ensure a culture of building, testing, and releasing software that is more reliable and at a high velocity. ## Table of Contents -- [Roadmap](#roadmap)
-- [Tutorial or Courses](#tutorials-or-courses)
-- [Documentation](#documentation)
+- [Roadmap](#roadmap) +- [Tutorial or Courses](#tutorials-or-courses) +- [Tools](#tools) +- [Cloud Platforms](#cloud-platforms) +- [Operating Systems](#operating-systems) +- [Application Platforms](#application-platforms) +- [Distributed messaging](#distributed-messaging) +- [Development Environment Tools](#development-environment-tools) +- [Source Code Management](#source-code-management) +- [Visulization Tools](#visulization-tools) +- [Monitoring & Observability Tools](#monitoring--observability-tools) +- [Continuous Integration Tools](#continuous-integration-tools) +- [Build Tools](#build-tools) +- [API Tools](#api-tools) +- [Web Servers](#web-servers) +- [Databases](#databases) + - [Relational (SQL)](#relational-sql) + - [Non-relational (NoSQL)](#non-relational-nosql) +- [Documentation](#documentation) - [YouTube](#youtube) - - [YouTube Channels](#youtube-channels)
- - [YouTube Playlist](#youtube-playlist) + - [YouTube Channels](#youtube-channels) + - [YouTube Videos & Playlists](#youtube-videos--playlists) - [Communities](#communities) - [Books](#books) - - [Free Books](#free-books) - - [Paid Books](#paid-books) -- [Tools](#tools) - [GitHub Repositories](#github-repositories) +- [GitHub Projects](#github-projects) - [Conclusion](#conclusion) ### Roadmap > You can refer to the roadmaps in the following table + - - + +
Resource Name Description
DevOpsThis is the roadmap for DevopsDevOps RoadmapA Step by step guide for DevOps, SRE or any other Operations Role in 2024
### Tutorials or Courses -> These are some tutorials and courses that you can refer to +> These are some tutorials and courses that you can refer to + @@ -93,7 +111,745 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameMonitoring and Logging Once the software is released you need to continuosly monitor it to track performance and discover problems
Devops Tools Training: Learn Git,Jenkins,Docker, kubernetes | UdemyDevops Tutorials: CI/CD with devops tools Git, Maven, Jenkins, Docker, Docker machine, Docker Swarm, Kubernetes on AWS with EKS.
Best DevOps Courses & Certifications | Coursera Online ...Take the next step in your professional journey and enroll in a DevOps course today! Learn DevOps or improve your skills online with a wide range of DevOps courses offered by top universities and industry leaders.
Top DevOps Courses Online - Updated [October 2023]Learn the principles and tools of integrated software development with a DevOps course on Udemy. Top rated experts can prepare you for your certification.
LPI DevOps Tools Engineer CertificationPrepare for the LPIC DevOps Tools Engineer Certification exam by learning about the philosophy of DevOps and commonly-used DevOps tools.
Devops Tools and AWS for Java Microservice Developers | UdemyMaster Docker, Kubernetes, Maven, Jenkins, Git, AWS EC2, Elastic Beanstalk, ELB, Auto Scaling, and more in easy steps.
DevOps Tools for Beginners: Starting with Python Scripts | UdemyStart automating with Python. This course helps you learn and get started with Python to do your job more efficiently and automate tasks.
Learn DevOps with Online Courses and Programs | edXDevOps training can be valuable for individuals seeking jobs across multiple sectors. Explore online DevOps courses powered by edX to build your skills or advance your software engineering career.
DevOps: Foundations and tools | edXLearn essential Linux & Unix to efficiently manage applications from the command line. Meet the basics of source code management with Git and Github. Also, go over the pillars of DevOps like Continuous Integration/Continuous Deployment, the paradigm shift in systems management with Infrastructure as Code, and the creation of containers to assure the CI/CD pipeline.
DevOps Tools for Beginners: Vagrant in 1 hour | UdemyVagrant is one of the Tools for DevOps and infrastructure automation. Deploy and virtualize testing environments easily. This course is aimed at IT professionals.
DevOps Tools: Optimizing The Software Development LifecycleLearn about Git, GitHub, Continuous Integration, and more essential tools for streamlining the software development lifecycle.
IBM DevOps and Software Engineering Professional CertificateMaster DevOps, Agile, Scrum, CI/CD, and Cloud Native with hands-on training from IBM to advance your career in DevOps and Software Engineering.
Introduction to DevOps: Practices and Tools Professional CertificateGet started with DevOps principles, practices, and tools to transform your organization's software development process.
CICD (DevOPs Tools) for Automation Testers (Selenium) | UdemyLearn various DevOps tools necessary for Automation Testers to implement Continuous Integration effectively.
+ + + +### Tools + +> These tools helps you to levelup your DevOps career. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Jenkins Jenkins is an open-source automation server used for building, testing, and deploying software. It enables continuous integration and continuous delivery (CI/CD) pipelines, automating the software development process.
DockerDocker is a containerization platform that allows developers to package applications and their dependencies into containers. These containers can be easily deployed across different environments, providing consistency and efficiency in software delivery.
KubernetesKubernetes is an open-source container orchestration platform used for automating the deployment, scaling, and management of containerized applications. It provides features for deploying, scaling, and managing containerized applications in a flexible and efficient manner.
TerraformTerraform is a tool used for building, changing, and versioning infrastructure safely and efficiently. It allows infrastructure to be defined using declarative configuration files, enabling infrastructure to be managed programmatically.
PrometheusPrometheus is a alerting toolkit used for collecting and querying metrics from various systems. It provides a flexible query language and powerful alerting capabilities for monitoring the health and performance of applications and infrastructure.
GrafanaGrafana is a analytics and monitoring platform used for visualizing and analyzing metrics collected by monitoring systems like Prometheus. It provides a rich set of visualization options and dashboards for gaining insights into the performance and behavior of systems.
PuppetPuppet is a configuration management tool used for automating infrastructure deployment and configuration. It provides a model-driven approach for managing infrastructure, ensuring consistency and compliance across environment
+ + + +### Cloud Platforms +> Here are some Public and Private Cloud Platforms. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Amazon Web Services (AWS)Cloud Computing Services provided by Amazon.
Google Cloud Platform (GCP)Cloud Computing Services provided by Google.
AzureCloud Computing Platform & Services provided by Microsoft.
Alibaba CloudIntegrated suite of cloud products and services.
Oracle CloudComprehensive and fully integrated stack of cloud applications and platform services.
DigitalOceanHelping developers easily build, test, manage, and scale applications of any size.
ScalewaySingle way to create, deploy and scale your infrastructure in the cloud.
VultrEasily deploy cloud servers, bare metal, and storage worldwide.
VMware CloudRun, manage, connect and protect all of your apps on any cloud.
IBM CloudTools, data & APIs to make AI real now.
StackpathPlatform of computing infrastructure and services built at the edge of the cloud.
LinodeAccelerate innovation in the cloud, virtual computing must be more accessible, affordable, and simple.
KinstaCreate and deploy web applications and databases in minutes.
+ +### Operating Systems +> Here are some Operating Systems - Server Platform. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
UbuntuEnterprise Open Source and Linux.
Rocky LinuxOpen-source enterprise operating system designed to be 100% bug-for-bug compatible with Red Hat Enterprise Linux.
CoreOSThe pioneering lightweight container host.
OSvVersatile modular unikernel designed to run unmodified Linux applications securely on micro-VMs in the cloud.
AtomicUse immutable infrastructure to deploy and scale your containerized applications.
PhotonLinux container host optimized for cloud-native applications, cloud platforms, and VMware infrastructure.
+ +### Application Platforms +> Applications management platforms, Containers platform and Containers management. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
OpenshiftThe Kubernetes platform for big ideas.
Cycle.ioDevOps platform for building platforms. Handle container orchestration, load-balancing, monitoring, and more from a single control plane.
DokkuHelps you build and manage the lifecycle of applications.
FlynnOpen source platform (PaaS) for running applications in production.
Cloud 66DevOps as a service that helps to build, deploy and manage any application on any cloud or server.
DockerCreate, deploy, and run applications by using containers.
Docker ComposeDefine and run multi-container applications with Docker.
Docker SwarmDocker-native clustering system.
KubernetesAutomating deployment, scaling, and management of containerized applications.
LXCLets Linux users easily create and manage system or application containers.
RancherLets you deliver Kubernetes-as-a-Service.
OpenVzContainer-based virtualization for Linux.
SingularityRun the application from the local environment to the cloud.
AppScaleEasy-to-manage serverless platform for building and running scalable web and mobile applications.
Kata ContainersBuilding lightweight virtual machines that seamlessly plug into the containers ecosystem.
K3SThe certified Kubernetes distribution built for IoT and Edge computing.
PodmanA tool for managing OCI containers and pods.
LinxGeneral-purpose low-code platform for building and hosting backend solutions.
+ + +### Distributed messaging +> Distributed messaging platforms and Queues software. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
RabbitMQMessage broker.
KafkaBuilding real-time data pipelines and streaming apps.
ActiveMQMulti-Protocol messaging.
BeanstalkdSimple, fast work queue.
NSQRealtime distributed messaging platform.
CeleryAsynchronous task queue/job queue based on distributed message passing.
FaktoryRepository for background jobs within your application.
NATSSimple, secure and high performance open source messaging system.
RestMQMessage queue which uses HTTP as transport.
DkronDistributed, fault tolerant job scheduling system.
KubeMQKubernetes-native messaging platform.
+ + +### Development Environment Tools +> Development environment tools are essential for maintaining consistency in software configurations and versions. They ensure reproducibility in minutes in case of a crash, increasing developer productivity. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Virtual BoxA powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. (Open Source)
QemuA generic and open source machine emulator and virtualizer. (Open Source)
VagrantA tool for building and managing virtual machine environments in a single workflow. (Open Source)
Docker DesktopAn application for MacOS and Windows machines for the building and sharing of containerized applications. (Open Source)
MinikubeA tool that makes it easy to run Kubernetes locally. (Open Source)
MinishiftA tool that helps you run OpenShift locally by running a single-node OpenShift cluster inside a VM. (Open Source)
Podman DesktopA daemonless container engine for developing, managing, and running OCI Containers on your Linux System. (Open Source)
Rancher DesktopA tool that enables developers to manage and deploy Kubernetes clusters effortlessly on their local machines. (Open Source)
kindA tool that uses Docker containers as nodes to facilitate the creation of local Kubernetes cluster primarily used for local development and testing. (Open Source)
k3dA lightweight wrapper to run k3s in Docker and makes it easy to create single and multi-node k3s clusters. (Open Source)
+ +### Source Code Management +>In the DevOps world, everything is treated as code (e.g., code, shell script, configurations, etc.). Robust source code management tools are a must. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
GithubA web-based hosting service for version control using Git. It offers all of the distributed version control and source code management (SCM) functionality of Git as well as adding its own features. (Free & Paid)
BitbucketA web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems. (Free & Paid)
GitlabA web-based DevOps lifecycle tool that provides a Git-repository manager providing wiki, issue-tracking, and CI/CD pipeline features, using an open-source license. (Free & Paid)
AWS CodeCommitA fully-managed source control service that makes it easy for companies hosting their own repositories to collaborate on code in a secure and highly scalable ecosystem. (Free & Paid)
Google Cloud Source RepositoriesFully-featured, scalable, private Git repositories hosted on Google Cloud. (Free & Paid)
Azure ReposProvides Git repositories or Team Foundation Version Control (TFVC) for source control of your code. (Free & Paid)
CodebergCloud-based instance of Forgejo. (Free & Paid)
ForgejoOpen-source fork of Gitea. (Open Source)
FossilOpen-source distributed SCM that includes a wiki, issue management, and other features. Not compatible with Git. (Free)
GiteaOpen-source fork of Gogs. (Open Source, Free, Paid Support Available)
GogsOpen-source git-based SCM, loosely based on GitHub's UI. (Open Source)
+ +### Visulization Tools +> Following are the visulization tools for your devops toolchain. + + + + + + + + + + + + + + + + + + +
Resource NameDescription
GrafanaA leading open-source platform for monitoring and observability, allowing you to query, visualize, alert on, and understand your metrics. (Open Source & Enterprise)
KibanaA free and open user interface that lets you visualize your Elasticsearch data and navigate the Elastic Stack. (Open Source & Enterprise)
TableauA leading data visualization and business intelligence platform that helps people see and understand their data. (Enterprise)
+ +### Monitoring & Observability Tools +> Monitoring & Observability Tools provide insights into the performance, availability, and overall health of applications, infrastructure, and business processes. They enable proactive monitoring, alerting, and troubleshooting, ensuring optimal performance and reliability. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
PrometheusAn open-source monitoring and alerting toolkit designed for reliability and scalability. (Open Source)
ThanosA set of components that can be composed into a highly available metric system with unlimited storage capacity. (Highly Available Prometheus Open Source Tool)
CiliumeBPF-based Networking, Security, and Observability. (Open Source & Enterprise)
FalcoCloud Native Runtime Security. (Open Source & Enterprise)
CalicoPluggable eBPF-based networking and security for containers and Kubernetes. (Open Source & Enterprise)
SensuA comprehensive monitoring solution for your entire infrastructure and application stack. (Open Source & Enterprise)
RiemannA powerful stream processing language that helps you compose, test, and distribute data streams. (Open Source)
NagiosA powerful monitoring system that enables organizations to identify and resolve IT infrastructure problems. (Free & Enterprise)
ZabbixAn enterprise-class open-source distributed monitoring solution. (Open Source & Enterprise)
MiddlewareA full-stack observability platform that offers a free developer account with all features and a paid plan for higher limits/usage. (Free & Enterprise)
Data DogA monitoring and analytics platform for large-scale applications. (Enterprise)
New RelicA cloud-based platform that gives developers, engineers, operations, and management a clear view of what’s happening in today’s complex software environments. (Enterprise)
App DynamicsAn application performance management solution that uses machine learning and artificial intelligence to provide real-time visibility and insight into IT environments. (Enterprise)
SumologicA cloud-native, machine data analytics platform that delivers real-time, continuous intelligence. (Enterprise)
DynatraceAn AI-powered, full-stack, automated performance management solution. (Enterprise)
+ +### Continuous Integration Tools +> Continuous Integration provides continuous feedback on code integrations, helping solve issues faster and decreasing time in software release cycles. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
JenkinsAn open-source automation server, helps to automate parts of the build, test, and deployment process. Java-based, with Groovy-based pipeline definition. (Open Source)
Github ActionsA CI/CD solution that integrates with GitHub repositories to run a series of commands automatically. (Free & Enterprise)
Gitlab CIA continuous integration service included with GitLab that builds and tests the software whenever the developer pushes code to the application. YAML-based pipelines. Can be self-hosted or use the cloud offering. (Free & Enterprise)
CircleCIYAML-based CI/CD hosted in the cloud. (Free & Paid)
DroneYAML-based CI/CD that is container-first. Can self-host or use the cloud version. (Free & Paid)
TeamCityA build management and continuous integration server from JetBrains. (Free & Enterprise)
Travis CIA cloud-based continuous integration service that automatically builds and tests code changes in GitHub repositories. (Open Source)
BambooA continuous integration and deployment tool that ties automated builds, tests, and releases together in a single workflow. (Free & Enterprise)
RazorOps CICDYAML-based CI/CD that is container-first SaaS cloud version and On-Prems with large Enterprise. (Free & Paid)
BuildkiteYAML-based CI/CD. (Free & Paid)
+ + +### Build Tools +>Build tools are essential for automating package creation or deployable artifacts. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
MavenA software project management and comprehension tool, primarily used for Java projects. (Open Source)
GradleAn open-source build automation system that builds upon the concepts of Apache Ant and Apache Maven. Supports Java, Kotlin, Groovy, Scala, Python, C++. (Free & Paid)
npmA package manager for JavaScript, used to install, share, and distribute code.
RakeA software task management and build automation tool for Ruby. (Open Source)
MSBuildThe build platform for .NET and Visual Studio. (Open Source)
PybuilderA software build tool written in pure Python mainly for Python applications. (Open Source)
+ +### API Tools +> Following are the api tools for your devops toolchain. + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
PostmanA collaboration platform for API development. (Free & Enterprise)
HoppscotchOpen-source API development Ecosystem. (Open Source)
SoapUIThe world's leading automated testing tool for SOAP and REST APIs. (Open Source & Enterprise)
SwaggerA framework for API specification that includes a suite of tools for auto-generating documentation, code generation, and API testing. (Open Source & Enterprise)
HTTPieHTTPie (pronounced aitch-tee-tee-pie) is a command-line HTTP client. Its goal is to make CLI interaction with web services as human-friendly as possible (Open Source)
+ +### Web Servers +> Web servers and reverse proxy. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
NginxHigh performance load balancer, web server and reverse proxy.
ApacheWeb server and reverse proxy.
CaddyWeb server with automatic HTTPS.
CherokeeHighly concurrent secured web applications.
LighttpdOptimized for speed-critical environments while remaining standards-compliant, secure and flexible.
UwsgiApplication server container.
+ +### Databases +> Relational (SQL) and non-relational (NoSQL) databases. + +### Relational (SQL) + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
PostgreSQLPowerful, open source object-relational database system.
MySQLOpen-source relational database management system.
MariaDBFast, scalable and robust, with a rich ecosystem of storage engines, plugins and many other tools.
SQLiteSmall, fast, self-contained, high-reliability, full-featured, SQL database engine.
+ +### Non-relational (NoSQL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
CassandraManage massive amounts of data, fast, without losing sleep.
ScyllaDBNoSQL data store using the seastar framework, compatible with Apache Cassandra.
Apache HBaseDistributed, versioned, non-relational database.
CouchDBDatabase that completely embraces the web.
ElasticsearchDistributed, RESTful search and analytics engine capable of addressing a growing number of use cases.
MongoDBGeneral purpose, document-based, distributed database built for modern applications.
RethinkDBOpen-source database for the realtime web.
### Documentation @@ -199,13 +955,89 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i -#### YouTube Playlist +#### YouTube Videos & Playlists + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -262,13 +1094,64 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i > These are some books, you can checkout for learning DevOps. -#### Free Books
Resource Name Description
10 DevOps Tools you need to know - The Complete GuideA comprehensive overview of the top 10 DevOps tools that you need to know.
DevOps Tools Full Course | DevOps Tools Tutorial | DevOps ToolsA full course video tutorial that covers the fundamentals of various DevOps tools.
DevOps Tutorial for Beginners | Learn DevOps in 7 Hours - FullA beginner-friendly tutorial that provides a complete overview of DevOps and its tools in just 7 hours.
What is DevOps? REALLY understand it | DevOps vs SREA comprehensive video that explains the concept of DevOps and its comparison to SRE.
DevOps Tools Full Course 2022 | DevOps Tools Explained | DevOpsA detailed course video explaining various DevOps tools and their usage.
DevOps In 5 Minutes | What Is DevOps? | DevOps ExplainedA quick 5-minute video that provides a concise introduction to DevOps.
The Ultimate DevOps Tools Guide | DevOps Tools ExplainedAn ultimate guide video that covers a wide range of DevOps tools and their importance in software delivery.
DevOps Tools | DevOps Tutorial | DevOps Tools Basics ForA tutorial video explaining the basics of various DevOps tools and their features.
The Best DevOps Tools, Platforms, And Services In 2023?A video discussing the top DevOps tools, platforms, and services to consider in 2023.
Introduction to DevOps | DevOps Tutorial for Beginners | DevOps ToolsA beginner's tutorial that introduces DevOps and its tools.
My daily routine as a DevOps Engineer | Using these DevOps toolsIn this video, the author shares their daily routine as a DevOps Engineer and discusses the DevOps tools they are currently using.
What are the DevOps tools you need to learn? #canadajobsThis video provides information on the DevOps tools you need to learn, particularly if you are looking for IT-related jobs in Canada.
Richard Campbell: People, Process, Tools – The Essence of DevOpsRichard Campbell discusses the essence of DevOps, which revolves around making software better through collaboration and bringing everyone involved closer together.
Introduction to DevOps tools: Terraform code to build the courseThis video introduces DevOps tools and demonstrates the Terraform code for building an entire Datacentre of VMs.
Learn DevOps Tools - Git, CKAD, AKS, Jenkins and GitLab onlineLearn about various DevOps tools including Git, CKAD, AKS, Jenkins, and GitLab, and their importance in IT training.
Every DevOps Engineer Should Learn These DevOps Tools || BestDiscover the best DevOps tools that every DevOps Engineer should learn to enhance their skills.
Terraform interviews #devopsbustechnology #devopsrealtimeThis video features Terraform interviews and offers insights into DevOps Bus Technology.
06 Jenkins Installation Tutorial For Beginners | DevOps ToolsA tutorial for beginners on how to install Jenkins on Linux, providing an introduction to DevOps tools.
Database DevOps with Redgate Data Tools - YouTubeLearn about Database DevOps using Redgate Data Tools in this informative video.
DevOps Training This Playlist by Edureka will take you through - what is devops, devops tutorial videos, devops tools tutorial, devops engineer tutorial, docker tutorial, jenkins tutorial, puppet tutorial, ansible tutorial, chef tutorial, kubernetes tutorial.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -289,15 +1172,6 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i -
Resource Name Description
DevOps - Amazon Web Services (AWS)AWS automation tools for faster and more efficient development and deployment processes.
DevOps Tools for Java Developers [Book]A book that explores how Java developers can adapt to DevOps practices using low-cost cloud computing and container technologies.
Preparing for LPI DevOps Tools Engineer Certification eBookCovers machine deployment, source code management, and application deployment, preparing readers for LPI DevOps Tools Engineer Certification.
What is DevOps? - DevOps Models Explained - Amazon Web ServicesExplanation of DevOps as the combination of cultural philosophies, practices, and tools to enhance application delivery capabilities.
DevOps Tools for Java Developers: Best Practices from Source Code to Production ContainersBest practices guide for Java developers, focusing on source code management and production container deployment.
Practical DevOps: Harness the power of DevOps to boost your skill set and make your IT organization perform betterExplores DevOps as a field that delivers business value efficiently and covers all flows from code to deployment.
Docker for Developers: Develop and run your application with Docker containers using DevOps tools for continuous deliveryGuide for developers on using Docker containers and DevOps tools for continuous delivery.
The DevOps Handbook: How to Create World-Class Agility, Reliability, & Security in Technology OrganizationsComprehensive book covering the creation of world-class agility, reliability, and security in technology organizations.
Modern DevOps Practices: Implement and secure DevOps in the public cloud with cutting-edge tools, tips, tricks, and techniquesGuide to implementing and securing DevOps practices in the public cloud using modern tools and techniques.
The DevOps Handbook: How to Create World-Class Agility, Reliability, and Security in Technology OrganizationsGuidance on creating a culture of collaboration, improving flow, and accelerating feedback loops for more efficient and reliable software development and delivery.
A Complete Guide to DevOps with AWS: Deploy, Build, and Scale Services with AWS Tools and TechniquesLearn how to use AWS DevOps to launch and scale services within an organization using the powerful tools provided by AWS.
Continuous Delivery, Integration, and Deployment with DevOpsExplore core DevOps strategies and learn how to use popular DevOps tools like Ansible, Jenkins, and Chef to streamline software delivery processes.
Python for DevOps: Learn Ruthlessly Effective AutomationDiscover how to automate tasks and interact with Linux using Python, an essential skill for DevOps professionals.
Site Reliability Engineering This book explains the whole life cycle of Google’s development, deployment, and monitoring, and how to manage the world’s biggest software systems (also known as SRE). Anyone who considers themselves to be more on the "Ops" end of the DevOps side or who wants to know how to strengthen the bonds between various Dev and Ops teams should read SRE.Kubernetes The book "Kubernetes by Brendan Burns" is a practical book which shows developers and Ops personnel how Kubernetes and container technology can help you achieve new levels of velocity, agility, reliability, and efficiency.
- -#### Paid Books - - - - - - @@ -318,49 +1192,22 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i -
Resource NameDescription
The DevOps Handbook This book offers a comprehensive guide to understanding and implementing DevOps practices in modern technology organizations. Authored by Gene Kim, Jez Humble, Patrick Debois, and John Willis, this book delves into the principles, methodologies, and case studies that illustrate how DevOps can transform businesses.Hands-on Azure DevOps This books helps the learner to learn how to set up Azure DevOps projects, manage source code repositories, automate builds and deployments, and implement continuous integration and continuous delivery (CI/CD) pipelines. The book covers various aspects of Azure DevOps, including version control, work item tracking, test management, and collaboration tools.
- -### Tools - -> These tools helps you to levelup your DevOps career. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + +
Resource NameDescription
Jenkins Jenkins is an open-source automation server used for building, testing, and deploying software. It enables continuous integration and continuous delivery (CI/CD) pipelines, automating the software development process.
DockerDocker is a containerization platform that allows developers to package applications and their dependencies into containers. These containers can be easily deployed across different environments, providing consistency and efficiency in software delivery.
KubernetesKubernetes is an open-source container orchestration platform used for automating the deployment, scaling, and management of containerized applications. It provides features for deploying, scaling, and managing containerized applications in a flexible and efficient manner.
TerraformTerraform is a tool used for building, changing, and versioning infrastructure safely and efficiently. It allows infrastructure to be defined using declarative configuration files, enabling infrastructure to be managed programmatically.
PrometheusPrometheus is a alerting toolkit used for collecting and querying metrics from various systems. It provides a flexible query language and powerful alerting capabilities for monitoring the health and performance of applications and infrastructure.
GrafanaGrafana is a analytics and monitoring platform used for visualizing and analyzing metrics collected by monitoring systems like Prometheus. It provides a rich set of visualization options and dashboards for gaining insights into the performance and behavior of systems.
PuppetPuppet is a configuration management tool used for automating infrastructure deployment and configuration. It provides a model-driven approach for managing infrastructure, ensuring consistency and compliance across environment
DevOps for VMware AdministratorsLearn how to apply DevOps practices and tools specifically in VMware environments, ensuring efficient deployment and management of virtualized infrastructure.
Azure DevOps Explained: Get started with Azure DevOps and develop your DevOps practicesGet started with Azure DevOps and learn how to implement DevOps practices using real-world examples and scenarios.
DevOps for Azure Applications: Deploy Web Applications on AzureGain insights into deploying web applications on Azure and learn DevOps practices specific to Microsoft Azure.
### GitHub Repositories +>Some Github repositories you may refer. @@ -405,8 +1252,100 @@ DevOps is a combination of software development (Dev) and operations (Ops). It i
-### Conclusion +### GitHub Projects +> Here are some GitHub Projects that you nay refer. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
The Moby Project The Moby Project is a collaborative project for the container ecosystem to assemble container-based systems.
Ansible Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration.
Grafana Grafana is an open and composable observability and data visualization platform. It allows you to visualize metrics, logs, and traces from multiple sources like Prometheus, Elasticsearch, and more.
Prometheus Prometheus is a monitoring system and time series database used to collect and store metrics. It provides powerful querying and alerting capabilities.
TerraformTerraform enables you to create, change, and improve infrastructure in a safe and predictable way. It uses declarative configuration files to codify APIs and can be easily shared.
Sentry Sentry is a developer-first error tracking and performance monitoring tool. It helps you monitor and fix issues in your applications to ensure better stability and performance.
Vagrant Vagrant is a tool for building and distributing development environments. It simplifies the process of setting up reproducible development environments across different platforms.
StatsDStatsD is a daemon for easy but powerful stats aggregation. It allows you to collect and aggregate stats from various sources and send them to backends like Graphite or Prometheus.
Gradle Gradle is a flexible and fast automation tool that can be used for building, testing, and deploying software. It offers high performance and customizable build processes.
FabricFabric is a simple and Pythonic remote execution and deployment tool. It allows you to automate tasks, execute commands, and deploy applications to remote servers.
LogstashTransport and process your logs, events, or other data.
Salt Software to automate the management and configuration of any infrastructure or application at scale.
CapistranoA deployment automation tool built on Ruby, Rake, and SSH.
OpenShiftConformance test suite for OpenShift.
Chef:fork_and_knife: - Chef Infra, a powerful automation platform that transforms infrastructure into code, automating how infrastructure is configured, deployed, and managed across any environment.
PuppetServer automation framework and application.
GraphiteA highly scalable real-time graphing system.
StackStormStackStorm (aka "IFTTT for Ops") is event-driven automation for auto-remediation, incident responses, troubleshooting, deployments, and more for DevOps and SREs.
OpenStackRepository tracking all OpenStack repositories as submodules. Mirror of code maintained at opendev.org.
Apache MavenApache Maven core.
+ +## Conclusion + +DevOps is an innovative and transformative approach that bridges the gap between development and operations, fostering a culture of collaboration and continuous improvement. By integrating practices such as continuous integration, continuous deployment, and infrastructure as code, DevOps enables teams to deliver software faster and more reliably. The plethora of tools available, including Docker, Kubernetes, Jenkins, and Ansible, empowers teams to automate processes, enhance scalability, and improve efficiency. The DevOps community is vibrant and supportive, offering a wealth of resources such as tutorials, forums, and documentation to help practitioners at all levels. -DevOps is an innovative and transformative approach that bridges the gap between development and operations, fostering a culture of collaboration and continuous improvement. By integrating practices such as continuous integration, continuous deployment, and infrastructure as code, DevOps enables teams to deliver software faster and more reliably. The plethora of tools available, including Docker, Kubernetes, Jenkins, and Ansible, empowers teams to automate processes, enhance scalability, and improve efficiency. The DevOps community is vibrant and supportive, offering a wealth of resources such as tutorials, forums, and documentation to help practitioners at all levels. To truly master DevOps, regular practice and hands-on experience are crucial—engage in coding challenges, contribute to open-source projects, and work on real-world scenarios. This practical approach not only sharpens your skills but also unlocks numerous career opportunities in the ever-evolving field of software development and IT operations. +To truly master DevOps, regular practice and hands-on experience are crucial—engage in coding challenges, contribute to open-source projects, and work on real-world scenarios. This practical approach not only sharpens your skills but also unlocks numerous career opportunities in the ever-evolving field of software development and IT operations. Never stop learning ! \ No newline at end of file diff --git a/Linux Development/readme.md b/Linux Development/readme.md index 8bd329e8..5ec38aaa 100644 --- a/Linux Development/readme.md +++ b/Linux Development/readme.md @@ -163,6 +163,11 @@ Linux development refers to creating software for the Linux operating system, en Platform offering a wide range of Linux and cloud training courses, including hands-on labs and certification preparation. Paid + + NDG Linux Unhatched + Learn basic installation and configuration of Linux software and get introduced to the Linux command line. + Free + ### Books diff --git a/Operating System (OS)/readme.md b/Operating System (OS)/readme.md index 46980f4e..68f931f0 100644 --- a/Operating System (OS)/readme.md +++ b/Operating System (OS)/readme.md @@ -473,6 +473,14 @@ Debugging tools are essential for diagnosing and fixing issues in OS development Coursera: Introduction to Operating Systems A free course on Coursera providing an introduction to operating system concepts and design. + + Learn Fundamentals of Operating System by Scaler + Scaler's free Operating System Course offers a comprehensive overview of operating systems, providing you with a deep understanding of their structure, functionalities, and importance in operating systems. + + + Complete Operating System in one shot by KnowledgeGATE + A complete Operating System(OS) course by KnowledgeGATE, taught by Sanchit Jain sir, one of India's top faculties in Computer Science + #### Paid Courses @@ -565,6 +573,10 @@ Debugging tools are essential for diagnosing and fixing issues in OS development Chris Titus Tech Chris Titus Tech focuses on Linux tutorials, including installation, configuration, and optimization, as well as Linux for gaming and professional use. + + Gate Smashers + Gate Smashers is India's no 1 Free education platform for those aspirants who want to just smash the entrance exam like GATE,UGC NET,KVS,NVS,HTET,CTET etc in Computer Science but they are lagging behind due to lack of proper guidance. + #### YouTube Playlists @@ -582,6 +594,14 @@ Debugging tools are essential for diagnosing and fixing issues in OS development Linux Kernel Development Playlist A YouTube playlist focused on Linux kernel development, including tutorials on various aspects of kernel programming. + + Operating Systems for Placements + Complete in-depth comprehensive knowledge of Operating System.Course fully focused on Cracking the Technical Interviews of Product based companies. + + + Opearating System by Neso Academy + This field is undergoing rapid change, as computers are now prevalent in virtually every application. Yet the fundamental concepts remain fairly clear and that is what will be taught in this course. + ## Conclusion diff --git a/Programming Languages/C/readme.md b/Programming Languages/C/readme.md index 14674db2..caf1d22f 100644 --- a/Programming Languages/C/readme.md +++ b/Programming Languages/C/readme.md @@ -787,6 +787,14 @@ This section serves as a curated collection of valuable resources for learning a freeCodeCamp - The C Beginner's Handbook A beginner's guide to learning C programming, starting from the basics and progressing to advanced topics. + + W3Schools - C Tutorial + W3Schools offers a comprehensive C tutorial that is ideal for beginners and intermediate learners looking to understand the C programming language. + + + learn-c.org + Learn-C.org is an interactive and user-friendly platform dedicated to teaching the C programming language. + ### C CheatSheets diff --git a/Programming Languages/Dart/readme.md b/Programming Languages/Dart/readme.md index 2717bb88..71f47144 100644 --- a/Programming Languages/Dart/readme.md +++ b/Programming Languages/Dart/readme.md @@ -7,15 +7,17 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i ## Table of Contents - [Roadmap](#roadmap) -- [Tutorials](#tutorials) - - [Introduction to Dart](#introduction-to-dart) - - [Dart Fundamentals](#dart-fundamentals) - - [Functions in Dart](#functions-in-dart) - - [Dart Collections](#dart-collections) - - [Object-Oriented Programming (OOP) in Dart](#object-oriented-programming-oop-in-dart) - - [Data Structures in Dart](#data-structures-in-dart) - - [Dart for Mobile App and Web Development](#dart-for-mobile-app-and-web-development) - - [Dart Packages and Libraries](#dart-packages-and-libraries) +- [Dart](#dart) + - [Introduction](#introduction) + - [Fundamentals](#fundamentals) + - [Functions](#functions) + - [Collections](#collections) + - [Object-Oriented Programming (OOP)](#object-oriented-programming-oop) + - [Data Structures](#data-structures) + - [Mobile App and Web Development](#mobile-app-and-web-development) + - [Mobile App Development with Flutter](#mobile-app-development-with-flutter) + - [Web Development](#web-development) + - [Packages and Libraries](#packages-and-libraries) - [Tools and IDEs](#tools-and-ides) - [Books](#books) - [Documentation](#documentation) @@ -36,9 +38,9 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i -### Tutorials +### Dart > Let's get started with Dart using the following resources which will guide you through various aspects of Dart, from the basics to advanced topics. -### Introduction to Dart +#### Introduction @@ -67,7 +69,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Dart Fundamentals +#### Fundamentals @@ -116,7 +118,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Functions in Dart +#### Functions @@ -145,7 +147,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Dart Collections +#### Collections @@ -174,7 +176,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Object-Oriented Programming (OOP) in Dart +#### Object-Oriented Programming (OOP) @@ -252,7 +254,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Data Structures in Dart +#### Data Structures @@ -289,9 +291,9 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Dart for Mobile App and Web Development -> Provides resources and tutorials for developing mobile applications and web applications using Dart programming language. -#### Mobile App Development with Flutter +#### Mobile App and Web Development + +##### Mobile App Development with Flutter @@ -328,7 +330,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-#### Web Development with Dart +##### Web Development @@ -353,7 +355,7 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i
-### Dart Packages and Libraries +#### Packages and Libraries @@ -485,4 +487,4 @@ Syntactically, Dart bears a strong resemblance to Java, C, and JavaScript. It i To further enhance your Dart expertise, consider contributing to open-source projects or creating your own libraries to share with the community. Engaging in collaborative projects will not only improve your coding skills but also provide valuable experience in version control, project management, and teamwork. Additionally, attending conferences, workshops, and online webinars focused on Dart and its ecosystem can offer deeper insights and networking opportunities with industry professionals. Embrace continuous learning and remain curious, as these qualities will propel your growth as a proficient Dart developer. -Happy coding \ No newline at end of file +Happy coding diff --git a/Programming Languages/Elixir/README.md b/Programming Languages/Elixir/README.md new file mode 100644 index 00000000..fdd7bdac --- /dev/null +++ b/Programming Languages/Elixir/README.md @@ -0,0 +1,320 @@ +# Elixir 👨🏻‍💻 +Elixir is a dynamic, functional programming language designed for building scalable and fault-tolerant applications. Leveraging the Erlang VM, it offers concurrency primitives, immutable data structures, and a modern syntax, making it an ideal choice for building distributed systems and web applications. + +## Table of Contents + +- [Roadmap](#roadmap)
+- [Elixir](#elixir)
+ - [Introduction](#introduction)
+ - [Fundamentals](#fundamentals)
+ - [Functions](#functions)
+ - [Arrays, Slices and Maps](#arrays-slices-and-maps)
+ - [Structs and Methods](#structs-and-methods)
+ - [Concurrency](#concurrency)
+ - [Packages and Modules](#packages-and-modules)
+ - [Error Handling](#error-handling)
+ - [File I/O and Networking](#file-io-and-networking)
+ - [Testing](#testing)
+ - [Web Development](#web-development)
+- [Tools](#tools)
+- [Projects](#projects)
+- [Courses](#courses) +- [Conclusion](#conclusion) + +## Roadmap + +Elixir roadmap outlines the essential steps and skills needed to become skilled and efficient in Elixir programming. + +
+ + + + + + + + +
Resource NameDescription
Elixir RoadmapStep by step guide to becoming an Elixir developer.
+ +## Elixir + +Offers step-by-step guides and tutorials covering various aspects of Elixir programming. +Helps beginners understand fundamental concepts and advanced users explore new techniques. + +## Introduction + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
OverviewElixir is a dynamic, functional language designed for building scalable and maintainable applications.
HistoryLearn about the background and evolution of the Elixir programming language.
SetupLearn how to set up your development environment for Elixir programming.
Interactive modeElixir is designed for building scalable and maintainable applications. This guide covers running Elixir code and basic usage.
+ +## Fundamentals + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Data TypesAn article providing an overview of the data types that specify the type of data that a valid Elixir variable can hold.
Pattern matchingAn article explaining about the = operator and the pin operator
Control StructuresThis article glimpses into the use of control structures in Elixir programming.
Case StatementsThis article will help you to learn how to use case statements in Elixir.
ComprehensionsThis articled will you learn about comprehensions in Elixir.
+ +## Functions + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Anonymous FunctionsThis article details about the use of anonymous functions in Elixir.
ClosuresAn article which deals with closure which is a special type of anonymous function that references variables declared outside of the function itself.
RecursionThis article glimpses into the use of recursive functions in Elixir programming.
Default argumentsThis article explains about how function definition in the elixir language supports defaul arguments
+ +## Lists, Tuples, and Maps + + + + + + + + + + + + + + + + + + +
Resource NameDescription
ListsThis article will look into the usage of lists in Elixir programming language.
TuplesThis article will look at what tuples are and how they are used.
MapsThis article will look at what Elixir maps are used for.
+ +## Structs and Protocols + + + + + + + + + + + + + +
Resource NameDescription
StructsThis article provides will help you to know what structs are.
ProtocolsThis article details about the protocols used in Elixir.
+ +## Concurrency + + + + + + + + + + + + + + + + + +
Resource NameDescription
ProcessesThis article provides an overview on how we use processes to create concurrent programs.
Message PassingThis article details about the use of message passing in concurrency.
Linking ProcessesThis article will look at what linking processes are.
+ +## Modules and Behaviours + + + + + + + + + + + + + + + + + +
Resource NameDescription
ModulesThis article provides an overview what modules are.
BehavioursThis article gives an insight about how to write behaviours.
Kernel ModuleThis article will into how to use the Kernel module.
+ +## Error Handling + + + + + + + + + + + + + +
Resource NameDescription
Try, Catch, and RescueThis article provides an overview of how we use Try, Catch, and Rescue in error handling.
Errors and ExceptionsThis article details about the types of errors and exceptions in Elixir.
+ +## Testing + + + + + + + + + + + + + + +
Resource NameDescription
MixThis article provides an overview on how we use Mix.
Simple state managementThis article will show us how simple state= management is dont using agents in Elixir.
+ +## Web Development + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
HTTP ServersThis article provides an insight about how to make HTTP servers in Elixir using Plug.
RoutingThis article details about what routing is in Phoenix and deals with its various features.
JSON HandlingThis article gives an overview of how to use JSON in Elixir.
Asset ManagementThis article gives a overview of asset management in elixir
+ +## Tools + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
MixMix is a build tool that provides tasks for creating, compiling, and testing Elixir projects, managing dependencies, and more.
ExUnitExUnit is the built-in test framework for Elixir, providing tools and functionalities to write and run tests for your Elixir applications.
CredoCredo is a static code analysis tool for Elixir, focusing on code consistency, readability, and common bug detection.
DialyxirDialyxir is a mix task that integrates Dialyzer, a static analysis tool for Erlang, to detect software discrepancies and bugs in Elixir projects.
+ +## Projects + + + + + + + + + + + + + + + +
Resource NameDescription
Rest Api projectThis is step-by-step tutorial where using the Phoenix framework, we create a skeleton REST API project.
Lights out gameThis a tutorial on creating a simple game called lights out using the elixir language
+ +## Courses +Here are courses you may consider: + + + + + + + + + + + + + + + +
Resource NameDescription
Elixir SchoolFree, open-source resource for learning the Elixir programming language
Elixir course UdemyThis course is a slightly advanced course that covers pattern matching, functions, anonymous functions, operators, immutability, and Erlang interoperability
+ +## Conclusion + +In conclusion, Elixir presents a powerful and elegant solution for building robust, scalable, and maintainable applications. With its focus on functional programming principles, lightweight concurrency model, and comprehensive ecosystem, Elixir empowers developers to tackle complex problems with confidence. Whether you're a beginner just starting out or an experienced developer looking to expand your skill set, the resources provided in this guide offer a solid foundation and pathway to mastery in the exciting world of Elixir programming. Happy coding! + diff --git a/Programming Languages/Java/readme.md b/Programming Languages/Java/readme.md index 3e71e17a..e6834af0 100644 --- a/Programming Languages/Java/readme.md +++ b/Programming Languages/Java/readme.md @@ -1027,6 +1027,10 @@ Here's the updated table: Javapoint - 300 Core Java Interview Questions Frequently asked questions by the interviewer for Java developer position. + + Simplilearn-180 Core Java Interview Questions + This article contains some of the most important Java interview questions for freshers + diff --git a/Programming Languages/JavaScript/readme.md b/Programming Languages/JavaScript/readme.md index ac75edb9..9d060292 100644 --- a/Programming Languages/JavaScript/readme.md +++ b/Programming Languages/JavaScript/readme.md @@ -8,9 +8,7 @@ This section is dedicated to providing valuable resources for learning and maste ## Table of Contents - [Roadmap](#roadmap) - - [JavaScript Developer Roadmap I](#roadmap) - - [JavaScript Developer Roadmap II](#roadmap) -- [Tutorials](#tutorials) +- [JavaScript](#javascript) - [Introduction](#introduction) - [Fundamentals](#fundamentals) - [Object Oriented Programming (OOP)](#object-oriented-programming-oop) @@ -20,51 +18,44 @@ This section is dedicated to providing valuable resources for learning and maste - [APIs ans Fetch](#apis-and-fetch) - [Tools and Developer Environment](#tools-and-development-environment) - [Browser](#browser) - - [IDEs for JavaScript](#ides-for-javascript) - - [Online Editors for JavaScript](#online-editors-for-javascript) + - [IDEs](#ides) + - [Online Editors](#online-editors) - [Browser Devtools](#browser-devtools) -- [Javascript Frameworks and Libraries](#javascript-frameworks-and-libraries) +- [Frameworks and Libraries](#frameworks-and-libraries) - [Front-End Frameworks](#front-end-frameworks) - [React](#1-react) - [Angular](#2-angular) - [Vue](#3-vue) - [jQuery](#4-jquery) - [State Management](#state-management) - - [Redux](#state-management) - - [Vuex](#state-management) -- [Advanced Frameworks](#advanced-frameworks) - - [Next.js (for React)](#advanced-frameworks) - - [Nuxt.js (for Vue)](#advanced-frameworks) -- [Back-End Development in JavaScript](#back-end-development-with-javascript) +- [Advanced Frameworks](#advanced-frameworks) +- [Back-End Development](#back-end-development) - [Node.js](#nodejs) - [Testing and Debugging](#testing-and-debugging) - [Testing](#1-testing) - [Debugging](#2-debugging) -- [Mobile Development with JavaScript](#mobile-development-with-javascript) - - [React Native](#mobile-development-with-javascript) - - [Ionic](#mobile-development-with-javascript) - - [Native Script](#mobile-development-with-javascript) +- [Mobile Development](#mobile-development) - [Serverless Architecture](#serverless-architecture) - [Specialized Topics](#specialized-topics) - [Modern JavaScript Features](#modern-javascript-features) -- [JavaScript Projects](#javascript-projects) +- [Projects](#projects) - [Beginner Level Projects](#beginner-level-projects) - [Intermediate Level Projects](#intermediate-level-projects) - [Advance Level Projects](#advance-level-projects) - [Version Control](#version-control) - [Deployment](#deployment) - [Youtube](#youtube) - - [Youtube Channels to Learn JavaScript](#youtube-channels-for-learning-javascript) - - [YouTube Playlists for Learning JavaScript](#youtube-playlists-for-learning-javascript) + - [Youtube Channels](#youtube-channels) + - [YouTube Playlists](#youtube-playlists) - [Courses](#courses) - - [Free Certification Courses](#free-certification-courses) - - [Paid Certification Courses](#paid-certification-courses) + - [Free Courses](#free-courses) + - [Paid Courses](#paid-courses) - [Additional Resources](#additional-resources) - - [JavaScript Games](#javascript-games) - - [JavaScript Communities](#javascript-communities) - - [JavaScript Documentations](#javascript-documentations) - - [JavaScript Books](#javascript-books) - - [JavaScript CheatSheets](#javascript-cheatsheets) + - [Games](#games) + - [Communities](#communities) + - [Documentations](#documentations) + - [Books](#books) + - [CheatSheets](#cheatsheets) - [Conclusion](#conclusion) @@ -87,10 +78,10 @@ This section is dedicated to providing valuable resources for learning and maste -### Tutorials +### JavaScript > Start your journey into JavaScript programming with these essential tutorials covering basic syntax and concepts. -### Introduction +#### Introduction @@ -136,7 +127,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Fundamentals +#### Fundamentals @@ -208,7 +199,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Object-Oriented Programming (OOP) +#### Object-Oriented Programming (OOP) @@ -258,7 +249,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Data Structures +#### Data Structures @@ -297,7 +288,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Asynchronous JavaScript +#### Asynchronous JavaScript @@ -327,7 +318,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### DOM Manipulation +#### DOM Manipulation @@ -370,7 +361,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### APIs and Fetch +#### APIs and Fetch @@ -399,7 +390,7 @@ This section is dedicated to providing valuable resources for learning and maste > Get started with setting up your development environment for JavaScript programming with these essential resources. -### Browser +#### Browser
@@ -428,7 +419,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### IDEs for JavaScript +#### IDEs @@ -462,7 +453,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Online Editors for JavaScript +#### Online Editors @@ -484,7 +475,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### Browser DevTools +#### Browser DevTools @@ -501,10 +492,10 @@ This section is dedicated to providing valuable resources for learning and maste
-### JavaScript Frameworks and Libraries +### Frameworks and Libraries > The enormous variety of frameworks and libraries, making websites with JavaScript is now easier. Therefore, excellent knowledge of JavaScript frameworks is the key to being a developer who can build fantastic websites. -### Front-End Frameworks -### 1. React +#### Front-End Frameworks +##### 1. React @@ -533,7 +524,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### 2. Angular +##### 2. Angular @@ -559,7 +550,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### 3. Vue +##### 3. Vue @@ -580,7 +571,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### 4. jQuery +##### 4. jQuery @@ -609,7 +600,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### State Management +#### State Management @@ -664,10 +655,10 @@ This section is dedicated to providing valuable resources for learning and maste
-### Back-End Development with JavaScript +### Back-End Development > Here are resources for Javascript in Back end development -### Node.js +#### Node.js @@ -704,10 +695,10 @@ This section is dedicated to providing valuable resources for learning and maste
-### Testing and Debugging +#### Testing and Debugging > Testing is the process of verifying and validating that a software or application is bug-free, meets the technical requirements as guided by its design and development, Debugging is the process of fixing a bug in the software or an application. It can be defined as identifying, analyzing, and removing errors. -### 1. Testing +##### 1. Testing @@ -736,7 +727,7 @@ This section is dedicated to providing valuable resources for learning and maste
-### 2. Debugging +##### 2. Debugging @@ -757,8 +748,8 @@ This section is dedicated to providing valuable resources for learning and maste
-### Mobile Development with JavaScript -> Here are resources for mobile development with JavScript. +### Mobile Development +> Here are resources for mobile development with JavaScript. @@ -925,10 +916,10 @@ Here's the updated table with all resource links added to the Platform/Service c
-### JavaScript Projects +### Projects > Projects which can help you to enhance your development skills and build your resumes. -### Beginner Level Projects +#### Beginner Level Projects @@ -1027,7 +1018,7 @@ Here's the updated table with all resource links added to the Platform/Service c
-### Intermediate Level Projects +#### Intermediate Level Projects @@ -1192,7 +1183,7 @@ Here's the updated table with all resource links added to the Platform/Service c
-### Advance Level Projects +#### Advance Level Projects @@ -1341,7 +1332,7 @@ Here's the revised table: ### Youtube > Here are few popular Youtube channels and Playlists which hekp you to build your JS Mastery -### YouTube Channels for Learning JavaScript +#### YouTube Channels
@@ -1405,7 +1396,7 @@ Here's the revised table:
Resource Name
-### YouTube Playlists for Learning JavaScript +#### YouTube Playlists @@ -1456,7 +1447,7 @@ Here's the revised table: ### Courses > Here are some free and paid courses you may consider -### Free Certification Courses +#### Free Courses
Resource Name
@@ -1505,7 +1496,7 @@ Here's the revised table:
-### Paid Certification Courses +#### Paid Courses @@ -1550,7 +1541,7 @@ Here's the revised table: ### Additional Resources > Additional Resources that you may find helpful -### JavaScript Games +#### Games
Resource Name
@@ -1584,7 +1575,7 @@ Here's the revised table:
-### JavaScript Communities +#### Communities @@ -1620,7 +1611,7 @@ Here's the revised table:
-### JavaScript Documentations +#### Documentations @@ -1641,7 +1632,7 @@ Here's the revised table:
Resource Name
-### JavaScript Books +#### Books @@ -1697,7 +1688,7 @@ Here's the revised table:
-### JavaScript CheatSheets +#### CheatSheets @@ -1746,4 +1737,4 @@ Whether you prefer self-paced learning, structured courses, or interactive platf Remember to practice regularly, engage with communities, and don't hesitate to explore new projects and challenges. -Keep coding and exploring the vast world of JavaScript development! 🚀 \ No newline at end of file +Keep coding and exploring the vast world of JavaScript development! 🚀 diff --git a/Programming Languages/Kotlin/readme.md b/Programming Languages/Kotlin/readme.md index db668774..7c99de23 100644 --- a/Programming Languages/Kotlin/readme.md +++ b/Programming Languages/Kotlin/readme.md @@ -8,24 +8,24 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe ## Table of Contents - [Roadmap](#roadmap) -- [Tutorials](#tutorials) - - [Introduction to Kotlin](#introduction-to-kotlin) +- [Kotlin](#kotlin) + - [Introduction](#introduction) - [Fundamentals](#fundamentals) - - [Functions in Kotlin](#functions-in-kotlin) - - [Kotlin Collections](#kotlin-collections) - - [Object-Oriented Programming (OOP) in Kotlin](#object-oriented-programming-oop-in-kotlin) + - [Functions](#functions) + - [Collections](#collections) + - [Object-Oriented Programming (OOP)](#object-oriented-programming-oop) - [Null Safety](#null-safety) - [Regex & Ranges](#regex--ranges) -- [Data Structures in Kotlin](#data-structures-in-kotlin) -- [Kotlin for Android Development](#kotlin-for-android-development) +- [Data Structures](#data-structures) +- [Android Development](#android-development) - [Architecture](#architecture) - [Jetpack Components](#jetpack-components) -- [Kotlin Coroutines ](#kotlin-coroutines) +- [Kotlin Coroutines](#kotlin-coroutines) - [Kotlin Flow API](#kotlin-flow-api) - [Kotlin In Other Domains](#kotlin-in-other-domains) - [Testing in Kotlin](#testing-in-kotlin) - [Security](#security) -- [Projects in Kotlin](#projects-in-kotlin) +- [Projects](#projects) - [YouTube](#youtube) - [Official Documentations](#official-documentations) - [Books](#books) @@ -53,10 +53,10 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Tutorials +### Kotlin > Lets get started with Kotlin using following resources which will guide you through various aspects of Kotlin, from the basics to advanced topics -### Introduction to Kotlin +#### Introduction @@ -85,7 +85,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Fundamentals +#### Fundamentals @@ -146,7 +146,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Functions in Kotlin +#### Functions @@ -174,7 +174,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
Resource Name
-### Kotlin Collections +#### Collections @@ -204,7 +204,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Object-Oriented Programming (OOP) in Kotlin +#### Object-Oriented Programming (OOP) @@ -286,7 +286,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Null Safety +#### Null Safety @@ -307,7 +307,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Regex & Ranges +#### Regex & Ranges @@ -323,7 +323,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
Resource Name
-### Data Structures in Kotlin +### Data Structures > Covers common data structures such as arrays, linked lists, hash tables, stacks, queues, trees, and graphs, along with their implementation and usage in Kotlin. @@ -361,7 +361,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Kotlin for Android Development +### Android Development > Provides resources and tutorials for using Kotlin in Android app development, including setup, best practices, Jetpack components, coroutines, and more. @@ -621,7 +621,7 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe
-### Projects in Kotlin +### Projects > Here are the list of projects ideas from beginner level to advance level @@ -843,4 +843,4 @@ This list of valuable resources will help you to learn and master Kotlin. Whethe In conclustion, Kotlin is an amazing and versatile language that's gaining popularity fast, especially for Android development. Its concise and expressive syntax makes it a joy to write and read, which means less boilerplate code and more productivity. Kotlin is fully interoperable with Java, so you can use all your favorite Java libraries and frameworks without a hitch. It's also packed with modern features like null safety, which helps prevent those pesky NullPointerExceptions, and coroutines for easy asynchronous programming. The Kotlin community is growing rapidly, offering plenty of resources like tutorials, forums, and documentation to help you out. Whether you're building Android apps, server-side applications, or even exploring new areas like data science, Kotlin is a fantastic tool to have in your arsenal. To get the most out of Kotlin, dive into coding challenges, contribute to open-source projects, and build your own apps to apply what you've learned and keep improving your skills. -Happy Coding!! \ No newline at end of file +Happy Coding!! diff --git a/Programming Languages/NodeJs/readme.md b/Programming Languages/NodeJs/readme.md index 07bf56d7..2e4c9d90 100644 --- a/Programming Languages/NodeJs/readme.md +++ b/Programming Languages/NodeJs/readme.md @@ -13,7 +13,7 @@ These resources are designed to help you build a strong foundation in Node.js an ## Table of Contents - [Roadmap](#roadmap) -- [Tutorials](#tutorials) +- [NodeJS](#nodejs) - [Introduction](#introduction) - [Fundamentals](#fundamentals) - [Asynchronous Programming](#asynchronous-programming) @@ -23,8 +23,8 @@ These resources are designed to help you build a strong foundation in Node.js an - [Authentication and Security](#authentication-and-security) - [Performance Optimization](#performance-optimization) - [Tools and Development Environment](#tools-and-development-environment) - - [IDEs for Node.js](#ides-for-nodejs) - - [Online Editors for Node.js](#online-editors-for-nodejs) + - [IDEs](#ides) + - [Online Editors](#online-editors) - [Node.js Packages and Libraries](#nodejs-packages-and-libraries) - [Utility Libraries](#utility-libraries) - [Web Frameworks](#web-frameworks) @@ -43,24 +43,25 @@ These resources are designed to help you build a strong foundation in Node.js an - [Real-Time Applications](#real-time-applications) - [Internet of Things (IoT)](#internet-of-things-iot) - [Machine Learning with Node.js](#machine-learning-with-nodejs) -- [Node.js Projects](#nodejs-projects) +- [Projects](#projects) - [Beginner Level Projects](#beginner-level-projects) - [Intermediate Level Projects](#intermediate-level-projects) - [Advanced Level Projects](#advanced-level-projects) - [Version Control](#version-control) - [YouTube](#youtube) - - [YouTube Channels to Learn Node.js](#youtube-channels-to-learn-nodejs) - - [YouTube Playlists for Learning Node.js](#youtube-playlists-for-learning-nodejs) + - [YouTube Channels](#youtube-channels) + - [YouTube Playlists](#youtube-playlists) - [Courses](#courses) - - [Free Certification Courses](#free-certification-courses) - - [Paid Certification Courses](#paid-certification-courses) + - [Free Courses](#free-courses) + - [Paid Courses](#paid-courses) - [Additional Resources](#additional-resources) - - [Node.js Communities](#nodejs-communities) - - [Node.js Books](#nodejs-books) + - [Communities](#communities) + - [Books](#books) + - [Cheathseets](#cheatsheets) - [Conclusion](#conclusion) -## Roadmap +### Roadmap > The "Roadmap" section outlines a structured learning path for individuals interested in mastering Node.js development. It serves as a guide to navigate through various stages of learning, starting from foundational concepts to advanced topics.
@@ -78,10 +79,10 @@ These resources are designed to help you build a strong foundation in Node.js an
-## Tutorials +### NodeJS > It covers a wide range of topics, starting from introductory concepts to advanced techniques. The tutorials are structured to cater to learners of all levels, including beginners, intermediate, and advanced users. Topics include understanding the basics of Node.js, asynchronous programming patterns, file system operations, networking, web frameworks like Express.js, database integration, authentication and security, testing and debugging, performance optimization, deployment, and more. -### Introduction +#### Introduction @@ -111,7 +112,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Fundamentals +#### Fundamentals @@ -140,7 +141,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Asynchronous Programming +#### Asynchronous Programming @@ -173,7 +174,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### File System +#### File System @@ -206,7 +207,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Networking +#### Networking @@ -240,7 +241,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Database Integration +#### Database Integration @@ -273,7 +274,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Authentication and Security +#### Authentication and Security @@ -306,7 +307,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Performance Optimization +#### Performance Optimization @@ -331,10 +332,10 @@ These resources are designed to help you build a strong foundation in Node.js an
-## Tools and Development Environment +### Tools and Development Environment > This section covers the essential tools and environments required for Node.js development. It includes information on IDEs tailored for Node.js, online editors suitable for quick coding tasks, version control systems for managing code changes, and containerization technologies for efficient deployment and scaling of Node.js applications. -### IDEs for Node.js +#### IDEs @@ -363,7 +364,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Online Editors for Node.js +#### Online Editors @@ -392,10 +393,10 @@ These resources are designed to help you build a strong foundation in Node.js an
-## Node.js Packages and Libraries +### Node.js Packages and Libraries > It covers various categories of libraries, including utility libraries for common tasks, web frameworks for building web applications, database libraries for interacting with databases, testing libraries for ensuring code quality, and security libraries for enhancing application security -### Utility Libraries +#### Utility Libraries @@ -423,7 +424,7 @@ These resources are designed to help you build a strong foundation in Node.js an
Resource Name
-### Web Frameworks +#### Web Frameworks @@ -452,7 +453,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Database Libraries +#### Database Libraries @@ -477,7 +478,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Testing Libraries +#### Testing Libraries @@ -502,7 +503,7 @@ These resources are designed to help you build a strong foundation in Node.js an
-### Security Libraries +#### Security Libraries @@ -531,11 +532,11 @@ These resources are designed to help you build a strong foundation in Node.js an
-## Advanced Topics +### Advanced Topics > Exploring advanced Node.js concepts such as streams, clusters, child processes, and worker threads. Understanding design patterns, scalability, and real-time communication. -### Microservices +#### Microservices @@ -588,7 +589,7 @@ Understanding design patterns, scalability, and real-time communication.
-### GraphQL +#### GraphQL @@ -621,7 +622,7 @@ Understanding design patterns, scalability, and real-time communication.
-### Serverless Architecture +#### Serverless Architecture @@ -650,7 +651,7 @@ Understanding design patterns, scalability, and real-time communication.
-### Containerization and Orchestration +#### Containerization and Orchestration @@ -703,7 +704,7 @@ Understanding design patterns, scalability, and real-time communication.
-### Memory Management +#### Memory Management @@ -728,7 +729,7 @@ Understanding design patterns, scalability, and real-time communication.
-### Reflection +#### Reflection @@ -757,7 +758,7 @@ Understanding design patterns, scalability, and real-time communication.
-### Interoperability +#### Interoperability @@ -790,11 +791,11 @@ Understanding design patterns, scalability, and real-time communication.
-## Specialized Topics +### Specialized Topics > Building real-time applications with WebSocket and Socket.io. Integrating Node.js with IoT devices, machine learning models, and other technologies. -### Real-Time Applications +#### Real-Time Applications @@ -827,7 +828,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-### Internet of Things (IoT) +#### Internet of Things (IoT) @@ -856,7 +857,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-### Machine Learning with Node.js +#### Machine Learning with Node.js @@ -885,10 +886,10 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-## Node.js Projects +### Projects > Beginner, intermediate, and advanced level projects for hands-on learning.Building practical applications to reinforce Node.js concepts and skills. -### Beginner Level Projects +#### Beginner Level Projects @@ -917,7 +918,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-### Intermediate Level Projects +#### Intermediate Level Projects @@ -938,7 +939,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-### Advanced Level Projects +#### Advanced Level Projects @@ -959,7 +960,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-## Version Control +### Version Control > Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are software tools that help software teams manage changes to source code over time. @@ -994,10 +995,10 @@ Integrating Node.js with IoT devices, machine learning models, and other technol -## Youtube +### Youtube > Recommended YouTube channels and playlists for learning Node.js.Tutorials, guides, and walkthroughs for beginners to advanced users. -### YouTube Channels to Learn Node.js +#### YouTube Channels @@ -1022,7 +1023,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-### YouTube Playlists for Learning Node.js +#### YouTube Playlists @@ -1047,10 +1048,10 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-## Courses +### Courses > Free and paid certification courses for Node.js development.Enhancing skills and validating expertise in Node.js through certification programs. -## Free Certification Courses +#### Free Courses @@ -1074,7 +1075,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol -### Paid Certification Courses +#### Paid Courses
This course by upGrad covers Node.js basics, including setting up a development environment, working with modules, and building simple web applications.
@@ -1100,11 +1101,11 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
-## Additional Resources +### Additional Resources > Node.js communities, forums, and online platforms for networking and support.Books, blogs, and documentation for further learning and reference. -### Node.js Communities +#### Communities @@ -1124,7 +1125,7 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
The r/node subreddit is a community-driven platform where Node.js enthusiasts share news, tutorials, articles, and engage in discussions related to Node.js development.
-### Node.js Books +#### Books @@ -1145,6 +1146,39 @@ Integrating Node.js with IoT devices, machine learning models, and other technol
+### Cheatsheets + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Introduction to Node.js CheatsheetA cheatsheet providing an introduction to Node.js.
Node JS Cheat Sheet + PDFA Node.js cheat sheet with a downloadable PDF version.
NodeJS Cheat SheetA comprehensive Node.js cheat sheet.
The Ultimate Node.js Cheat Sheet for DevelopersAn ultimate cheat sheet for Node.js developers.
Node.js CheatsheetA cheatsheet providing essential information about Node.js.
Node.js Cheat SheetA Node.js cheat sheet provided on LinkedIn.
+ ## Conclusion In conclusion, Node.js presents an innovative and versatile platform for building scalable, high-performance web applications. Its event-driven, non-blocking I/O diff --git a/Programming Languages/React JS/readme.md b/Programming Languages/React JS/readme.md index f96a38c6..36bda4e1 100644 --- a/Programming Languages/React JS/readme.md +++ b/Programming Languages/React JS/readme.md @@ -46,6 +46,7 @@ Whether you're a beginner looking to get started with React.js or an experienced - [Books](#books) - [Free](#free-books) - [Paid](#paid-books) +- [React Cheatsheets]() - [Official Documentation](#official-documentation) - [Conclusion](#conclusion) @@ -772,6 +773,45 @@ Whether you're a beginner looking to get started with React.js or an experienced + +### React Cheatsheets +> Here are some react cheatsheets which you may refer. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
React.js cheatsheetA comprehensive cheatsheet for React.js.
GFG - React Cheat SheetA React cheat sheet provided by GeeksforGeeks.
React.js Cheatsheet – The Ultimate GuideAn ultimate guide to React.js cheatsheet.
Learn React: JSX CheatsheetA cheatsheet specifically focused on JSX in React.
React CheatSheetA React cheatsheet for quick reference.
React JS - Cheat SheetsA collection of cheat sheets for React.js.
Ultimate React.js Cheat SheetAn ultimate cheat sheet for React.js.
+ ### Official Documentation > These Official Documentation teaches you all the topics in depth without going to any third party tutorials. diff --git a/Programming Languages/SQL/readme.md b/Programming Languages/SQL/readme.md new file mode 100644 index 00000000..c75586b3 --- /dev/null +++ b/Programming Languages/SQL/readme.md @@ -0,0 +1,1036 @@ +# SQL + +SQL (Structured Query Language) is a standardized programming language designed for managing and manipulating relational databases. It is used to perform various operations on the data stored in these databases, such as querying, updating, inserting, and deleting data. SQL is also used for creating and modifying the structure of database systems. + +SQL is widely used in various database systems such as MySQL, PostgreSQL, Microsoft SQL Server, Oracle Database, and SQLite. Despite slight variations in syntax and features among these systems, the core SQL commands and principles remain consistent. + +This section is a curated collection of valuable SQL resources for absolute beginner to advance, contributed by amazing contributors. Here, you will find a wide range of materials and information about SQL and Databases. + + + +## Table of Contents + +- [Roadmap](#roadmap) + - [SQL Roadmap I](#roadmap) + - [SQL Developer Roadmap II](#roadmap) +- [Tutorials](#tutorials) + - [Introduction](#introduction) + - [Data Definition Language (DDL)](#data-definition-language-ddl) + - [Data Query Language (DQL)](#data-query-language-dql) + - [Data Manipulation Language (DML)](#data-manipulation-language-dml) + - [Tables in SQL](#tables-in-sql) + - [SQL Constraints](#sql-constraints) + - [SQL Clauses](#sql-clauses) + - [Aggregate Functions](#aggregate-functions) +- [Advanced SQL]() + - [Subqueries and Nested Queries](#subqueries-and-nested-queries) + - [Joins](#joins) + - [Set Operations](#set-operations) +- [Advanced Data Management](#advanced-data-management) + - [Indexes](#indexes) + - [Views](#views) + - [Transactions](#transactions) +- [Different SQL Databases]() + - [MySQL](#mysql) + - [PostgreSQL](#postgresql) + - [SQLite](#sqlite) + - [SQL Server](#sql-server) + - [Oracle](#oracle) +- [SQL Projects](#sql-projects) + - [Beginner level projects](#beginner-level-projects) + - [Intermediate level projects](#intermediate-level-projects) + - [Advance level projects](#advance-level-projects) +- [Courses](#courses) + - [Free Courses](#free-courses) + - [Paid Courses](#paid-courses) +- [Books](#books) +- [YouTube](#youtube) +- [Conclusion](#conclusion) + +### Roadmap +> An overview of the structured learning path for mastering SQL + + + + + + + + + + + + + + +
Resource NameDescription
SQL Roadmap IA detailed step by step comprehensive guide to become a SQL developer.
SQL Developer Roadmap IIIt covers fundamental MySQL concepts, progressing through advanced topics, featuring SQL query challenges and interview prep materials, ensuring a comprehensive learning journey for all levels of expertise..
+ +### Tutorials +> A section containing tutorials covering various SQL concepts and techniques. + +### Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
What is Database?An introduction to the concept of databases.
Relational vs. Non-relational DatabasesComparison between relational and non-relational databases.
SQL vs NoSQL DatabasesExplains the differences between SQL and NoSQL databases.
What is SQL?An overview of SQL, its features, and uses.
History of SQLA historical perspective on the development of SQL.
Getting Started with SQLIntroduction to SQL, including installation and basic commands.
SQL Syntax and StructureDetailed guide on SQL syntax and structure.
+ +### Data Definition Language (DDL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Data Definition Language (DDL)An overview of DDL commands in SQL.
SQL CREATE DATABASE StatementGuide on using the CREATE DATABASE statement in SQL.
SQL CREATE TABLE StatementInstructions on how to create tables using SQL.
SQL | CREATE DatabaseDetailed explanation on creating databases in SQL.
SQL | CREATE TABLEStep-by-step guide on creating tables in SQL.
SQL ALTER TABLE StatementTutorial on altering tables in SQL.
SQL | ALTER (ADD, DROP, MODIFY)Instructions on using the ALTER statement to add, drop, or modify columns.
SQL DROP DATABASE StatementGuide on dropping databases in SQL.
SQL DROP TABLE StatementInstructions on how to drop tables using SQL.
SQL | DROPExplanation of the DROP command in SQL.
+ +### Data Query Language (DQL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL SELECTExplanation and examples of the SQL SELECT statement.
SQL AND, OR, and NOT OperatorsGuide on using the AND, OR, and NOT operators in SQL queries.
SQL SELECT DISTINCTExplanation and examples of the SQL SELECT DISTINCT statement.
SQL SELECT AS AliasGuide on using aliases with the SQL SELECT statement.
SQL SELECT LIMIT, TOP, FETCH FIRSTExplanation and examples of limiting results in SQL queries.
SQL IN and NOT IN OperatorsGuide on using the IN and NOT IN operators in SQL queries.
SQL BETWEEN OperatorExplanation and examples of the SQL BETWEEN operator.
SQL IS NULL and IS NOT NULLGuide on using the IS NULL and IS NOT NULL operators in SQL queries.
+ +### Data Manipulation Language (DML) + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Data Manipulation Language (DML) CommandsAn overview of DML commands in SQL.
SQL | INSERT INTO StatementExplanation of the INSERT INTO statement in SQL.
SQL | UPDATE StatementGuide on using the UPDATE statement in SQL.
SQL | DELETE and TRUNCATE StatementTutorial on using the DELETE and TRUNCATE statements in SQL.
+ + +### Tables in SQL + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL CREATE TABLEGuide on how to create tables in SQL.
SQL DROP TABLEExplanation of the SQL statement to drop tables.
SQL Query to Copy, Duplicate or Backup TableTutorial on copying, duplicating, or backing up tables in SQL.
What is Temporary Table in SQL?Explanation of temporary tables in SQL and their usage.
SQL ALTER TABLEGuide on how to alter tables in SQL, including adding, dropping, and modifying columns.
+ +### SQL Constraints + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL NOT NULL ConstraintExplanation and examples of the SQL NOT NULL constraint.
SQL UNIQUE ConstraintGuide on using the SQL UNIQUE constraint to enforce uniqueness in columns.
SQL PRIMARY KEY ConstraintExplanation and examples of the SQL PRIMARY KEY constraint.
SQL Foreign Key ConstraintGuide on using the SQL FOREIGN KEY constraint to enforce referential integrity.
Composite Key in SQLExplanation and examples of composite keys in SQL.
SQL ALTERNATE KEYGuide on using the SQL ALTERNATE KEY constraint.
SQL CHECK ConstraintExplanation and examples of the SQL CHECK constraint.
SQL DEFAULT ConstraintGuide on using the SQL DEFAULT constraint.
+ +### SQL Clauses + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL WHERE ClauseExplanation and examples of using the SQL WHERE clause to filter rows.
SQL WITH ClauseGuide on using the SQL WITH clause for defining common table expressions.
SQL HAVING Clause with ExamplesExplanation and examples of using the SQL HAVING clause with GROUP BY.
SQL ORDER BYGuide on using the SQL ORDER BY clause to sort query results.
SQL GROUP BYExplanation and examples of using the SQL GROUP BY clause to group rows.
SQL LIMIT ClauseGuide on using the SQL LIMIT clause to limit the number of rows returned by a query.
+ + +### Aggregate Functions + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Aggregate Functions in SQLOverview of aggregate functions in SQL and their usage.
COUNT()Explanation and examples of using the COUNT() function to count the number of rows in a result set.
SUM() and AVG()Guide on using the SUM() and AVG() functions to calculate the sum and average of values in a column, respectively.
MIN() and MAX()Explanation and examples of using the MIN() and MAX() functions to find the minimum and maximum values in a column, respectively.
+ + +### Advance SQL +> Advanced SQL concepts like Subqueries and Nested Queries, Joins, and Set Operations. + +### Subqueries and Nested Queries + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Subqueries in SQLOverview of subqueries in SQL, explaining their syntax and usage.
Types of Subqueries in SQLExplanation of different types of subqueries in SQL, including scalar, column, row, and table subqueries.
Correlated SubqueryGuide on correlated subqueries in SQL, discussing how they are different from regular subqueries and providing examples.
+ +### Joins + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL JOINSOverview of SQL joins, explaining their purpose and usage in database queries.
INNER JOINExplanation of the INNER JOIN operation in SQL, which returns only the rows that have matching values in both tables.
LEFT JOINGuide on the LEFT JOIN operation in SQL, which returns all rows from the left table and matching rows from the right table.
RIGHT JOINExplanation of the RIGHT JOIN operation in SQL, which returns all rows from the right table and matching rows from the left table.
FULL JOINOverview of the FULL JOIN operation in SQL, which returns all rows from both tables, with NULLs in places where there is no match.
CROSS JOINGuide on the CROSS JOIN operation in SQL, which returns the Cartesian product of the two tables involved.
Self JoinExplanation of the Self Join operation in SQL, which joins a table with itself to perform comparisons within the same table.
+ +### Set Operations + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Set Operations in SQLAn overview of set operations in SQL, explaining their purpose and usage in database queries.
UNIONExplanation of the UNION operator in SQL, which combines the results of two or more SELECT statements without duplicates.
UNION ALLGuide on the UNION ALL operator in SQL, which combines the results of two or more SELECT statements including duplicates.
INTERSECTExplanation of the INTERSECT clause in SQL, which returns the intersection of the results of two or more SELECT statements.
EXCEPTGuide on the EXCEPT clause in SQL, which returns the difference between the results of two SELECT statements.
+ +### Advanced Data Management +> Understanding the concept of indexes for optimizing query performance, Exploring views as virtual tables based on the result set of a SELECT query and Understanding transactions and their role in maintaining data consistency. + +### Indexes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL IndexesAn introduction to SQL indexes, explaining their purpose and how they are used to optimize database queries.
SQL CREATE INDEX StatementGuide on how to create an index in SQL, detailing the syntax and usage of the CREATE INDEX statement.
SQL DROP INDEX StatementExplanation of the DROP INDEX statement in SQL, describing how to remove an index from a database table.
Difference Between Clustered and Non-Clustered IndexComparison of clustered and non-clustered indexes in SQL, highlighting their differences and use cases.
How Index Works in SQL?An explanation of how indexes work in SQL, covering the internal mechanisms that make indexing an effective tool for query optimization.
Composite Index in SQLGuide on composite indexes in SQL, which are indexes on multiple columns, explaining their advantages and usage scenarios.
B Tree IndexAn in-depth look at B-Tree indexes in SQL, describing their structure and how they improve search efficiency.
Bitmap IndexAn overview of bitmap indexes in SQL, including their use cases and benefits in specific database environments.
+ +### Views + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Views in SQLAn introduction to views in SQL, explaining their purpose, benefits, and how they can be used to simplify complex queries.
Creating ViewsGuide on creating views in SQL, detailing the syntax and examples for using the CREATE VIEW statement.
Updating ViewsExplanation of how to update views in SQL, describing the conditions and methods for modifying existing views.
Dropping ViewsInstructions on how to drop views in SQL, providing the syntax and examples for using the DROP VIEW statement.
Renaming ViewsGuide on renaming views in SQL, describing the process and syntax for changing the name of an existing view.
+ +### Transactions + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL TransactionsAn overview of SQL transactions, explaining their purpose, properties, and how they ensure data integrity.
BEGIN TRANSACTIONDetails the BEGIN TRANSACTION statement in SQL, which marks the start of a database transaction.
COMMITExplains the COMMIT statement in SQL, which is used to save the changes made during a transaction to the database.
ROLLBACKGuide on the ROLLBACK statement in SQL, which is used to undo changes made during the current transaction.
SavepointsExplanation of savepoints in SQL, which allow setting points within a transaction to which you can later roll back.
+ +### Different SQL Databases +> Overview of various SQL databases, their features, and syntax. + +### MySQL + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
MySQL TutorialA comprehensive tutorial covering the basics and advanced topics of MySQL.
Installation and SetupOfficial MySQL documentation for installation and setup procedures.
Specific FeaturesAn overview of the specific features offered by MySQL.
MySQL VersionsInformation on different MySQL versions and their respective features.
+ +### PostgreSQL + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
PostgreSQL TutorialA comprehensive tutorial covering the basics and advanced topics of PostgreSQL.
Installation and SetupStep-by-step guide to installing and setting up PostgreSQL.
Specific FeaturesAn overview of the specific features offered by PostgreSQL.
SyntaxA detailed guide on the syntax used in PostgreSQL.
+ +### SQLite + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQLite TutorialA comprehensive tutorial covering SQLite from basics to advanced topics.
SQL vs SQLiteComparison between SQL and SQLite, highlighting their differences and use cases.
HistoryAn overview of the history and evolution of SQLite.
Installation and SetupStep-by-step guide to installing and setting up SQLite.
Specific FeaturesAn exploration of the specific features offered by SQLite.
SyntaxA detailed guide on the syntax used in SQLite.
+ +### SQL Server + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL Server TutorialA comprehensive tutorial covering SQL Server, including its features and functionalities.
Installation and SetupGuidelines for installing and setting up SQL Server on various platforms.
SQL Server Management StudioAn introduction to SQL Server Management Studio (SSMS) for managing SQL Server databases.
+ +### Oracle + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Oracle TutorialA comprehensive tutorial covering Oracle database concepts, SQL, PL/SQL, and more.
Installation and SetupDocumentation for installing and configuring Oracle Database, including Advanced Management Console.
Specific Features and SyntaxAn overview of specific features and syntax in Oracle Database.
+ +### SQL Projects +> Beginner, intermediate, and advanced-level projects to apply SQL skills in real-world scenarios. + +### Beginner level projects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Employee Management SystemExample employee management system project including SQL scripts for database creation and sample data.
Online Library Management SystemImplementation of an online library management system in Java and SQL, including database schema and sample queries.
Student Grade TrackerWeb application for managing student grades, implemented using HTML, CSS, JavaScript, PHP, and MySQL.
Inventory Management SystemA simple inventory management system implemented in PHP and MySQL, including database schema and sample data.
Expense TrackerExpenditure tracker web application implemented in PHP and MySQL.
Recipe DatabaseWeb application to store and search recipes, implemented using HTML, CSS, JavaScript, PHP, and MySQL.
Customer Relationship Management (CRM) SystemCustomer relationship management system implemented in PHP and MySQL.
Fitness TrackerFitness tracker web application implemented in HTML, CSS, JavaScript, PHP, and MySQL.
+ +### Intermediate Level Projects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
E-commerce PlatformA comprehensive e-commerce platform project implemented using React, Redux, Express, and MongoDB. You can adapt the database schema and queries to use SQL instead of MongoDB.
Hospital Management SystemCode for a hospital management system implemented in Java and MySQL. Explore the database schema and SQL queries used in this project.
Social Media AnalyticsCode for a social media dashboard project implemented in React, Redux, and Firebase. Adapt the database schema and queries to use SQL instead of Firebase.
Financial Portfolio ManagementCode for a financial portfolio management system implemented in Python. Create a SQL database to store portfolio data and implement SQL queries for analysis.
Travel Booking SystemA collection of projects related to tourism and travel, including travel booking systems. Explore different travel booking system projects and adapt them to your requirements using SQL.
Online Learning PlatformCode for a learning tracker web application implemented in React and Redux. Modify the application to use a SQL database instead of localStorage for data storage.
Inventory Forecasting SystemAzure Quickstart Templates, including templates for inventory forecasting systems. Adapt these templates to use SQL databases for inventory management and forecasting.
+ +### Advance Level Projects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Real Estate Management SystemThis project is a comprehensive real estate management system implemented using ASP.NET Core, Entity Framework Core, and SQL Server. It includes features for property listings, user management, and financial transactions.
Healthcare Data Analysis PlatformThis project is a healthcare data analysis platform implemented in Python with a PostgreSQL database. It includes modules for patient management, medical records analysis, and predictive modeling.
Supply Chain Management SystemSamarth ERP is an open-source supply chain management system implemented using Django and PostgreSQL. It includes modules for inventory management, order processing, and logistics tracking.
Financial Risk Assessment PlatformThis project is a financial risk assessment platform implemented in Python with a MySQL database. It includes modules for data preprocessing, feature engineering, and risk prediction using machine learning algorithms.
Human Resources Information System (HRIS)HRIS is an open-source human resources information system implemented using Java, Spring Boot, and MySQL. It includes modules for employee management, payroll processing, and performance evaluation.
Customer Churn Prediction SystemThis project is a customer churn prediction system implemented in Python with a SQLite database. It includes modules for data preprocessing, model training, and churn prediction using machine learning techniques.
Smart City Traffic Management SystemThis project is a smart city traffic management system implemented using Java, Spring Boot, and MySQL. It includes modules for traffic monitoring, congestion detection, and route optimization.
Energy Consumption Forecasting PlatformThis project is an energy consumption forecasting platform implemented in Python with a PostgreSQL database. It includes modules for data preprocessing, model training, and forecasting using time series analysis.
+ +### Courses +> Free and paid courses available for learning SQL. + +### Free Courses + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL for BeginnersA beginner-friendly SQL course offered by DataCamp.
SQL Tutorial for BeginnersA comprehensive SQL tutorial for beginners provided by W3Schools.
Learn SQLAn interactive SQL course for beginners offered by Codecademy.
Introduction to Databases and SQL QueryingAn introductory course to databases and SQL querying provided by Khan Academy.
SQL for Data ScienceA free course by IBM on Coursera covering SQL fundamentals for data science.
SQL Essential TrainingA comprehensive SQL essential training provided by LinkedIn Learning.
SQL Server FundamentalsA beginner-level course on SQL Server fundamentals offered by Microsoft Virtual Academy.
+ +### Paid Courses + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL for Data ScienceThis course by University of California, Davis on Coursera covers SQL fundamentals for data science.
The Complete SQL Bootcamp 2021: Go from Zero to HeroThis Udemy course provides a comprehensive guide to SQL, suitable for beginners to advanced learners.
SQL – MySQL for Data Analytics and Business IntelligenceLearn SQL with a focus on MySQL for data analytics and business intelligence.
SQL - The Comprehensive BootcampA thorough bootcamp-style course covering SQL concepts.
SQL for Beginners: Learn SQL using MySQL and Database DesignAn introductory course to SQL using MySQL with a focus on database design.
Advanced SQL for Data ScientistsThis course by University of California, Davis on Coursera covers advanced SQL concepts for data scientists.
SQL & Database Design A-Z™: Learn MS SQL Server + PostgreSQLA comprehensive course covering SQL and database design using MS SQL Server and PostgreSQL.
+ + +### Books +> Recommended books for further reading on SQL concepts and techniques. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
SQL in 10 Minutes, Sams Teach YourselfA quick guide to learn SQL in a short amount of time.
Learning SQLComprehensive introduction to SQL.
SQL For DummiesA beginner-friendly guide to understanding SQL.
Head First SQL: Your Brain on SQL -- A Learner's GuideA visually rich and interactive way to learn SQL.
SQL Cookbook: Query Solutions and Techniques for Database DevelopersA collection of SQL query solutions and techniques.
The Language of SQLAn easy-to-understand introduction to SQL.
SQL Performance ExplainedGuide to understanding SQL performance optimization.
SQL Practice Problems: 57 beginning, intermediate, and advanced challenges for you to solve using a “learn-by-doing” approachA practical approach to learning SQL through problem-solving.
SQL: The Ultimate Beginners Guide: Learn SQL TodayA beginner's guide to learning SQL.
Effective SQL: 61 Specific Ways to Write Better SQLTips and techniques for writing better SQL.
SQL Antipatterns: Avoiding the Pitfalls of Database ProgrammingHow to avoid common SQL programming mistakes.
Pro SQL Server InternalsIn-depth look at SQL Server internals.
SQL Pocket Guide: A Guide to SQL UsageA handy guide to SQL usage.
SQL for Data Scientists: A Beginner’s Guide for Building Datasets for AnalysisSQL guide tailored for data scientists.
SQL and Relational Theory: How to Write Accurate SQL CodeExplores relational theory and writing accurate SQL code.
The Art of SQLAdvanced techniques and best practices for SQL.
High Performance MySQL: Optimization, Backups, and ReplicationGuide to MySQL performance, optimization, and replication.
T-SQL FundamentalsIntroduction to T-SQL fundamentals.
SQL Queries for Mere Mortals: A Hands-On Guide to Data Manipulation in SQLHands-on guide to SQL queries and data manipulation.
Expert Oracle SQL: Optimization, Deployment, and StatisticsAdvanced guide to Oracle SQL optimization.
SQL and NoSQL: The Basics and the DifferencesOverview of the basics and differences between SQL and NoSQL.
Murach's MySQLComprehensive guide to MySQL.
SQL Server 2019 Administration Inside OutDetailed guide to SQL Server 2019 administration.
SQL Tuning: Generating Optimal Execution PlansGuide to SQL tuning and execution plans.
SQL: The Complete ReferenceComprehensive reference guide for SQL.
+ +### YouTube +> Curated playlists and channels offering tutorials and lectures on SQL. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
The Net Ninja - SQL Tutorial for BeginnersA beginner-friendly playlist that covers SQL fundamentals, including creating databases, tables, and basic queries.
FreeCodeCamp.org - SQL Full CourseThis comprehensive 4-hour tutorial covers the basics of SQL, including CRUD operations, joins, and database design.
Traversy Media - SQL Crash CourseA concise crash course on SQL that covers the essential topics to get you started quickly.
Kudvenkat - SQL Server TutorialA detailed tutorial series that covers SQL Server, from basic to advanced topics, including stored procedures and triggers.
Edureka - SQL for BeginnersA comprehensive full-course video by Edureka, covering SQL basics, advanced queries, and performance optimization techniques.
Great Learning - SQL Tutorial for BeginnersA detailed tutorial for beginners to learn SQL syntax, DML, DDL, and more.
CodeWithHarry - SQL in HindiA comprehensive SQL tutorial series in Hindi, covering all essential topics for beginners.
MySQL - MySQL 8.0 FundamentalsAn official MySQL playlist covering the fundamentals of MySQL 8.0, including installation, configuration, and basic queries.
Simplilearn - SQL for BeginnersA comprehensive 8-hour tutorial by Simplilearn that covers SQL basics, advanced queries, and database design.
Programming with Mosh - SQL Tutorial - Full Database Course for BeginnersA full-length tutorial that teaches SQL from scratch, including database design, table creation, and query writing.
+ + +## Conclusion + +Mastering SQL involves understanding its syntax, concepts, and best practices. These resources provides a structured approach to guide you through the learning process, starting from the basics and progressing to advanced topics. + + By following these resources you will develop a solid foundation in SQL, enabling you to efficiently manage and analyze data in relational databases. + + Happy learning!! \ No newline at end of file diff --git a/Programming Languages/VueJs/readme.md b/Programming Languages/VueJs/readme.md index 321681a2..0a3b075b 100644 --- a/Programming Languages/VueJs/readme.md +++ b/Programming Languages/VueJs/readme.md @@ -54,6 +54,7 @@ deepen your expertise, the following sections provide tutorials, tools, best pra - [Additional Resources](#additional-resources) - [Vue.js Communities](#vuejs-communities) - [Vue.js Books](#vuejs-books) + - [Vue.js Cheatsheets](#vuejs-cheatsheets) - [Conclusion](#conclusion) @@ -1024,6 +1025,41 @@ deepen your expertise, the following sections provide tutorials, tools, best pra + +### Vue.js Cheatsheets + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Vue.js cheatsheetA cheatsheet for Vue.js.
Get the Ultimate Vue Cheat SheetThe ultimate cheat sheet for Vue.js provided by Vue Mastery.
The Ultimate Vue.js Cheat SheetAn extensive Vue.js cheat sheet covering various aspects.
Vue cheat sheet 3 (advanced)An advanced Vue.js cheat sheet.
Vue.js Cheat Sheet.pdfA downloadable PDF version of the Vue.js cheat sheet.
VueJS - Cheat SheetsCheat sheets for Vue.js.
+ + ## Conclusion Vue.js documentation provides a comprehensive guide for developers to learn and master Vue.js, a progressive JavaScript framework for building user interfaces. diff --git a/Programming Languages/XML/readme.md b/Programming Languages/XML/readme.md new file mode 100644 index 00000000..8b091228 --- /dev/null +++ b/Programming Languages/XML/readme.md @@ -0,0 +1,748 @@ +# XML + +XML stands for Extensible Markup Language and is a text-based markup language derived from Standard Generalized Markup Language (SGML). Extensible Markup Language (XML) lets you define and store data in a shareable manner. XML supports information exchange between computer systems such as websites, databases, and third-party applications. Predefined rules make it easy to transmit data as XML files over any network because the recipient can use those rules to read the data accurately and efficiently. + +These resources are designed for beginners and professionals.Each of these sections contain related topics with simple and useful resources. + + + +## Table of Contents + +- [Roadmap](#roadmap) + - [XML Roadmap I](#roadmap) + - [XML Roadmap II](#roadmap) +- [Tutorials](#tutorials) + - [Introduction](#introduction) + - [XML Validation](#xml-validation) + - [XML Advance](#xml-advance) + - [XML DOM](#xml-dom) + - [XML XPath](#xml-xpath) + - [XML XSLT](#xml-xslt) + - [XML XQuery](#xml-xquery) +- [Tools](#tools) +- [XML in Programming Languages](#xml-in-programming-languages) +- [XML Security](#xml-security) +- [Practical XML Applications](#practical-xml-applications) +- [Books](#books) +- [Youtube Videos](#youtube-videos) +- [Courses](#courses) +- [Online Platforms](#online-platforms) +- [Conclusion](#conclusion) + + +### Roadmap +> Explore the development path and milestones of XML through informative roadmaps. + + + + + + + + + + + + + + +
Resource NameDescription
XML Roadmap IAn overview of XML, including key concepts and components, provided by Oracle.
XML Roadmap IIA comprehensive XML roadmap from W3C, covering various XML security specifications and future directions.
+ + +### Tutorials +> Comprehensive tutorials covering XML basics, advanced concepts, and practical applications. + +### Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
What is XML?An introduction to XML, explaining what it is and its core concepts.
History and Evolution of XMLA brief history of XML and its evolution as a web standard.
XML FeaturesOverview of XML features and advantages.
XML ExampleA simple example of XML to illustrate its structure and syntax.
Why is XML important?An explanation of the importance of XML in modern computing.
What are the benefits of using XML?A detailed look at the benefits of using XML.
XML - SyntaxDetails on the syntax rules of XML.
XML vs. HTMLComparison between XML and HTML.
XML TechnologiesAn overview of technologies related to XML.
XML - DocumentsExplanation of XML documents and their structure.
XML - DeclarationDetails on the XML declaration and its components.
XML - TagsExplanation of XML tags and their usage.
XML - ElementsOverview of XML elements and their structure.
XML AttributesDetails on using attributes in XML.
XML CommentsExplanation of how to add comments in XML documents.
XML TreeIntroduction to the XML tree structure and its components.
+ + +### XML Validation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML ValidationAn explanation of XML validation and how to validate XML documents.
XML DTDOverview and usage of Document Type Definition (DTD) in XML.
XML CSSIntroduction to using Cascading Style Sheets (CSS) with XML documents.
XML SchemaExplanation of XML Schema and its role in defining the structure of XML documents.
DTD vs XSDComparison between Document Type Definition (DTD) and XML Schema (XSD) in XML validation.
CDATA vs PCDATADifference between CDATA and PCDATA sections in XML documents.
+ + +### XML Advance + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML ParsersAn overview of XML parsers and their usage in processing XML documents.
XML DOMIntroduction to the XML Document Object Model (DOM) for manipulating XML documents.
XML DatabaseExplanation of XML databases and their role in storing and managing XML data.
XML NamespacesOverview of XML namespaces and their importance in avoiding naming conflicts in XML documents.
+ +### XML DOM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
DOM IntroductionIntroduction to the Document Object Model (DOM) for XML, explaining its purpose and structure.
DOM NodesOverview of DOM nodes in XML, including different types of nodes and their properties.
DOM AccessingExplanation of how to access DOM nodes in XML documents using various methods.
DOM Node InfoInformation about DOM node properties and attributes in XML.
DOM Node ListExplanation of DOM node lists and how to work with them in XML DOM manipulation.
DOM TraversingGuide on traversing DOM nodes in XML documents to access and manipulate their content.
DOM NavigatingInstructions on navigating through DOM nodes in XML DOM manipulation.
DOM Get ValuesMethods for retrieving values from DOM nodes in XML documents.
DOM Change NodesHow to change or modify DOM nodes in XML documents using DOM manipulation.
DOM Remove NodesInstructions for removing DOM nodes from XML documents using DOM manipulation techniques.
DOM Replace NodesMethods for replacing DOM nodes with new nodes in XML DOM manipulation.
DOM Create NodesHow to create new DOM nodes in XML documents using DOM manipulation techniques.
DOM Add NodesAdding new DOM nodes to XML documents using DOM manipulation methods.
DOM Clone NodesInstructions for cloning DOM nodes in XML documents using DOM manipulation.
DOM ExamplesExamples demonstrating various DOM manipulation techniques in XML documents.
+ + +### XML XPath + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XPath IntroductionAn introduction to XPath, explaining its purpose and basic concepts.
XPath NodesInformation about XPath nodes and node types used in XPath expressions.
XPath SyntaxExplanation of XPath syntax for selecting elements and attributes in XML documents.
XPath AxesOverview of XPath axes for navigating through the hierarchical structure of XML documents.
XPath OperatorsExplanation of XPath operators used for comparing values and filtering nodes in XML documents.
XPath ExamplesExamples demonstrating the usage of XPath expressions to select specific elements or attributes in XML documents.
+ + +### XML XSLT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XSLT IntroductionAn introduction to XSLT (Extensible Stylesheet Language Transformations) and its role in XML document processing.
XSL LanguagesOverview of different XSL languages such as XSLT, XPath, and XSL-FO, used for styling and transforming XML documents.
XSLT TransformExplanation of XSLT transformation process for converting XML documents into other formats or structures.
XSLT ApplyUsage of XSLT apply-templates instruction for applying templates to specific nodes in XML documents.
XSLT on the ClientOverview of client-side XSLT processing and its benefits in web development.
XSLT on the ServerExplanation of server-side XSLT processing and its applications in generating dynamic web content.
XSLT Edit XMLGuide on editing XML documents using XSLT to modify their structure or content.
XSLT ExamplesCollection of examples demonstrating various XSLT transformations and techniques.
+ +### XML XQuery + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XQuery IntroductionAn introduction to XQuery, a query and functional programming language designed for querying and transforming XML data.
XQuery ExampleAn example illustrating the usage of XQuery to retrieve and manipulate XML data.
XQuery FLWORExplanation of FLWOR (For, Let, Where, Order by, Return) expression used in XQuery for data retrieval and manipulation.
XQuery HTMLUsage of XQuery FLWOR expression to generate HTML output from XML data.
XQuery TermsGlossary of terms commonly used in XQuery syntax and expressions.
XQuery SyntaxOverview of XQuery syntax and its components for querying and transforming XML data.
XQuery AddGuide on adding elements and attributes to XML data using XQuery.
XQuery SelectExplanation of XQuery select statement for selecting nodes and values from XML data.
XQuery FunctionsOverview of built-in functions provided by XQuery for performing various operations on XML data.
+ + +### Tools +> Useful tools and resources for XML development and management. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Oxygen XML EditorA powerful XML editor that supports XML development, XSLT and XQuery debugging, and integration with other XML tools.
Altova XMLSpyAn XML editor and development environment that offers XML validation, XSLT transformation, and database integration.
XMLmind XML EditorA lightweight yet powerful XML editor with features such as syntax highlighting, validation, and XSLT transformation.
IntelliJ IDEAAn integrated development environment (IDE) with XML support, including XML editing, validation, and navigation.
Sublime TextA versatile text editor with XML syntax highlighting and support for XML manipulation through plugins.
XML Copy EditorA lightweight XML editor for Linux, Windows, and macOS with features such as syntax highlighting and XPath evaluation.
XerlinAn open-source XML editor for designing, editing, and viewing XML documents, supporting schema and DTD-based validation.
CAM XML EditorA robust XML editor that supports context-aware editing and validation, along with a suite of tools for creating and managing XML content.
Online XML EditorAn online tool for editing and formatting XML documents, providing features like syntax highlighting and validation.
XML ParserAn online XML parser that helps in parsing and validating XML documents, making it easy to analyze and troubleshoot XML code.
MSXML (Microsoft Core XML Services)Microsoft's XML parser providing comprehensive XML support, including DOM, SAX, and XSLT processing capabilities.
System.Xml.XmlDocument.NET's built-in class for handling XML documents, offering robust methods for creating, manipulating, and validating XML data.
Java Built-in ParserJava's native API for parsing XML, providing comprehensive support for DOM and SAX parsing methods.
SaxonA powerful XSLT and XQuery processor for XML, supporting advanced features for transforming and querying XML data.
XercesAn Apache project providing a high-performance, fully compliant XML parser, supporting a wide range of XML standards.
+ + +### XML in Programming Languages +> Learn about XML support in popular programming languages like Python, Java, JavaScript, C#, and PHP. + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML in PythonAn overview of parsing XML in Python, covering various libraries and techniques for reading, writing, and manipulating XML data.
XML in JavaIntroduction to XML in Java, explaining how to parse, validate, and manipulate XML data using Java's built-in libraries.
XML in JavaScriptGuide to parsing XML in JavaScript, detailing methods for reading and manipulating XML data in web applications.
XML in C#Tutorial on reading and writing XML in C#, covering various methods and classes available in the .NET framework for handling XML data.
XML in PHPExplanation of how to display XML data in a web page using PHP, including parsing and manipulating XML with PHP's built-in functions.
+ + + +### XML Security +> Explore resources related to XML security, encryption, and digital signatures. + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML SecurityComprehensive guide by Oracle on XML security, covering XML encryption, signatures, and other security mechanisms for protecting XML data.
XML Security Issues and RequirementsW3C document discussing various XML security issues and requirements, focusing on potential vulnerabilities and mitigation strategies.
XML EncryptionIBM's documentation on XML encryption, explaining how to secure XML data through encryption techniques to ensure confidentiality and integrity.
XML SignatureW3C's draft specification on XML Signature, providing details on how to create and validate digital signatures for XML documents.
+ + +### Practical XML Applications +> Real-world applications of XML in various domains such as configuration files, data interchange, document formatting, industry-specific standards, RSS, SVG, SOAP, HL7 (healthcare), and FPML (finance). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
Configuration Files Using XMLProvides an overview of using XML for configuration files in .NET applications, detailing how applications and objects are located and configured.
Data InterchangeExplains the role of XML in data exchange formats for industrial settings, highlighting its application in facilitating seamless data interchange.
Document FormattingIntroduction to XSL-FO (Extensible Stylesheet Language Formatting Objects) for formatting XML documents, covering basic principles and applications.
Industry-specific XML StandardsDocumentation of XML-based industry standards supported by Informatica, detailing various industry-specific XML standards for data integration.
RSS (Really Simple Syndication)Provides an introduction to RSS, explaining how XML is used to syndicate web content, allowing users to receive updates to web content.
SVG (Scalable Vector Graphics)Overview of SVG, an XML-based language for describing two-dimensional graphics, including vector graphics, images, and text.
SOAP (Simple Object Access Protocol)Introduction to SOAP, explaining its use as a protocol for exchanging structured information in the implementation of web services.
HL7 for HealthcareDetails on the use of HL7, an XML-based standard for exchanging information in the healthcare domain, providing resources and examples.
FPML for FinanceProvides information about FPML, an XML-based standard for electronic dealing and processing of financial derivatives.
+ + + +### Books +> Recommended books for learning XML concepts and techniques. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML in a NutshellA comprehensive overview of XML, covering its syntax, structure, processing, and applications.
Beginning XMLA beginner-friendly guide to XML, covering basics, document structure, validation, transformation, and practical usage scenarios.
Learning XMLA hands-on approach to learning XML, with clear explanations, examples, and exercises.
XML and JSON Recipes for SQL ServerPractical solutions for XML and JSON integration with SQL Server, with code examples and instructions.
XML Hacks: 100 Industrial-Strength Tips and ToolsPractical techniques and shortcuts for working with XML effectively, covering parsing, validation, transformation, and more.
XML Pocket ReferenceA handy reference guide providing quick access to essential XML syntax, vocabulary, and techniques.
XML Schema: The W3C's Object-Oriented Descriptions for XMLAn exploration of XML Schema, covering features, syntax, and usage for defining XML document structures.
XML Schema Definition (XSD)Detailed explanations, examples, and best practices for creating and working with XML schemas, focusing on XSD.
+ + +### Youtube Videos +> YouTube tutorials covering XML basics, full courses, crash courses, and tutorials in various languages. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
XML Tutorial for Beginners | What is XML? | Learn XML BasicsThis video provides a beginner-friendly introduction to XML, covering its basics, syntax, structure, and practical usage scenarios.
XML Tutorial For Beginners | Learn XML Basics | XML Training | EdurekaEdureka's XML tutorial for beginners covers XML basics, including its syntax, elements, attributes, and practical examples.
XML Tutorial for Beginners | Introduction to XML | XML BasicsThis video introduces XML to beginners, explaining its purpose, structure, syntax rules, and usage in web development and data exchange.
XML Full Course - Learn XML in 4 Hours | XML Tutorial For Beginners | EdurekaEdureka's XML full course covers XML fundamentals, XML Schema, XPath, XSLT, and practical XML programming concepts in a comprehensive 4-hour video tutorial.
XML Tutorial | XML Basics and Introduction | XML For Beginners | EdurekaEdureka's XML tutorial provides an introduction to XML basics, including XML syntax, elements, attributes, and practical examples for beginners.
XML Crash Course | XML Tutorial | Learn XML in 30 Minutes | Great LearningThis crash course video provides a quick overview of XML, covering its basics, syntax rules, structure, and practical usage scenarios in just 30 minutes.
XML Basics in Hindi - Full Course | Learn XML in HindiThis video course in Hindi covers XML basics, including XML syntax, elements, attributes, XML Schema, XPath, and practical examples for Hindi-speaking learners.
XML Tutorial for Beginners | Full Course | Free Code CampFree Code Camp's XML tutorial for beginners is a full course covering XML basics, DTD, XML Schema, XPath, XSLT, and practical examples for web developers.
XML Full Course - Learn XML in One Video | XML Tutorial For Beginners | SimplilearnSimplilearn's XML full course provides a comprehensive overview of XML fundamentals, XML Schema, XPath, XSLT, and practical XML programming concepts in a single video tutorial.
XML Tutorial For Beginners | Learn XML In One Hour | Full Course | IntellipaatIntellipaat's XML tutorial for beginners offers a full course covering XML basics, XML Schema, XPath, XSLT, and practical XML programming concepts, all in one-hour duration.
+ + +### Courses +> Here are some XML online courses. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
edX - XML Document Processing for ProgrammersThis professional certificate course on edX covers XML document processing for programmers, including XML syntax, DTD, XML Schema, XPath, XSLT, and XML programming using Java.
Coursera - XML and JSON: Basics and Application in Data Science and Web DevelopmentThis course on Coursera explores the basics of XML and JSON and their applications in data science and web development, covering XML syntax, DTD, XML Schema, XPath, XSLT, JSON syntax, and XML/JSON processing in Python.
Udemy - XML and XML Schema Definition in Easy StepsThis Udemy course provides a beginner-friendly introduction to XML and XML Schema Definition (XSD), covering XML syntax, namespaces, DTD, XML Schema, XPath, XSLT, and XML processing in Java.
LinkedIn Learning - XML Essential TrainingThis course on LinkedIn Learning offers essential training on XML, covering XML syntax, DTD, XML Schema, XPath, XSLT, XML processing in Java and Python, as well as practical examples and exercises.
Pluralsight - XML FoundationsPluralsight's XML Foundations course covers XML basics, DTD, XML Schema, XPath, XSLT, and XML processing using Java. It is suitable for beginners and provides hands-on exercises and quizzes.
Codecademy - Learn XMLCodecademy's Learn XML course offers interactive lessons to learn XML syntax, DTD, XML Schema, XPath, and XSLT. It includes hands-on projects to practice XML skills in real-world scenarios.
Udacity - XML and JSON ParsingThis Udacity course focuses on XML and JSON parsing techniques using Python. It covers XML and JSON syntax, parsing methods, and processing data from web APIs.
Skillshare - XML & XSLT for BeginnersSkillshare's XML & XSLT for Beginners course is designed for beginners and covers XML basics, XML Schema, XPath, XSLT, and practical examples of XML transformation.
FutureLearn - Learn XML BasicsFutureLearn's Learn XML Basics course provides an introduction to XML, covering XML syntax, DTD, XML Schema, XPath, and XSLT, with hands-on activities and quizzes.
Khan Academy - Computer Science: XMLKhan Academy's Computer Science: XML course is part of their HTML/CSS curriculum and covers XML basics, including syntax, structure, and practical usage examples.
OpenLearn - An Introduction to XMLOpenLearn's Introduction to XML course provides a beginner-friendly introduction to XML, covering its origins, syntax, DTD, XML Schema, XPath, and XSLT, with interactive activities and quizzes.
YouTube - XML Tutorials by The Net NinjaThe Net Ninja's YouTube playlist offers a series of XML tutorials covering XML basics, XML Schema, XPath, XSLT, and practical examples, suitable for beginners.
+ + + +### Online Platforms +> Practice XML skills on online platforms like HackerRank, LeetCode, Codecademy, W3Schools, and XML Tutor. + + + + + + + + + + + + + + + + + + + + + + + + + + +
Resource NameDescription
HackerRankHackerRank offers XML practice exercises as part of their "10 Days of XML" tutorial series. You can solve XML-related problems and challenges to improve your XML skills.
LeetCodeLeetCode provides a database section where you can find XML-related problems to solve. It's a great platform to practice XML queries and problem-solving skills.
CodecademyCodecademy offers interactive coding exercises and projects as part of their web development learning path. You can practice XML alongside HTML, CSS, JavaScript, and other web technologies.
W3SchoolsW3Schools provides XML exercises and quizzes to test your XML knowledge. You can practice XML syntax, XPath, XSLT, and other XML-related topics on this platform.
XML TutorXML Tutor offers a variety of XML exercises and tutorials to help you learn and practice XML concepts. You can explore different XML topics and solve exercises to reinforce your understanding.
+ + +## Conclusion + +XML, or Extensible Markup Language, remains a fundamental technology for structuring and organizing data in various domains. From its humble beginnings to its widespread adoption in web development, data interchange, and industry-specific standards, XML continues to play a vital role in modern computing. + +Whether you're a beginner looking to grasp the basics of XML or an experienced developer seeking to enhance your XML skills these collection of resources will help you to understand XML Concepts + +Keep Learning!! \ No newline at end of file diff --git a/README.md b/README.md index e1b95d4d..53b5a6f8 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ Here is a list of the currently available categories of the project:
- [Data Science](https://github.com/jfmartinz/ResourceHub/tree/main/Data%20Science) - [Machine Learning](https://github.com/jfmartinz/ResourceHub/tree/main/Machine%20learning) - [Data Structures and Algorithms](https://github.com/jfmartinz/ResourceHub/tree/main/Data%20Structures%20and%20Algorithm%20(DSA)) +- [Operating System (OS)](https://github.com/jfmartinz/ResourceHub/tree/main/Operating%20System%20(OS)) - [Linux Development](https://github.com/jfmartinz/ResourceHub/tree/main/Linux%20Development) diff --git a/Web3/readme.md b/Web3/readme.md index e5118553..82465b48 100644 --- a/Web3/readme.md +++ b/Web3/readme.md @@ -624,6 +624,11 @@ develop software that works with them Blockchain Supply chain management plays a critical role in ensuring efficient operations and maintaining consumer trust. This project focuses on developing and deploying a decentralized application (DApp) powered by blockchain technology to streamline supply chain management processes. + + Decentralize Google Drive Project + This project facilitates decentralized image upload and sharing on the blockchain using Solidity for the smart contract and React for the front-end interface. It enables users to securely upload images to IPFS (InterPlanetary File System) and share access with specified users through smart contract functionality. + + ### Interview diff --git a/vite-app/.gitignore b/vite-app/.gitignore new file mode 100644 index 00000000..a547bf36 --- /dev/null +++ b/vite-app/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/vite-app/index.html b/vite-app/index.html new file mode 100644 index 00000000..a1b868ba --- /dev/null +++ b/vite-app/index.html @@ -0,0 +1,16 @@ + + + + + + + + ResourceHub + + + +
+ + + + \ No newline at end of file diff --git a/vite-app/javascript.svg b/vite-app/javascript.svg new file mode 100644 index 00000000..f9abb2b7 --- /dev/null +++ b/vite-app/javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/vite-app/package-lock.json b/vite-app/package-lock.json new file mode 100644 index 00000000..13444d3e --- /dev/null +++ b/vite-app/package-lock.json @@ -0,0 +1,2257 @@ +{ + "name": "vite-app", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "vite-app", + "version": "0.0.0", + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.38", + "tailwindcss": "^3.4.4", + "vite": "^5.2.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", + "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", + "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", + "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", + "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", + "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", + "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", + "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", + "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", + "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", + "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", + "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", + "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", + "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", + "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", + "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", + "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001629", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001629.tgz", + "integrity": "sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.796", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.796.tgz", + "integrity": "sha512-NglN/xprcM+SHD2XCli4oC6bWe6kHoytcyLKCWXmRL854F0qhPhaYgUswUsglnPxYaNQIg2uMY4BvaomIf3kLA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", + "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.3", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.3.tgz", + "integrity": "sha512-uy2bNX5zQ+tESe+TiC7ilGRz8AtRGmnJH55NC5S0nSUjvvvM2hJHmefHErugGXN4pNv4Qx7vLsnNw9qJ9mtIsw==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", + "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.18.0", + "@rollup/rollup-android-arm64": "4.18.0", + "@rollup/rollup-darwin-arm64": "4.18.0", + "@rollup/rollup-darwin-x64": "4.18.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", + "@rollup/rollup-linux-arm-musleabihf": "4.18.0", + "@rollup/rollup-linux-arm64-gnu": "4.18.0", + "@rollup/rollup-linux-arm64-musl": "4.18.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", + "@rollup/rollup-linux-riscv64-gnu": "4.18.0", + "@rollup/rollup-linux-s390x-gnu": "4.18.0", + "@rollup/rollup-linux-x64-gnu": "4.18.0", + "@rollup/rollup-linux-x64-musl": "4.18.0", + "@rollup/rollup-win32-arm64-msvc": "4.18.0", + "@rollup/rollup-win32-ia32-msvc": "4.18.0", + "@rollup/rollup-win32-x64-msvc": "4.18.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", + "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.2.13", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.13.tgz", + "integrity": "sha512-SSq1noJfY9pR3I1TUENL3rQYDQCFqgD+lM6fTRAM8Nv6Lsg5hDLaXkjETVeBt+7vZBCMoibD+6IWnT2mJ+Zb/A==", + "dev": true, + "dependencies": { + "esbuild": "^0.20.1", + "postcss": "^8.4.38", + "rollup": "^4.13.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.3.tgz", + "integrity": "sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/vite-app/package.json b/vite-app/package.json new file mode 100644 index 00000000..628b29ad --- /dev/null +++ b/vite-app/package.json @@ -0,0 +1,17 @@ +{ + "name": "vite-app", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.38", + "tailwindcss": "^3.4.4", + "vite": "^5.2.0" + } +} diff --git a/vite-app/postcss.config.js b/vite-app/postcss.config.js new file mode 100644 index 00000000..2e7af2b7 --- /dev/null +++ b/vite-app/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/vite-app/public/vite.svg b/vite-app/public/vite.svg new file mode 100644 index 00000000..e7b8dfb1 --- /dev/null +++ b/vite-app/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/vite-app/src/assets/code.jpg b/vite-app/src/assets/code.jpg new file mode 100644 index 00000000..062c1991 Binary files /dev/null and b/vite-app/src/assets/code.jpg differ diff --git a/vite-app/src/assets/logo.png b/vite-app/src/assets/logo.png new file mode 100644 index 00000000..a53bfdd4 Binary files /dev/null and b/vite-app/src/assets/logo.png differ diff --git a/vite-app/src/assets/lottie.json b/vite-app/src/assets/lottie.json new file mode 100644 index 00000000..c801a446 --- /dev/null +++ b/vite-app/src/assets/lottie.json @@ -0,0 +1 @@ +{"v":"5.7.3","fr":30,"ip":0,"op":480,"w":1080,"h":1080,"nm":"soft_dev","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"control","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[540,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[188,188,100],"ix":6}},"ao":0,"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"nm":"pink button","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":62,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":145,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":150,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":289,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":299,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":304,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":383,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":388,"s":[5]},{"t":398,"s":[-90]}],"ix":10},"p":{"a":0,"k":[0.223,36.537,0],"ix":2},"a":{"a":0,"k":[29.297,6.888,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":62,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":72,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":77,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":145,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":160,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":289,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":299,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":304,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":383,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":388,"s":[110,110,100]},{"t":398,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[26.074,6.639],[-22.407,6.639],[-29.046,3.665],[-26.073,-6.639],[22.408,-6.639],[29.046,-3.6679999999999997]],"o":[[22.408,6.639],[-26.073,6.639],[-29.046,-3.6679999999999997],[-22.407,-6.639],[26.074,-6.639],[29.046,3.665]],"v":[[22.408,6.639],[-22.407,6.639],[-29.046,-0.001],[-22.407,-6.639],[22.408,-6.639],[29.046,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[29.296,6.888],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"nm":"yellow button","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":74,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":84,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":173,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":183,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":281,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":291,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":296,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":386,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":391,"s":[5]},{"t":401,"s":[-90]}],"ix":10},"p":{"a":0,"k":[0.223,57.187,0],"ix":2},"a":{"a":0,"k":[29.297,6.888,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":74,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":84,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":89,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":168,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":173,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":183,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":281,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":291,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":296,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":386,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":391,"s":[110,110,100]},{"t":401,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[26.074,6.639],[-22.407,6.639],[-29.046,3.666],[-26.073,-6.639],[22.408,-6.639],[29.046,-3.667]],"o":[[22.408,6.639],[-26.073,6.639],[-29.046,-3.667],[-22.407,-6.639],[26.074,-6.639],[29.046,3.666]],"v":[[22.408,6.639],[-22.407,6.639],[-29.046,-0.001],[-22.407,-6.639],[22.408,-6.639],[29.046,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[29.296,6.888],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"nm":"square","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":57,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":145,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":288,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":298,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":303,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":382,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":387,"s":[5]},{"t":397,"s":[-90]}],"ix":10},"p":{"a":0,"k":[35.462,-16.055,0],"ix":2},"a":{"a":0,"k":[15.547,15.548,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":57,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":67,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":72,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":140,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":145,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":155,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":288,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":298,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":303,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":382,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":387,"s":[110,110,100]},{"t":397,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.0280000000000005,6.745],[-5.14,6.745],[-6.744,6.026],[-6.744,-5.14],[-6.026,-6.745],[5.141,-6.745],[6.744,-6.026],[6.744,5.141]],"o":[[5.141,6.745],[-6.026,6.745],[-6.744,5.141],[-6.744,-6.026],[-5.14,-6.745],[6.0280000000000005,-6.745],[6.744,-5.14],[6.744,6.026]],"v":[[5.141,6.745],[-5.14,6.745],[-6.744,5.141],[-6.744,-5.14],[-5.14,-6.745],[5.141,-6.745],[6.744,-5.14],[6.744,5.141]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.547,15.547],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.508,15.298],[-9.068,15.298],[-15.297,12.509],[-15.297,-9.068],[-12.508,-15.298],[9.068,-15.298],[15.297,-12.508],[15.297,9.069]],"o":[[9.068,15.298],[-12.508,15.298],[-15.297,9.069],[-15.297,-12.508],[-9.068,-15.298],[12.508,-15.298],[15.297,-9.068],[15.297,12.509]],"v":[[9.068,15.298],[-9.068,15.298],[-15.297,9.069],[-15.297,-9.068],[-9.068,-15.298],[9.068,-15.298],[15.297,-9.068],[15.297,9.069]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.547,15.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"nm":"triangle","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":62,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":72,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":145,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":150,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":298,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":308,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":313,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":392,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":397,"s":[5]},{"t":407,"s":[-90]}],"ix":10},"p":{"a":0,"k":[-1.127,-16.055,0],"ix":2},"a":{"a":0,"k":[15.547,15.548,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":62,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":72,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":77,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":145,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":150,"s":[110,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":160,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":298,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":308,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":313,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":392,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":397,"s":[110,110,100]},{"t":407,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.751,7.354],[-5.465,7.354],[-7.587,6],[-1.547,-6.079],[0.91,-7.353999999999999],[7.013,4.85]],"o":[[5.466,7.354],[-6.7509999999999994,7.354],[-7.012,4.85],[-0.9089999999999999,-7.353999999999999],[1.548,-6.079],[7.588,6]],"v":[[5.466,7.354],[-5.465,7.354],[-7.012,4.85],[-1.547,-6.079],[1.548,-6.079],[7.013,4.85]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.547,15.388],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.508,15.298],[-9.068,15.298],[-15.297,12.509],[-15.297,-9.068],[-12.508,-15.298],[9.068,-15.298],[15.297,-12.508],[15.297,9.069]],"o":[[9.068,15.298],[-12.508,15.298],[-15.297,9.069],[-15.297,-12.508],[-9.068,-15.298],[12.508,-15.298],[15.297,-9.068],[15.297,12.509]],"v":[[9.068,15.298],[-9.068,15.298],[-15.297,9.069],[-15.297,-9.068],[-9.068,-15.298],[9.068,-15.298],[15.297,-9.068],[15.297,9.069]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.547,15.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":6,"ty":4,"nm":"circle","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":83,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":160,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":305,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":315,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":320,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":399,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":403,"s":[5]},{"t":413,"s":[-90]}],"ix":10},"p":{"a":0,"k":[-37.717,-16.055,0],"ix":2},"a":{"a":0,"k":[15.548,15.548,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":73,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":83,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":88,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":156,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":160,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":170,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":305,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":315,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":320,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":399,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":403,"s":[110,110,100]},{"t":413,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.341,-4.054],[4.055,7.341],[-7.341,4.055],[-4.055,-7.341]],"o":[[7.341,4.055],[-4.055,7.341],[-7.341,-4.054],[4.055,-7.341]],"v":[[7.341,0],[0,7.341],[-7.341,0],[0,-7.341]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.548,15.547],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.509,15.298],[-9.068,15.298],[-15.298,12.509],[-15.298,-9.068],[-12.508,-15.298],[9.069,-15.298],[15.298,-12.508],[15.298,9.069]],"o":[[9.069,15.298],[-12.508,15.298],[-15.298,9.069],[-15.298,-12.508],[-9.068,-15.298],[12.509,-15.298],[15.298,-9.068],[15.298,12.509]],"v":[[9.069,15.298],[-9.068,15.298],[-15.298,9.069],[-15.298,-9.068],[-9.068,-15.298],[9.069,-15.298],[15.298,-9.068],[15.298,9.069]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.548,15.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":7,"ty":4,"nm":"menubar","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":86,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":164,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":324,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":334,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":339,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":418,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":423,"s":[5]},{"t":433,"s":[-90]}],"ix":10},"p":{"a":0,"k":[-33.545,-79.921,0],"ix":2},"a":{"a":0,"k":[4.081,3.015,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":76,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":86,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":91,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":159,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":164,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":174,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":324,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":334,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":339,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":418,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":423,"s":[110,110,100]},{"t":433,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.469,5.561],[7.693,5.561]],"o":[[0.469,5.561],[7.693,5.561]],"v":[[0.469,5.561],[7.693,5.561]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.938,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.469,3.015],[7.693,3.015]],"o":[[0.469,3.015],[7.693,3.015]],"v":[[0.469,3.015],[7.693,3.015]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.938,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.469,0.469],[7.693,0.469]],"o":[[0.469,0.469],[7.693,0.469]],"v":[[0.469,0.469],[7.693,0.469]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.938,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":8,"ty":4,"nm":"right icon mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":55,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":65,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":143,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":306,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":316,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":321,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":400,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":405,"s":[5]},{"t":415,"s":[-90]}],"ix":10},"p":{"a":0,"k":[33.848,-78.383,0],"ix":2},"a":{"a":0,"k":[4.829,4.829,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":55,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":65,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":70,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":138,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":143,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":153,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":306,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":316,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":321,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":400,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":405,"s":[110,110,100]},{"t":415,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.579,-2.529],[2.528,4.579],[-4.579,2.529],[-2.529,-4.579]],"o":[[4.579,2.529],[-2.529,4.579],[-4.579,-2.529],[2.528,-4.579]],"v":[[4.579,0],[0,4.579],[-4.579,0],[0,-4.579]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[4.829,4.829],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":9,"ty":4,"nm":"bottom text mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-10.748,-50.806,0],"ix":2},"a":{"a":0,"k":[0.619,0.623,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":77,"s":[0,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":87,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":155,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":165,"s":[0,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":328,"s":[0,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":338,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":417,"s":[100,100,100]},{"t":427,"s":[0,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[11.152999999999999,0.505],[-10.923,0.505],[-11.339,0.319],[-11.339,-0.089],[-11.152,-0.505],[10.924,-0.505],[11.339,-0.319],[11.339,0.089]],"o":[[10.924,0.505],[-11.152,0.505],[-11.339,0.089],[-11.339,-0.319],[-10.923,-0.505],[11.152999999999999,-0.505],[11.339,-0.089],[11.339,0.319]],"v":[[10.924,0.505],[-10.923,0.505],[-11.339,0.089],[-11.339,-0.089],[-10.923,-0.505],[10.924,-0.505],[11.339,-0.089],[11.339,0.089]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.59,0.756],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":10,"ty":4,"nm":"middle text mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-16.134,-53.939,0],"ix":2},"a":{"a":0,"k":[0.596,0.489,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":69,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":79,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":147,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":157,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":317,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":327,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":406,"s":[100,100,100]},{"t":416,"s":[0,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.476,0.505],[-16.197,0.505],[-16.702,0.279],[-16.476,-0.505],[16.198,-0.505],[16.702,-0.279]],"o":[[16.198,0.505],[-16.476,0.505],[-16.702,-0.279],[-16.197,-0.505],[16.476,-0.505],[16.702,0.279]],"v":[[16.198,0.505],[-16.197,0.505],[-16.702,0],[-16.197,-0.505],[16.198,-0.505],[16.702,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[16.952,0.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":11,"ty":4,"nm":"top text mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-16.267,-56.74,0],"ix":2},"a":{"a":0,"k":[0.463,0.689,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":62,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":72,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":140,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":150,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":306,"s":[0,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":316,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":395,"s":[100,100,100]},{"t":405,"s":[0,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.476,0.505],[-16.197,0.505],[-16.702,0.279],[-16.476,-0.505],[16.198,-0.505],[16.702,-0.279]],"o":[[16.198,0.505],[-16.476,0.505],[-16.702,-0.279],[-16.197,-0.505],[16.476,-0.505],[16.702,0.279]],"v":[[16.198,0.505],[-16.197,0.505],[-16.702,0.001],[-16.197,-0.505],[16.198,-0.505],[16.702,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[16.952,0.756],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":12,"ty":4,"nm":"text background mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":47,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":57,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":145,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":293,"s":[-90]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":303,"s":[5]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":308,"s":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":387,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":392,"s":[5]},{"t":402,"s":[-90]}],"ix":10},"p":{"a":0,"k":[0.223,-13.413,0],"ix":2},"a":{"a":0,"k":[32.072,50.201,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":47,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":57,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":62,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":130,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":135,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":145,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":293,"s":[0,0,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":303,"s":[110,110,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":308,"s":[100,100,100]},{"i":{"x":[0,0,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":387,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":392,"s":[110,110,100]},{"t":402,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.580000000000002,49.951],[-22.347,49.951],[-31.822,45.708999999999996],[-31.822,-40.477],[-27.580000000000002,-49.951],[22.347,-49.951],[31.822,-45.708999999999996],[31.822,40.476]],"o":[[22.347,49.951],[-27.580000000000002,49.951],[-31.822,40.476],[-31.822,-45.708999999999996],[-22.347,-49.951],[27.580000000000002,-49.951],[31.822,-40.477],[31.822,45.708999999999996]],"v":[[22.347,49.951],[-22.347,49.951],[-31.822,40.476],[-31.822,-40.477],[-22.347,-49.951],[22.347,-49.951],[31.822,-40.477],[31.822,40.476]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.96,0.9613,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[32.072,50.201],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":25,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":13,"ty":4,"nm":"mobile","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\nvar endValue;\nvar outPresetName = '194 Scale Rotation Medium Bounce Ease Quint 01';\nvar inPresetName = '194 Scale Rotation Medium Bounce Ease Quint 01';\nvar startValue = endValue = value;\nvar thisPropertyMatchName = 'ADBE Rotate Z';\nvar thisPropertyName = 'Rotation';\nvar _0x43c8 = [\n 'inPoint',\n 'outPoint'\n ];\nvar multiplier = 1;\nvar additional = 0;\nvar inPoint = thisLayer[_0x43c8[0]];\nvar outPoint = thisLayer[_0x43c8[1]];\nvar inTime = null;\nvar outTime = null;\nvar inEase = 1;\nvar outEase = 1;\nvar inStartDelay = 0;\nvar inEndDelay = 0;\nvar outStartDelay = 0;\nvar outEndDelay = 0;\nvar inScale;\nvar outScale;\nvar inThreeDLayer;\nvar outThreeDLayer;\nvar _0xd695 = [\n 'numKeys',\n 'marker',\n 'key',\n 'parameters',\n 'aej_presetType',\n 'hasOwnProperty',\n 'aej_easeType',\n 'aej_name',\n 'IN',\n 'time',\n '_startDelay',\n '_endDelay',\n 'aej_scaleType',\n 'aej_threeDLayer',\n 'OUT',\n 'ADBE Scale',\n 'ADBE Position',\n 'width',\n 'height',\n 'ADBE Position_0',\n 'ADBE Position_1',\n 'ADBE Position_2',\n 'Rotation',\n 'indexOf',\n 'active',\n 'IN Rotation',\n 'effect',\n 'Position',\n 'IN Position',\n 'IN ',\n 'OUT Rotation',\n 'OUT Position',\n 'OUT ',\n 'frameDuration',\n 'value',\n 'ADBE ',\n ' Control-0001',\n 'ADBE Effect Parade',\n 'cos',\n 'exp',\n 'length',\n 'max',\n 'pow',\n 'PI',\n 'sin',\n 'sqrt'\n ];\nfunction parseMarkers() {\n var marker;\n for (var _0xa632x2 = 1; _0xa632x2 <= thisLayer[_0xd695[1]][_0xd695[0]]; _0xa632x2++) {\n var _0xa632x3 = thisLayer[_0xd695[1]][_0xd695[2]](_0xa632x2);\n var _0xa632x4 = _0xa632x3[_0xd695[3]];\n if (_0xa632x4[_0xd695[5]](_0xd695[4]) && _0xa632x4[_0xd695[5]](_0xd695[6]) && _0xa632x4[_0xd695[5]](_0xd695[7]) && _0xa632x4[_0xd695[4]] == _0xd695[8]) {\n inTime = _0xa632x3[_0xd695[9]];\n inEase = _0xa632x4[_0xd695[6]];\n if (_0xa632x4[_0xd695[5]](thisPropertyMatchName + _0xd695[10])) {\n inStartDelay = _0xa632x4[$bm_sum(thisPropertyMatchName, _0xd695[10])];\n }\n ;\n if (_0xa632x4[_0xd695[5]](thisPropertyMatchName + _0xd695[11])) {\n inEndDelay = _0xa632x4[$bm_sum(thisPropertyMatchName, _0xd695[11])];\n }\n ;\n if (_0xa632x4[_0xd695[5]](_0xd695[12])) {\n inScale = _0xa632x4[_0xd695[12]];\n }\n ;\n if (_0xa632x4[_0xd695[5]](_0xd695[13])) {\n inThreeDLayer = _0xa632x4[_0xd695[13]];\n }\n }\n ;\n if (_0xa632x4[_0xd695[5]](_0xd695[4]) && _0xa632x4[_0xd695[5]](_0xd695[6]) && _0xa632x4[_0xd695[5]](_0xd695[7]) && _0xa632x4[_0xd695[4]] == _0xd695[14]) {\n outTime = _0xa632x3[_0xd695[9]];\n outEase = _0xa632x4[_0xd695[6]];\n if (_0xa632x4[_0xd695[5]](thisPropertyMatchName + _0xd695[10])) {\n outStartDelay = _0xa632x4[$bm_sum(thisPropertyMatchName, _0xd695[10])];\n }\n ;\n if (_0xa632x4[_0xd695[5]](thisPropertyMatchName + _0xd695[11])) {\n outEndDelay = _0xa632x4[$bm_sum(thisPropertyMatchName, _0xd695[11])];\n }\n ;\n if (_0xa632x4[_0xd695[5]](_0xd695[12])) {\n outScale = _0xa632x4[_0xd695[12]];\n }\n ;\n if (_0xa632x4[_0xd695[5]](_0xd695[13])) {\n outThreeDLayer = _0xa632x4[_0xd695[13]];\n }\n }\n ;\n marker = undefined;\n _0xa632x4 = undefined;\n }\n}\nfunction main() {\n var d, t;\n if (thisLayer[_0xd695[9]] < inPoint) {\n if (inTime == null) {\n return value;\n }\n ;\n if (thisPropertyMatchName == _0xd695[15]) {\n return [\n startValue,\n startValue\n ];\n }\n ;\n if (thisPropertyMatchName == _0xd695[16]) {\n return [\n thisComp[_0xd695[17]] / 2 + startValue[0],\n thisComp[_0xd695[18]] / 2 + startValue[1]\n ];\n }\n ;\n if (thisPropertyMatchName == _0xd695[19]) {\n return $bm_sum($bm_div(thisComp[_0xd695[17]], 2), startValue[0]);\n }\n ;\n if (thisPropertyMatchName == _0xd695[20]) {\n return $bm_sum($bm_div(thisComp[_0xd695[18]], 2), startValue[1]);\n }\n ;\n if (thisPropertyMatchName == _0xd695[21]) {\n return startValue[2];\n }\n ;\n return startValue;\n }\n ;\n if (thisLayer[_0xd695[9]] >= outPoint) {\n if (outTime == null) {\n return value;\n }\n ;\n if (thisPropertyMatchName == _0xd695[15]) {\n return [\n endValue,\n endValue\n ];\n }\n ;\n if (thisPropertyMatchName == _0xd695[16]) {\n return [\n thisComp[_0xd695[17]] / 2 - endValue[0],\n thisComp[_0xd695[18]] / 2 - endValue[1]\n ];\n }\n ;\n if (thisPropertyMatchName == _0xd695[19]) {\n return $bm_sub($bm_div(thisComp[_0xd695[17]], 2), endValue[0]);\n }\n ;\n if (thisPropertyMatchName == _0xd695[20]) {\n return $bm_sub($bm_div(thisComp[_0xd695[18]], 2), endValue[1]);\n }\n ;\n if (thisPropertyMatchName == _0xd695[21]) {\n return endValue[2];\n }\n ;\n return endValue;\n }\n ;\n if (inTime === null && outTime === null) {\n return value;\n }\n ;\n if (inTime !== null && outTime === null && time >= inTime && time < outPoint) {\n return value;\n }\n ;\n if (inTime === null && outTime !== null && time >= inPoint && time < outTime) {\n return value;\n }\n ;\n if (inTime !== null && outTime !== null && time >= inTime && time < outTime) {\n return value;\n }\n ;\n if (inTime !== null && thisLayer[_0xd695[9]] >= inPoint && thisLayer[_0xd695[9]] < inTime) {\n try {\n if (thisPropertyName[_0xd695[23]](_0xd695[22]) != -1 && thisLayer[_0xd695[26]](_0xd695[25])[_0xd695[24]] === false) {\n return value;\n }\n ;\n if (thisPropertyName[_0xd695[23]](_0xd695[27]) != -1 && thisLayer[_0xd695[26]](_0xd695[28])[_0xd695[24]] === false) {\n return value;\n }\n ;\n if (thisLayer[_0xd695[26]](_0xd695[29] + thisPropertyName)[_0xd695[24]] === false) {\n return value;\n }\n } catch (e) {\n }\n ;\n d = $bm_sub(inTime, inPoint);\n t = $bm_sub($bm_sub(thisLayer[_0xd695[9]], inPoint), $bm_mul(d, inStartDelay));\n d = $bm_sub($bm_sub($bm_sub(inTime, inPoint), $bm_mul(d, inEndDelay)), $bm_mul(d, inStartDelay));\n t = $bm_div(t, d);\n if (t < 0) {\n t = 0;\n }\n ;\n if (t > 1) {\n t = 1;\n }\n ;\n var _0xa632x6 = getEaseFunction(inEase);\n t = _0xa632x6(t);\n t = $bm_sub(1, t);\n try {\n return inPreset();\n } catch (e) {\n return value;\n }\n }\n ;\n if (outTime !== null && thisLayer[_0xd695[9]] >= outTime && thisLayer[_0xd695[9]] < outPoint) {\n try {\n if (thisPropertyName[_0xd695[23]](_0xd695[22]) != -1 && thisLayer[_0xd695[26]](_0xd695[30])[_0xd695[24]] === false) {\n return value;\n }\n ;\n if (thisPropertyName[_0xd695[23]](_0xd695[27]) != -1 && thisLayer[_0xd695[26]](_0xd695[31])[_0xd695[24]] === false) {\n return value;\n }\n ;\n if (thisLayer[_0xd695[26]](_0xd695[32] + thisPropertyName)[_0xd695[24]] === false) {\n return value;\n }\n } catch (e) {\n }\n ;\n d = $bm_sub(outPoint, outTime);\n t = $bm_sub($bm_sub(thisLayer[_0xd695[9]], outTime), $bm_mul(d, outEndDelay));\n d = $bm_sub($bm_sub($bm_sub($bm_sub(outPoint, outTime), thisComp[_0xd695[33]]), $bm_mul(d, outEndDelay)), $bm_mul(d, outStartDelay));\n t = $bm_div(t, d);\n if (t < 0) {\n t = 0;\n }\n ;\n if (t > 1) {\n t = 1;\n }\n ;\n var _0xa632x6 = getEaseFunction(outEase);\n t = _0xa632x6(t);\n try {\n return outPreset();\n } catch (e) {\n return value;\n }\n }\n}\nfunction getControlValue(_0xa632x8, _0xa632x9, _0xa632xa) {\n try {\n return thisLayer(_0xd695[37])(_0xa632x9)($bm_sum($bm_sum(_0xd695[35], _0xa632x8), _0xd695[36]))[_0xd695[34]];\n } catch (e) {\n return _0xa632xa;\n }\n}\nfunction bounceMath(_0xa632xc, _0xa632xd, _0xa632xe, _0xa632xf) {\n var _0xa632x10 = $bm_div($bm_mul(_0xa632xd, Math[_0xd695[38]]($bm_mul($bm_mul($bm_mul(_0xa632xc, _0xa632xe), 3.1415926536), 2))), Math[_0xd695[39]]($bm_mul(_0xa632xc, _0xa632xf)));\n if (_0xa632xc < 0.8) {\n return _0xa632x10;\n }\n ;\n return $bm_mul(_0xa632x10, $bm_sub(1, $bm_div($bm_sub(_0xa632xc, 0.8), 0.2)));\n}\nfunction multiply(_0xa632xd, _0xa632x12) {\n if (_0xa632xd instanceof Array && _0xa632x12 instanceof Array) {\n return multiplyArray(_0xa632xd, _0xa632x12);\n }\n ;\n return $bm_mul(_0xa632xd, _0xa632x12);\n}\nfunction multiplyArray(_0xa632xd, _0xa632x12) {\n var _0xa632x14 = Math[_0xd695[41]](_0xa632xd[_0xd695[40]], _0xa632x12[_0xd695[40]]);\n var _0xa632x15 = new Array(_0xa632x14);\n for (var _0xa632x2 = 0; _0xa632x2 < _0xa632x14; _0xa632x2++) {\n var _0xa632x16 = 1;\n var _0xa632x17 = 1;\n if (_0xa632x2 < _0xa632xd[_0xd695[40]]) {\n _0xa632x16 = _0xa632xd[_0xa632x2];\n }\n ;\n if (_0xa632x2 < _0xa632x12[_0xd695[40]]) {\n _0xa632x17 = _0xa632x12[_0xa632x2];\n }\n ;\n _0xa632x15[_0xa632x2] = $bm_mul(_0xa632x16, _0xa632x17);\n }\n ;\n return _0xa632x15;\n}\nfunction updMultiplier(_0xa632x19) {\n multiplier = multiply(multiplier, _0xa632x19);\n}\nfunction updAdditional(_0xa632x19) {\n additional = $bm_sum(additional, _0xa632x19);\n}\nfunction getEaseFunction(_0xa632x1c) {\n if (!_0xa632x1c) {\n return null;\n }\n ;\n switch (parseInt(_0xa632x1c)) {\n case 0:\n return null;\n break;\n case 1:\n return easeInQuad;\n break;\n case 2:\n return easeOutQuad;\n break;\n case 3:\n return easeInOutQuad;\n break;\n case 4:\n return easeInCubic;\n break;\n case 5:\n return easeOutCubic;\n break;\n case 6:\n return easeInOutCubic;\n break;\n case 7:\n return easeInQuart;\n break;\n case 8:\n return easeOutQuart;\n break;\n case 9:\n return easeInOutQuart;\n break;\n case 10:\n return easeInQuint;\n break;\n case 11:\n return easeOutQuint;\n break;\n case 12:\n return easeInOutQuint;\n break;\n case 13:\n return easeInSine;\n break;\n case 14:\n return easeOutSine;\n break;\n case 15:\n return easeInOutSine;\n break;\n case 16:\n return easeInExpo;\n break;\n case 17:\n return easeOutExpo;\n break;\n case 18:\n return easeInOutExpo;\n break;\n case 19:\n return easeInCirc;\n break;\n case 20:\n return easeOutCirc;\n break;\n case 21:\n return easeInOutCirc;\n break;\n case 22:\n return easeOutBounce;\n break;\n case 23:\n return easeInBack;\n break;\n case 24:\n return easeInOutBack;\n break;\n case 25:\n return elastic;\n break;\n case 26:\n return swingFromTo;\n break;\n case 27:\n return swingFrom;\n break;\n case 28:\n return swingTo;\n break;\n case 29:\n return bounce;\n break;\n case 30:\n return bouncePast;\n break;\n case 31:\n return easeFromTo;\n break;\n case 32:\n return easeFrom;\n break;\n case 33:\n return easeTo;\n break;\n }\n ;\n return null;\n}\nfunction easeInQuad(_0xa632xc) {\n return $bm_mul(_0xa632xc, _0xa632xc);\n}\nfunction easeOutQuad(_0xa632xc) {\n return $bm_neg($bm_sub(Math[_0xd695[42]]($bm_sub(_0xa632xc, 1), 2), 1));\n}\nfunction easeInOutQuad(_0xa632xc) {\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul($bm_mul(0.5, _0xa632xc), _0xa632xc);\n }\n ;\n return $bm_mul(-0.5, $bm_sub($bm_mul(_0xa632xc -= 2, _0xa632xc), 2));\n}\nfunction easeInCubic(_0xa632xc) {\n return $bm_mul($bm_mul(_0xa632xc, _0xa632xc), _0xa632xc);\n}\nfunction easeOutCubic(_0xa632xc) {\n return $bm_sum(easeInCubic($bm_sub(_0xa632xc, 1)), 1);\n}\nfunction easeInOutCubic(_0xa632xc) {\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(0.5, Math[_0xd695[42]](_0xa632xc, 3));\n }\n ;\n return $bm_mul(0.5, $bm_sum(Math[_0xd695[42]]($bm_sub(_0xa632xc, 2), 3), 2));\n}\nfunction easeInQuart(_0xa632xc) {\n return Math[_0xd695[42]](_0xa632xc, 4);\n}\nfunction easeOutQuart(_0xa632xc) {\n return $bm_neg($bm_sub(Math[_0xd695[42]]($bm_sub(_0xa632xc, 1), 4), 1));\n}\nfunction easeInOutQuart(_0xa632xc) {\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(0.5, Math[_0xd695[42]](_0xa632xc, 4));\n }\n ;\n return $bm_mul(-0.5, $bm_sub($bm_mul(_0xa632xc -= 2, Math[_0xd695[42]](_0xa632xc, 3)), 2));\n}\nfunction easeInQuint(_0xa632xc) {\n return Math[_0xd695[42]](_0xa632xc, 5);\n}\nfunction easeOutQuint(_0xa632xc) {\n return $bm_sum(Math[_0xd695[42]]($bm_sub(_0xa632xc, 1), 5), 1);\n}\nfunction easeInOutQuint(_0xa632xc) {\n return _0xa632xc < 0.5 ? 16 * _0xa632xc * _0xa632xc * _0xa632xc * _0xa632xc * _0xa632xc : 1 + 16 * --_0xa632xc * _0xa632xc * _0xa632xc * _0xa632xc * _0xa632xc;\n}\nfunction easeInSine(_0xa632xc) {\n return $bm_sum($bm_neg(Math[_0xd695[38]]($bm_mul(_0xa632xc, $bm_div(Math[_0xd695[43]], 2)))), 1);\n}\nfunction easeOutSine(_0xa632xc) {\n return Math[_0xd695[44]]($bm_mul(_0xa632xc, $bm_div(Math[_0xd695[43]], 2)));\n}\nfunction easeInOutSine(_0xa632xc) {\n return $bm_mul(-0.5, $bm_sub(Math[_0xd695[38]]($bm_mul(Math[_0xd695[43]], _0xa632xc)), 1));\n}\nfunction easeInExpo(_0xa632xc) {\n return _0xa632xc === 0 ? 0 : Math[_0xd695[42]](2, 10 * (_0xa632xc - 1));\n}\nfunction easeOutExpo(_0xa632xc) {\n return _0xa632xc === 1 ? 1 : -Math[_0xd695[42]](2, -10 * _0xa632xc) + 1;\n}\nfunction easeInOutExpo(_0xa632xc) {\n if (_0xa632xc === 0) {\n return 0;\n }\n ;\n if (_0xa632xc === 1) {\n return 1;\n }\n ;\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(0.5, Math[_0xd695[42]](2, $bm_mul(10, $bm_sub(_0xa632xc, 1))));\n }\n ;\n return $bm_mul(0.5, $bm_sum($bm_neg(Math[_0xd695[42]](2, $bm_mul(-10, --_0xa632xc))), 2));\n}\nfunction easeInCirc(_0xa632xc) {\n return $bm_neg($bm_sub(Math[_0xd695[45]]($bm_sub(1, $bm_mul(_0xa632xc, _0xa632xc))), 1));\n}\nfunction easeOutCirc(_0xa632xc) {\n return Math[_0xd695[45]]($bm_sub(1, Math[_0xd695[42]]($bm_sub(_0xa632xc, 1), 2)));\n}\nfunction easeInOutCirc(_0xa632xc) {\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(-0.5, $bm_sub(Math[_0xd695[45]]($bm_sub(1, $bm_mul(_0xa632xc, _0xa632xc))), 1));\n }\n ;\n return $bm_mul(0.5, $bm_sum(Math[_0xd695[45]]($bm_sub(1, $bm_mul(_0xa632xc -= 2, _0xa632xc))), 1));\n}\nfunction easeOutBounce(_0xa632xc) {\n if (_0xa632xc < 1 / 2.75) {\n return $bm_mul($bm_mul(7.5625, _0xa632xc), _0xa632xc);\n } else {\n if (_0xa632xc < 2 / 2.75) {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 1.5 / 2.75), _0xa632xc), 0.75);\n } else {\n if (_0xa632xc < 2.5 / 2.75) {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.25 / 2.75), _0xa632xc), 0.9375);\n } else {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.625 / 2.75), _0xa632xc), 0.984375);\n }\n }\n }\n}\nfunction easeInBack(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n return $bm_mul($bm_mul(_0xa632xc, _0xa632xc), $bm_sub($bm_mul($bm_sum(_0xa632x34, 1), _0xa632xc), _0xa632x34));\n}\nfunction easeOutBack(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n return $bm_sum($bm_mul($bm_mul(_0xa632xc = _0xa632xc - 1, _0xa632xc), $bm_sum($bm_mul($bm_sum(_0xa632x34, 1), _0xa632xc), _0xa632x34)), 1);\n}\nfunction easeInOutBack(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(0.5, $bm_mul($bm_mul(_0xa632xc, _0xa632xc), $bm_sub($bm_mul($bm_sum(_0xa632x34 *= 1.525, 1), _0xa632xc), _0xa632x34)));\n }\n ;\n return $bm_mul(0.5, $bm_sum($bm_mul($bm_mul(_0xa632xc -= 2, _0xa632xc), $bm_sum($bm_mul($bm_sum(_0xa632x34 *= 1.525, 1), _0xa632xc), _0xa632x34)), 2));\n}\nfunction elastic(_0xa632xc) {\n return $bm_sum($bm_mul($bm_mul(-1, Math[_0xd695[42]](4, $bm_mul(-8, _0xa632xc))), Math[_0xd695[44]]($bm_div($bm_mul($bm_sub($bm_mul(_0xa632xc, 6), 1), $bm_mul(2, Math[_0xd695[43]])), 2))), 1);\n}\nfunction swingFromTo(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n return (_0xa632xc /= 0.5) < 1 ? 0.5 * (_0xa632xc * _0xa632xc * (((_0xa632x34 *= 1.525) + 1) * _0xa632xc - _0xa632x34)) : 0.5 * ((_0xa632xc -= 2) * _0xa632xc * (((_0xa632x34 *= 1.525) + 1) * _0xa632xc + _0xa632x34) + 2);\n}\nfunction swingFrom(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n return $bm_mul($bm_mul(_0xa632xc, _0xa632xc), $bm_sub($bm_mul($bm_sum(_0xa632x34, 1), _0xa632xc), _0xa632x34));\n}\nfunction swingTo(_0xa632xc) {\n var _0xa632x34 = 1.70158;\n return $bm_sum($bm_mul($bm_mul(_0xa632xc -= 1, _0xa632xc), $bm_sum($bm_mul($bm_sum(_0xa632x34, 1), _0xa632xc), _0xa632x34)), 1);\n}\nfunction bounce(_0xa632xc) {\n if (_0xa632xc < 1 / 2.75) {\n return $bm_mul($bm_mul(7.5625, _0xa632xc), _0xa632xc);\n } else {\n if (_0xa632xc < 2 / 2.75) {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 1.5 / 2.75), _0xa632xc), 0.75);\n } else {\n if (_0xa632xc < 2.5 / 2.75) {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.25 / 2.75), _0xa632xc), 0.9375);\n } else {\n return $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.625 / 2.75), _0xa632xc), 0.984375);\n }\n }\n }\n}\nfunction bouncePast(_0xa632xc) {\n if (_0xa632xc < 1 / 2.75) {\n return $bm_mul($bm_mul(7.5625, _0xa632xc), _0xa632xc);\n } else {\n if (_0xa632xc < 2 / 2.75) {\n return $bm_sub(2, $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 1.5 / 2.75), _0xa632xc), 0.75));\n } else {\n if (_0xa632xc < 2.5 / 2.75) {\n return $bm_sub(2, $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.25 / 2.75), _0xa632xc), 0.9375));\n } else {\n return $bm_sub(2, $bm_sum($bm_mul($bm_mul(7.5625, _0xa632xc -= 2.625 / 2.75), _0xa632xc), 0.984375));\n }\n }\n }\n}\nfunction easeFromTo(_0xa632xc) {\n if ((_0xa632xc /= 0.5) < 1) {\n return $bm_mul(0.5, Math[_0xd695[42]](_0xa632xc, 4));\n }\n ;\n return $bm_mul(-0.5, $bm_sub($bm_mul(_0xa632xc -= 2, Math[_0xd695[42]](_0xa632xc, 3)), 2));\n}\nfunction easeFrom(_0xa632xc) {\n return Math[_0xd695[42]](_0xa632xc, 4);\n}\nfunction easeTo(_0xa632xc) {\n return Math[_0xd695[42]](_0xa632xc, 0.25);\n}\nparseMarkers();\nendValue = getControlValue('Angle', 'OUT Rotation', 100);\nvar bounces = getControlValue('Slider', 'OUT Bounces', 3);\ntry {\n if (thisLayer.effect('OUT Bounces').active === false) {\n bounces = 0;\n }\n} catch (e) {\n}\nfunction outPreset() {\n updAdditional($bm_mul(endValue, bounceMath($bm_sub(1, t), 1, bounces, 7)));\n return $bm_sum(value, additional);\n}\nstartValue = getControlValue('Angle', 'IN Rotation', 100);\nvar bounces = getControlValue('Slider', 'IN Bounces', 3);\ntry {\n if (thisLayer.effect('IN Bounces').active === false) {\n bounces = 0;\n }\n} catch (e) {\n}\nfunction inPreset() {\n updAdditional($bm_mul(startValue, bounceMath($bm_sub(1, t), 1, bounces, 7)));\n return $bm_sum(value, additional);\n}\n$bm_rt = main();"},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":26,"s":[0.222,274.208,0],"to":null,"ti":null},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":37,"s":[0.222,-8.792,0],"to":null,"ti":null},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":198,"s":[0.222,-8.792,0],"to":null,"ti":null},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":208,"s":[0.222,274.208,0],"to":null,"ti":null},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":269,"s":[0.222,274.208,0],"to":null,"ti":null},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":280,"s":[0.222,-8.792,0],"to":null,"ti":null},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":452,"s":[0.222,-8.792,0],"to":null,"ti":null},{"t":462,"s":[0.222,274.208,0]}],"ix":2},"a":{"a":0,"k":[48.794,93.409,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0,0.652],"y":[0.498,0.498,-20.731]},"o":{"x":[0.157,0.157,0.157],"y":[0,0,0]},"t":26,"s":[0,0,100]},{"i":{"x":[0.802,0.802,0.802],"y":[1,1,1]},"o":{"x":[0.438,0.438,0.438],"y":[-1.143,-1.143,12.428]},"t":37,"s":[110,110,100]},{"i":{"x":[0.713,0.713,0.802],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":42,"s":[100,100,100]},{"i":{"x":[0,0,0.652],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":193,"s":[100,100,100]},{"i":{"x":[0,0,0.833],"y":[1,1,1]},"o":{"x":[0.438,0.438,0.438],"y":[0,0,0]},"t":198,"s":[110,110,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.157,0.157,0.157],"y":[0,0,0]},"t":208,"s":[0,0,100]},{"i":{"x":[0,0,0.652],"y":[0.498,0.498,1]},"o":{"x":[0.157,0.157,0.157],"y":[0,0,0]},"t":269,"s":[0,0,100]},{"i":{"x":[0.802,0.802,0.802],"y":[1,1,1]},"o":{"x":[0.438,0.438,0.438],"y":[-1.143,-1.143,0]},"t":280,"s":[110,110,100]},{"i":{"x":[0.713,0.713,0.802],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":285,"s":[100,100,100]},{"i":{"x":[0,0,0.652],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":447,"s":[100,100,100]},{"i":{"x":[0,0,0.833],"y":[1,1,1]},"o":{"x":[0.438,0.438,0.438],"y":[0,0,0]},"t":452,"s":[110,110,100]},{"t":462,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[14.953,2.333],[-12.837,2.333],[-16.669,0.617],[-16.669,-2.333],[16.669,-2.333],[16.669,-1.5]],"o":[[12.836,2.333],[-14.953,2.333],[-16.669,-1.5],[-16.669,-2.333],[16.669,-2.333],[16.669,0.617]],"v":[[12.836,2.333],[-12.837,2.333],[-16.669,-1.5],[-16.669,-2.333],[16.669,-2.333],[16.669,-1.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[48.794,7.315],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[39.885999999999996,88.426],[-35.042,88.426],[-43.811,84.501],[-43.811,-79.657],[-39.885000000000005,-88.426],[35.043,-88.426],[43.811,-84.5],[43.811,79.658]],"o":[[35.043,88.426],[-39.885000000000005,88.426],[-43.811,79.658],[-43.811,-84.5],[-35.042,-88.426],[39.885999999999996,-88.426],[43.811,-79.657],[43.811,84.501]],"v":[[35.043,88.426],[-35.042,88.426],[-43.811,79.658],[-43.811,-79.657],[-35.042,-88.426],[35.043,-88.426],[43.811,-79.657],[43.811,79.658]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.993,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[48.794,93.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[39.885999999999996,88.426],[-35.042,88.426],[-43.811,84.501],[-43.811,-79.657],[-39.885000000000005,-88.426],[35.043,-88.426],[43.811,-84.5],[43.811,79.658]],"o":[[35.043,88.426],[-39.885000000000005,88.426],[-43.811,79.658],[-43.811,-84.5],[-35.042,-88.426],[39.885999999999996,-88.426],[43.811,-79.657],[43.811,84.501]],"v":[[35.043,88.426],[-35.042,88.426],[-43.811,79.658],[-43.811,-79.657],[-35.042,-88.426],[35.043,-88.426],[43.811,-79.657],[43.811,79.658]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[48.794,93.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":-3,"op":477,"st":-3,"bm":0,"completed":true},{"ddd":0,"ind":14,"ty":4,"nm":"mobile shadow","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":181,"s":[100]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":209,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":434,"s":[100]},{"t":462,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[10.739,15.902,0],"ix":2},"a":{"a":0,"k":[40.02,69.41,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[36.434,69.41],[-32.011,69.41],[-40.02,65.82300000000001],[-40.02,-69.409],[40.02,-69.409],[40.02,61.399]],"o":[[32.01,69.41],[-36.434000000000005,69.41],[-40.02,61.399],[-40.02,-69.409],[40.02,-69.409],[40.02,65.82300000000001]],"v":[[32.01,69.41],[-32.011,69.41],[-40.02,61.399],[-40.02,-69.409],[40.02,-69.409],[40.02,61.399]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[40.02,69.41],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":41,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":15,"ty":4,"nm":"right moniotr text","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150.247,22.177,0],"ix":2},"a":{"a":0,"k":[53.164,51.413,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.798,-0.66],[10.798,0.66]],"o":[[-10.798,-0.66],[10.798,0.66]],"v":[[-10.798,-0.66],[10.798,0.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.165,101.798],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.478,-0.335],[5.478,0.335]],"o":[[-5.478,-0.335],[5.478,0.335]],"v":[[-5.478,-0.335],[5.478,0.335]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[62.628,100.421],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.843,-0.76],[13.843,0.76]],"o":[[-13.843,-0.76],[13.843,0.76]],"v":[[-13.843,-0.76],[13.843,0.76]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[88.21,96.823],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.823,-0.21],[3.823,0.21]],"o":[[-3.823,-0.21],[3.823,0.21]],"v":[[-3.823,-0.21],[3.823,0.21]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.283,95.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.798,-0.525],[10.798,0.525]],"o":[[-10.798,-0.525],[10.798,0.525]],"v":[[-10.798,-0.525],[10.798,0.525]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.165,91.512],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.478,-0.266],[5.478,0.266]],"o":[[-5.478,-0.266],[5.478,0.266]],"v":[[-5.478,-0.266],[5.478,0.266]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[62.628,90.418],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.796,-0.521],[15.796,0.521]],"o":[[-15.796,-0.521],[15.796,0.521]],"v":[[-15.796,-0.521],[15.796,0.521]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[90.163,78.922],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.582,-0.415],[12.582,0.415]],"o":[[-12.582,-0.415],[12.582,0.415]],"v":[[-12.582,-0.415],[12.582,0.415]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[55.523,77.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.37,-0.272],[10.37,0.272]],"o":[[-10.37,-0.272],[10.37,0.272]],"v":[[-10.37,-0.272],[10.37,0.272]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[95.588,73.476],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.924,-0.47],[17.924,0.47]],"o":[[-17.924,-0.47],[17.924,0.47]],"v":[[-17.924,-0.47],[17.924,0.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[60.865,72.566],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.127,-0.105],[10.127,0.105]],"o":[[-10.127,-0.105],[10.127,0.105]],"v":[[-10.127,-0.105],[10.127,0.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.835,60.249],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.522,-0.182],[17.522,0.182]],"o":[[-17.522,-0.182],[17.522,0.182]],"v":[[-17.522,-0.182],[17.522,0.182]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[51.904,59.898],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.928,-0.051],[13.928,0.051]],"o":[[-13.928,-0.051],[13.928,0.051]],"v":[[-13.928,-0.051],[13.928,0.051]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[82.034,54.677],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.78,-0.05],[13.78,0.05]],"o":[[-13.78,-0.05],[13.78,0.05]],"v":[[-13.78,-0.05],[13.78,0.05]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[48.161,54.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.127,0.032],[10.127,-0.032]],"o":[[-10.127,0.032],[10.127,-0.032]],"v":[[-10.127,0.032],[10.127,-0.032]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.835,49.132],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.522,0.055],[17.522,-0.055]],"o":[[-17.522,0.055],[17.522,-0.055]],"v":[[-17.522,0.055],[17.522,-0.055]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[51.904,49.24],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.928,0.139],[13.928,-0.139]],"o":[[-13.928,0.139],[13.928,-0.139]],"v":[[-13.928,0.139],[13.928,-0.139]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[82.034,43.611],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.78,0.137],[13.78,-0.137]],"o":[[-13.78,0.137],[13.78,-0.137]],"v":[[-13.78,0.137],[13.78,-0.137]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[48.161,43.949],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.127,0.17],[10.127,-0.17]],"o":[[-10.127,0.17],[10.127,-0.17]],"v":[[-10.127,0.17],[10.127,-0.17]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.835,38.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.522,0.294],[17.522,-0.294]],"o":[[-17.522,0.294],[17.522,-0.294]],"v":[[-17.522,0.294],[17.522,-0.294]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[51.904,38.582],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.127,0.238],[10.127,-0.238]],"o":[[-10.127,0.238],[10.127,-0.238]],"v":[[-10.127,0.238],[10.127,-0.238]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[85.835,32.454],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.522,0.413],[17.522,-0.413]],"o":[[-17.522,0.413],[17.522,-0.413]],"v":[[-17.522,0.413],[17.522,-0.413]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[51.904,33.253],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.756,0.144],[4.756,-0.144]],"o":[[-4.756,0.144],[4.756,-0.144]],"v":[[-4.756,0.144],[4.756,-0.144]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[80.463,27.058],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-27.369,0.83],[27.369,-0.83]],"o":[[-27.369,0.83],[27.369,-0.83]],"v":[[-27.369,0.83],[27.369,-0.83]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.056,28.223],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.321,0.298],[8.321,-0.298]],"o":[[-8.321,0.298],[8.321,-0.298]],"v":[[-8.321,0.298],[8.321,-0.298]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[84.029,22.431],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-27.369,0.981],[27.369,-0.981]],"o":[[-27.369,0.981],[27.369,-0.981]],"v":[[-27.369,0.981],[27.369,-0.981]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.056,23.936],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.756,0.197],[4.756,-0.197]],"o":[[-4.756,0.197],[4.756,-0.197]],"v":[[-4.756,0.197],[4.756,-0.197]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[80.463,18.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-27.369,1.132],[27.369,-1.132]],"o":[[-27.369,1.132],[27.369,-1.132]],"v":[[-27.369,1.132],[27.369,-1.132]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.056,19.648],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.321,0.39],[8.321,-0.39]],"o":[[-8.321,0.39],[8.321,-0.39]],"v":[[-8.321,0.39],[8.321,-0.39]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[84.029,13.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-27.369,1.283],[27.369,-1.283]],"o":[[-27.369,1.283],[27.369,-1.283]],"v":[[-27.369,1.283],[27.369,-1.283]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.056,15.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.755,0.249],[4.755,-0.249]],"o":[[-4.755,0.249],[4.755,-0.249]],"v":[[-4.755,0.249],[4.755,-0.249]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[80.464,9.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-27.369,1.435],[27.369,-1.435]],"o":[[-27.369,1.435],[27.369,-1.435]],"v":[[-27.369,1.435],[27.369,-1.435]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.056,11.073],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.722,-0.307],[7.722,0.307]],"o":[[-7.722,-0.307],[7.722,0.307]],"v":[[-7.722,-0.307],[7.722,0.307]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[83.43,84.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-34.528,-1.373],[34.528,1.373]],"o":[[-34.528,-1.373],[34.528,1.373]],"v":[[-34.528,-1.373],[34.528,1.373]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.897,82.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.722,-0.133],[7.722,0.133]],"o":[[-7.722,-0.133],[7.722,0.133]],"v":[[-7.722,-0.133],[7.722,0.133]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[83.43,65.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-34.528,-0.593],[34.528,0.593]],"o":[[-34.528,-0.593],[34.528,0.593]],"v":[[-34.528,-0.593],[34.528,0.593]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.897,64.935],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.173,0.809],[13.173,-0.809]],"o":[[-13.173,0.809],[13.173,-0.809]],"v":[[-13.173,0.809],[13.173,-0.809]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[88.881,1.178],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-34.529,2.123],[34.529,-2.123]],"o":[[-34.529,2.123],[34.529,-2.123]],"v":[[-34.529,2.123],[34.529,-2.123]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.897,4.496],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1.064]},"o":{"x":[0.214],"y":[0]},"t":100,"s":[100]},{"t":281,"s":[0]}],"ix":1,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":90,"ix":3},"m":2,"ix":39,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":16,"ty":4,"nm":"Layer 38 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[146.42,19.908,0],"ix":2},"a":{"a":0,"k":[65.689,83.034,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[63.159000000000006,82.784],[-65.439,70.77],[-65.439,-70.771],[60.517,-82.537],[65.439,-80.70500000000001],[65.439,78.053]],"o":[[60.517,82.537],[-65.439,70.77],[-65.439,-70.771],[63.159000000000006,-82.784],[65.439,-78.052],[65.439,80.705]],"v":[[60.517,82.537],[-65.439,70.77],[-65.439,-70.771],[60.517,-82.537],[65.439,-78.052],[65.439,78.053]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[65.689,83.034],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":17,"ty":4,"nm":"Layer 39 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[146.943,19.908,0],"ix":2},"a":{"a":0,"k":[68.206,86.212,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[65.673,85.962],[-67.956,73.415],[-67.956,-73.415],[63.031,-85.713],[67.956,-83.883],[67.956,81.23]],"o":[[63.031,85.714],[-67.956,73.415],[-67.956,-73.415],[65.673,-85.96199999999999],[67.956,-81.229],[67.956,83.884]],"v":[[63.031,85.714],[-67.956,73.415],[-67.956,-73.415],[63.031,-85.713],[67.956,-81.229],[67.956,81.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[68.206,86.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":18,"ty":4,"nm":"Layer 40 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150.248,19.908,0],"ix":2},"a":{"a":0,"k":[68.206,86.212,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[65.67399999999999,85.962],[-67.956,73.415],[-67.956,-73.415],[63.031,-85.713],[67.956,-83.883],[67.956,81.23]],"o":[[63.031,85.714],[-67.956,73.415],[-67.956,-73.415],[65.67399999999999,-85.96199999999999],[67.956,-81.229],[67.956,83.884]],"v":[[63.031,85.714],[-67.956,73.415],[-67.956,-73.415],[63.031,-85.713],[67.956,-81.229],[67.956,81.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[68.206,86.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":19,"ty":4,"nm":"Layer 45 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.197,79.635,0],"ix":2},"a":{"a":0,"k":[9.024,23.995,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.773,21.647],[8.773,23.745],[8.773,-23.745],[-8.773,-23.745]],"o":[[-8.773,21.647],[8.773,23.745],[8.773,-23.745],[-8.773,-23.745]],"v":[[-8.773,21.647],[8.773,23.745],[8.773,-23.745],[-8.773,-23.745]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8,0.8067,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,23.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":20,"ty":4,"nm":"Layer 46 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.197,89.177,0],"ix":2},"a":{"a":0,"k":[9.024,31.593,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.773,28.381],[8.773,31.343],[8.773,-31.343],[-8.773,-31.343]],"o":[[-8.773,28.381],[8.773,31.343],[8.773,-31.343],[-8.773,-31.343]],"v":[[-8.773,28.381],[8.773,31.343],[8.773,-31.343],[-8.773,-31.343]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,31.593],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":21,"ty":4,"nm":"Layer 47 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[142.51,117.717,0],"ix":2},"a":{"a":0,"k":[2.776,3.053,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.526,1.167],[-0.54,2.803],[-2.526,0.265],[-1.536,-2.803],[1.629,-0.357]],"o":[[2.526,1.167],[-0.54,2.803],[-2.526,0.265],[-1.536,-2.803],[1.629,-0.357]],"v":[[2.526,1.167],[-0.54,2.803],[-2.526,0.265],[-1.536,-2.803],[1.629,-0.357]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.776,3.053],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":22,"ty":4,"nm":"Layer 41 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[136.263,87.864,0],"ix":2},"a":{"a":0,"k":[9.023,31.27,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.773,27.929],[8.773,31.02],[8.773,-31.02],[-8.773,-31.02]],"o":[[-8.773,27.929],[8.773,31.02],[8.773,-31.02],[-8.773,-31.02]],"v":[[-8.773,27.929],[8.773,31.02],[8.773,-31.02],[-8.773,-31.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,31.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":23,"ty":4,"nm":"Layer 42 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.915,118.62,0],"ix":2},"a":{"a":0,"k":[31.039,6.815,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-30.789,-3.117],[25.334,6.565],[30.789,3.115],[-25.333,-6.565]],"o":[[-30.789,-3.117],[25.334,6.565],[30.789,3.115],[-25.333,-6.565]],"v":[[-30.789,-3.117],[25.334,6.565],[30.789,3.115],[-25.333,-6.565]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.039,6.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":24,"ty":4,"nm":"Layer 43 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[162.598,122.927,0],"ix":2},"a":{"a":0,"k":[2.356,1.441,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.106,-1.191],[2.106,1.012],[-0.326,1.191],[-2.106,0.993],[-1.612,-0.326]],"o":[[2.106,-1.191],[2.106,1.012],[-0.326,1.191],[-2.106,0.993],[-1.612,-0.326]],"v":[[2.106,-1.191],[2.106,1.012],[-0.326,1.191],[-2.106,0.993],[-1.612,-0.326]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.356,1.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":25,"ty":4,"nm":"Layer 44 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[105.434,116.434,0],"ix":2},"a":{"a":0,"k":[2.556,1.534,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.306,1.273],[-2.306,-0.93],[1.779,-1.284],[2.306,1.284]],"o":[[-2.306,1.273],[-2.306,-0.93],[1.779,-1.284],[2.306,1.284]],"v":[[-2.306,1.273],[-2.306,-0.93],[1.779,-1.284],[2.306,1.284]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.556,1.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":26,"ty":4,"nm":"Layer 8 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[133.917,120.823,0],"ix":2},"a":{"a":0,"k":[31.039,6.816,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-30.789,-3.117],[25.334,6.566],[30.789,3.115],[-25.334,-6.566]],"o":[[-30.789,-3.117],[25.334,6.566],[30.789,3.115],[-25.334,-6.566]],"v":[[-30.789,-3.117],[25.334,6.566],[30.789,3.115],[-25.334,-6.566]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.039,6.816],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":27,"ty":4,"nm":"left monitor text","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-150.247,22.177,0],"ix":2},"a":{"a":0,"k":[53.163,51.413,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.798,-0.66],[-10.798,0.66]],"o":[[10.798,-0.66],[-10.798,0.66]],"v":[[10.798,-0.66],[-10.798,0.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[21.162,101.798],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.478,-0.335],[-5.478,0.335]],"o":[[5.478,-0.335],[-5.478,0.335]],"v":[[5.478,-0.335],[-5.478,0.335]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[43.699,100.421],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.844,-0.76],[-13.844,0.76]],"o":[[13.844,-0.76],[-13.844,0.76]],"v":[[13.844,-0.76],[-13.844,0.76]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[18.116,96.823],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.823,-0.21],[-3.823,0.21]],"o":[[3.823,-0.21],[-3.823,0.21]],"v":[[3.823,-0.21],[-3.823,0.21]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.044,95.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.798,-0.525],[-10.798,0.525]],"o":[[10.798,-0.525],[-10.798,0.525]],"v":[[10.798,-0.525],[-10.798,0.525]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[21.162,91.512],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.478,-0.266],[-5.478,0.266]],"o":[[5.478,-0.266],[-5.478,0.266]],"v":[[5.478,-0.266],[-5.478,0.266]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[43.699,90.418],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[15.796,-0.521],[-15.796,0.521]],"o":[[15.796,-0.521],[-15.796,0.521]],"v":[[15.796,-0.521],[-15.796,0.521]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[16.164,78.922],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.583,-0.415],[-12.583,0.415]],"o":[[12.583,-0.415],[-12.583,0.415]],"v":[[12.583,-0.415],[-12.583,0.415]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[50.804,77.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.37,-0.272],[-10.37,0.272]],"o":[[10.37,-0.272],[-10.37,0.272]],"v":[[10.37,-0.272],[-10.37,0.272]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.738,73.476],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.924,-0.47],[-17.924,0.47]],"o":[[17.924,-0.47],[-17.924,0.47]],"v":[[17.924,-0.47],[-17.924,0.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.462,72.566],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.128,-0.105],[-10.128,0.105]],"o":[[10.128,-0.105],[-10.128,0.105]],"v":[[10.128,-0.105],[-10.128,0.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.491,60.249],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.522,-0.182],[-17.522,0.182]],"o":[[17.522,-0.182],[-17.522,0.182]],"v":[[17.522,-0.182],[-17.522,0.182]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[54.423,59.898],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.928,-0.051],[-13.928,0.051]],"o":[[13.928,-0.051],[-13.928,0.051]],"v":[[13.928,-0.051],[-13.928,0.051]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[24.293,54.677],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.78,-0.05],[-13.78,0.05]],"o":[[13.78,-0.05],[-13.78,0.05]],"v":[[13.78,-0.05],[-13.78,0.05]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[58.165,54.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.128,0.032],[-10.128,-0.032]],"o":[[10.128,0.032],[-10.128,-0.032]],"v":[[10.128,0.032],[-10.128,-0.032]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.491,49.132],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.522,0.055],[-17.522,-0.055]],"o":[[17.522,0.055],[-17.522,-0.055]],"v":[[17.522,0.055],[-17.522,-0.055]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[54.423,49.24],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.928,0.139],[-13.928,-0.139]],"o":[[13.928,0.139],[-13.928,-0.139]],"v":[[13.928,0.139],[-13.928,-0.139]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[24.293,43.611],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.78,0.137],[-13.78,-0.137]],"o":[[13.78,0.137],[-13.78,-0.137]],"v":[[13.78,0.137],[-13.78,-0.137]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[58.165,43.949],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.128,0.17],[-10.128,-0.17]],"o":[[10.128,0.17],[-10.128,-0.17]],"v":[[10.128,0.17],[-10.128,-0.17]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.491,38.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.522,0.294],[-17.522,-0.294]],"o":[[17.522,0.294],[-17.522,-0.294]],"v":[[17.522,0.294],[-17.522,-0.294]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[54.423,38.582],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.128,0.238],[-10.128,-0.238]],"o":[[10.128,0.238],[-10.128,-0.238]],"v":[[10.128,0.238],[-10.128,-0.238]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.491,32.454],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.522,0.413],[-17.522,-0.413]],"o":[[17.522,0.413],[-17.522,-0.413]],"v":[[17.522,0.413],[-17.522,-0.413]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[54.423,33.253],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.756,0.144],[-4.756,-0.144]],"o":[[4.756,0.144],[-4.756,-0.144]],"v":[[4.756,0.144],[-4.756,-0.144]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.863,27.058],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.37,0.83],[-27.37,-0.83]],"o":[[27.37,0.83],[-27.37,-0.83]],"v":[[27.37,0.83],[-27.37,-0.83]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.271,28.223],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.322,0.298],[-8.322,-0.298]],"o":[[8.322,0.298],[-8.322,-0.298]],"v":[[8.322,0.298],[-8.322,-0.298]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.297,22.431],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.37,0.981],[-27.37,-0.981]],"o":[[27.37,0.981],[-27.37,-0.981]],"v":[[27.37,0.981],[-27.37,-0.981]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.271,23.936],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.756,0.197],[-4.756,-0.197]],"o":[[4.756,0.197],[-4.756,-0.197]],"v":[[4.756,0.197],[-4.756,-0.197]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.863,18.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.37,1.132],[-27.37,-1.132]],"o":[[27.37,1.132],[-27.37,-1.132]],"v":[[27.37,1.132],[-27.37,-1.132]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.271,19.648],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.322,0.39],[-8.322,-0.39]],"o":[[8.322,0.39],[-8.322,-0.39]],"v":[[8.322,0.39],[-8.322,-0.39]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.297,13.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.37,1.283],[-27.37,-1.283]],"o":[[27.37,1.283],[-27.37,-1.283]],"v":[[27.37,1.283],[-27.37,-1.283]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.271,15.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.756,0.249],[-4.756,-0.249]],"o":[[4.756,0.249],[-4.756,-0.249]],"v":[[4.756,0.249],[-4.756,-0.249]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.863,9.059],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.369,1.435],[-27.369,-1.435]],"o":[[27.369,1.435],[-27.369,-1.435]],"v":[[27.369,1.435],[-27.369,-1.435]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.27,11.073],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.722,-0.307],[-7.722,0.307]],"o":[[7.722,-0.307],[-7.722,0.307]],"v":[[7.722,-0.307],[-7.722,0.307]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.897,84.243],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.529,-1.373],[-34.529,1.373]],"o":[[34.529,-1.373],[-34.529,1.373]],"v":[[34.529,-1.373],[-34.529,1.373]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[71.429,82.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.723,-0.133],[-7.723,0.133]],"o":[[7.723,-0.133],[-7.723,0.133]],"v":[[7.723,-0.133],[-7.723,0.133]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.896,65.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.529,-0.593],[-34.529,0.593]],"o":[[34.529,-0.593],[-34.529,0.593]],"v":[[34.529,-0.593],[-34.529,0.593]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[71.429,64.935],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.174,0.809],[-13.174,-0.809]],"o":[[13.174,0.809],[-13.174,-0.809]],"v":[[13.174,0.809],[-13.174,-0.809]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[17.445,1.178],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.529,2.123],[-34.529,-2.123]],"o":[[34.529,2.123],[-34.529,-2.123]],"v":[[34.529,2.123],[-34.529,-2.123]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[71.429,4.496],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":2,"s":[100]},{"t":191,"s":[0]}],"ix":1,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":90,"ix":3},"m":2,"ix":39,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":28,"ty":4,"nm":"Layer 49 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-146.42,19.908,0],"ix":2},"a":{"a":0,"k":[65.69,83.034,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-63.159000000000006,82.784],[65.44,70.77],[65.44,-70.771],[-60.517,-82.537],[-65.44,-80.70500000000001],[-65.44,78.053]],"o":[[-60.517,82.537],[65.44,70.77],[65.44,-70.771],[-63.159000000000006,-82.784],[-65.44,-78.052],[-65.44,80.705]],"v":[[-60.517,82.537],[65.44,70.77],[65.44,-70.771],[-60.517,-82.537],[-65.44,-78.052],[-65.44,78.053]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[65.69,83.034],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":29,"ty":4,"nm":"Layer 50 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-146.942,19.908,0],"ix":2},"a":{"a":0,"k":[68.206,86.212,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-65.67399999999999,85.962],[67.956,73.415],[67.956,-73.415],[-63.031,-85.713],[-67.956,-83.883],[-67.956,81.23]],"o":[[-63.031,85.714],[67.956,73.415],[67.956,-73.415],[-65.67399999999999,-85.96199999999999],[-67.956,-81.229],[-67.956,83.884]],"v":[[-63.031,85.714],[67.956,73.415],[67.956,-73.415],[-63.031,-85.713],[-67.956,-81.229],[-67.956,81.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[68.206,86.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":30,"ty":4,"nm":"Layer 51 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-150.248,19.908,0],"ix":2},"a":{"a":0,"k":[68.206,86.212,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-65.673,85.962],[67.956,73.415],[67.956,-73.415],[-63.031,-85.713],[-67.956,-83.883],[-67.956,81.23]],"o":[[-63.031,85.714],[67.956,73.415],[67.956,-73.415],[-65.673,-85.96199999999999],[-67.956,-81.229],[-67.956,83.884]],"v":[[-63.031,85.714],[67.956,73.415],[67.956,-73.415],[-63.031,-85.713],[-67.956,-81.229],[-67.956,81.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[68.206,86.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":31,"ty":4,"nm":"Layer 53 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-133.197,79.635,0],"ix":2},"a":{"a":0,"k":[9.023,23.995,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.773,21.647],[-8.773,23.745],[-8.773,-23.745],[8.773,-23.745]],"o":[[8.773,21.647],[-8.773,23.745],[-8.773,-23.745],[8.773,-23.745]],"v":[[8.773,21.647],[-8.773,23.745],[-8.773,-23.745],[8.773,-23.745]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8,0.8067,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,23.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":32,"ty":4,"nm":"Layer 54 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-133.197,89.177,0],"ix":2},"a":{"a":0,"k":[9.023,31.593,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.773,28.381],[-8.773,31.343],[-8.773,-31.343],[8.773,-31.343]],"o":[[8.773,28.381],[-8.773,31.343],[-8.773,-31.343],[8.773,-31.343]],"v":[[8.773,28.381],[-8.773,31.343],[-8.773,-31.343],[8.773,-31.343]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,31.593],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":33,"ty":4,"nm":"Layer 55 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-142.51,117.717,0],"ix":2},"a":{"a":0,"k":[2.776,3.053,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.525,1.167],[0.539,2.803],[2.525,0.265],[1.536,-2.803],[-1.63,-0.357]],"o":[[-2.525,1.167],[0.539,2.803],[2.525,0.265],[1.536,-2.803],[-1.63,-0.357]],"v":[[-2.525,1.167],[0.539,2.803],[2.525,0.265],[1.536,-2.803],[-1.63,-0.357]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.776,3.053],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":34,"ty":4,"nm":"Layer 52 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-136.262,87.864,0],"ix":2},"a":{"a":0,"k":[9.023,31.27,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.773,27.929],[-8.773,31.02],[-8.773,-31.02],[8.773,-31.02]],"o":[[8.773,27.929],[-8.773,31.02],[-8.773,-31.02],[8.773,-31.02]],"v":[[8.773,27.929],[-8.773,31.02],[-8.773,-31.02],[8.773,-31.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,31.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":35,"ty":4,"nm":"Layer 56 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-133.916,118.62,0],"ix":2},"a":{"a":0,"k":[31.039,6.815,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[30.789,-3.117],[-25.333,6.565],[-30.789,3.115],[25.334,-6.565]],"o":[[30.789,-3.117],[-25.333,6.565],[-30.789,3.115],[25.334,-6.565]],"v":[[30.789,-3.117],[-25.333,6.565],[-30.789,3.115],[25.334,-6.565]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.039,6.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":36,"ty":4,"nm":"Layer 57 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-162.598,122.927,0],"ix":2},"a":{"a":0,"k":[2.356,1.441,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.107,-1.191],[-2.107,1.012],[0.327,1.191],[2.107,0.993],[1.613,-0.326]],"o":[[-2.107,-1.191],[-2.107,1.012],[0.327,1.191],[2.107,0.993],[1.613,-0.326]],"v":[[-2.107,-1.191],[-2.107,1.012],[0.327,1.191],[2.107,0.993],[1.613,-0.326]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.356,1.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":37,"ty":4,"nm":"Layer 58 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-105.434,116.434,0],"ix":2},"a":{"a":0,"k":[2.557,1.534,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.307,1.273],[2.307,-0.93],[-1.78,-1.284],[-2.307,1.284]],"o":[[2.307,1.273],[2.307,-0.93],[-1.78,-1.284],[-2.307,1.284]],"v":[[2.307,1.273],[2.307,-0.93],[-1.78,-1.284],[-2.307,1.284]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.557,1.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":38,"ty":4,"nm":"Layer 9 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-133.917,120.823,0],"ix":2},"a":{"a":0,"k":[31.039,6.816,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[30.789,-3.117],[-25.334,6.566],[-30.789,3.115],[25.333,-6.566]],"o":[[30.789,-3.117],[-25.334,6.566],[-30.789,3.115],[25.333,-6.566]],"v":[[30.789,-3.117],[-25.334,6.566],[-30.789,3.115],[25.333,-6.566]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.039,6.816],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":39,"ty":4,"nm":"middle monitor text","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0.694,14.708,0],"ix":2},"a":{"a":0,"k":[67.904,52.453,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[28.255,32.429],[8.962,32.429]],"o":[[28.255,32.429],[8.962,32.429]],"v":[[28.255,32.429],[8.962,32.429]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[44.39,32.429],[34.042,32.429]],"o":[[44.39,32.429],[34.042,32.429]],"v":[[44.39,32.429],[34.042,32.429]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[28.255,36.417],[3.701,36.417]],"o":[[28.255,36.417],[3.701,36.417]],"v":[[28.255,36.417],[3.701,36.417]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[41.233,36.417],[34.043,36.417]],"o":[[41.233,36.417],[34.043,36.417]],"v":[[41.233,36.417],[34.043,36.417]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[28.255,40.405],[8.962,40.405]],"o":[[28.255,40.405],[8.962,40.405]],"v":[[28.255,40.405],[8.962,40.405]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[44.39,40.405],[34.042,40.405]],"o":[[44.39,40.405],[34.042,40.405]],"v":[[44.39,40.405],[34.042,40.405]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[28.255,50.297],[0.368,50.297]],"o":[[28.255,50.297],[0.368,50.297]],"v":[[28.255,50.297],[0.368,50.297]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[58.246,50.297],[34.043,50.297]],"o":[[58.246,50.297],[34.043,50.297]],"v":[[58.246,50.297],[34.043,50.297]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[18.433,54.604],[0.369,54.604]],"o":[[18.433,54.604],[0.369,54.604]],"v":[[18.433,54.604],[0.369,54.604]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[58.246,54.604],[24.221,54.604]],"o":[[58.246,54.604],[24.221,54.604]],"v":[[58.246,54.604],[24.221,54.604]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,64.654],[8.963,64.654]],"o":[[27.027,64.654],[8.963,64.654]],"v":[[27.027,64.654],[8.963,64.654]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,64.654],[32.814,64.654]],"o":[[66.839,64.654],[32.814,64.654]],"v":[[66.839,64.654],[32.814,64.654]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.043,68.962],[8.963,68.962]],"o":[[34.043,68.962],[8.963,68.962]],"v":[[34.043,68.962],[8.963,68.962]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,68.962],[39.829,68.962]],"o":[[66.839,68.962],[39.829,68.962]],"v":[[66.839,68.962],[39.829,68.962]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,73.269],[8.963,73.269]],"o":[[27.027,73.269],[8.963,73.269]],"v":[[27.027,73.269],[8.963,73.269]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,73.269],[32.814,73.269]],"o":[[66.839,73.269],[32.814,73.269]],"v":[[66.839,73.269],[32.814,73.269]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.043,77.577],[8.963,77.577]],"o":[[34.043,77.577],[8.963,77.577]],"v":[[34.043,77.577],[8.963,77.577]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,77.577],[39.829,77.577]],"o":[[66.839,77.577],[39.829,77.577]],"v":[[66.839,77.577],[39.829,77.577]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,81.885],[8.963,81.885]],"o":[[27.027,81.885],[8.963,81.885]],"v":[[27.027,81.885],[8.963,81.885]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,81.885],[32.814,81.885]],"o":[[66.839,81.885],[32.814,81.885]],"v":[[66.839,81.885],[32.814,81.885]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,86.191],[8.963,86.191]],"o":[[27.027,86.191],[8.963,86.191]],"v":[[27.027,86.191],[8.963,86.191]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[66.839,86.191],[32.814,86.191]],"o":[[66.839,86.191],[32.814,86.191]],"v":[[66.839,86.191],[32.814,86.191]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,94.009],[12.119,94.009]],"o":[[27.027,94.009],[12.119,94.009]],"v":[[27.027,94.009],[12.119,94.009]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[87.359,94.009],[32.814,94.009]],"o":[[87.359,94.009],[32.814,94.009]],"v":[[87.359,94.009],[32.814,94.009]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,97.518],[18.433,97.518]],"o":[[27.027,97.518],[18.433,97.518]],"v":[[27.027,97.518],[18.433,97.518]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[87.359,97.518],[32.814,97.518]],"o":[[87.359,97.518],[32.814,97.518]],"v":[[87.359,97.518],[32.814,97.518]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,101.028],[12.119,101.028]],"o":[[27.027,101.028],[12.119,101.028]],"v":[[27.027,101.028],[12.119,101.028]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[87.359,101.028],[32.814,101.028]],"o":[[87.359,101.028],[32.814,101.028]],"v":[[87.359,101.028],[32.814,101.028]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,104.538],[18.433,104.538]],"o":[[27.027,104.538],[18.433,104.538]],"v":[[27.027,104.538],[18.433,104.538]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[87.359,104.538],[32.814,104.538]],"o":[[87.359,104.538],[32.814,104.538]],"v":[[87.359,104.538],[32.814,104.538]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,20.464],[3.701,20.464]],"o":[[27.027,20.464],[3.701,20.464]],"v":[[27.027,20.464],[3.701,20.464]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[102.968,20.464],[32.814,20.464]],"o":[[102.968,20.464],[32.814,20.464]],"v":[[102.968,20.464],[32.814,20.464]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[27.027,60.347],[13.172,60.347]],"o":[[27.027,60.347],[13.172,60.347]],"v":[[27.027,60.347],[13.172,60.347]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[102.968,60.347],[32.814,60.347]],"o":[[102.968,60.347],[32.814,60.347]],"v":[[102.968,60.347],[32.814,60.347]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[107.554,72.477],[126.846,72.477]],"o":[[107.554,72.477],[126.846,72.477]],"v":[[107.554,72.477],[126.846,72.477]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[91.419,72.477],[101.767,72.477]],"o":[[91.419,72.477],[101.767,72.477]],"v":[[91.419,72.477],[101.767,72.477]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[107.554,68.489],[132.108,68.489]],"o":[[107.554,68.489],[132.108,68.489]],"v":[[107.554,68.489],[132.108,68.489]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[94.576,68.489],[101.766,68.489]],"o":[[94.576,68.489],[101.766,68.489]],"v":[[94.576,68.489],[101.766,68.489]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[107.554,64.501],[126.846,64.501]],"o":[[107.554,64.501],[126.846,64.501]],"v":[[107.554,64.501],[126.846,64.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[91.419,64.501],[101.767,64.501]],"o":[[91.419,64.501],[101.767,64.501]],"v":[[91.419,64.501],[101.767,64.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[107.554,54.61],[135.44,54.61]],"o":[[107.554,54.61],[135.44,54.61]],"v":[[107.554,54.61],[135.44,54.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[77.563,54.61],[101.766,54.61]],"o":[[77.563,54.61],[101.766,54.61]],"v":[[77.563,54.61],[101.766,54.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[117.376,50.303],[135.44,50.303]],"o":[[117.376,50.303],[135.44,50.303]],"v":[[117.376,50.303],[135.44,50.303]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[77.563,50.303],[111.587,50.303]],"o":[[77.563,50.303],[111.587,50.303]],"v":[[77.563,50.303],[111.587,50.303]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,40.252],[126.846,40.252]],"o":[[108.782,40.252],[126.846,40.252]],"v":[[108.782,40.252],[126.846,40.252]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,40.252],[102.993,40.252]],"o":[[68.969,40.252],[102.993,40.252]],"v":[[68.969,40.252],[102.993,40.252]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[101.766,35.944],[126.846,35.944]],"o":[[101.766,35.944],[126.846,35.944]],"v":[[101.766,35.944],[126.846,35.944]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,35.944],[95.978,35.944]],"o":[[68.969,35.944],[95.978,35.944]],"v":[[68.969,35.944],[95.978,35.944]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,31.637],[126.846,31.637]],"o":[[108.782,31.637],[126.846,31.637]],"v":[[108.782,31.637],[126.846,31.637]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,31.637],[102.993,31.637]],"o":[[68.969,31.637],[102.993,31.637]],"v":[[68.969,31.637],[102.993,31.637]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[101.766,27.329],[126.846,27.329]],"o":[[101.766,27.329],[126.846,27.329]],"v":[[101.766,27.329],[126.846,27.329]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.622,0.6272,0.778,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,27.329],[95.978,27.329]],"o":[[68.969,27.329],[95.978,27.329]],"v":[[68.969,27.329],[95.978,27.329]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,23.022],[126.846,23.022]],"o":[[108.782,23.022],[126.846,23.022]],"v":[[108.782,23.022],[126.846,23.022]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,23.022],[102.993,23.022]],"o":[[68.969,23.022],[102.993,23.022]],"v":[[68.969,23.022],[102.993,23.022]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,18.715],[126.846,18.715]],"o":[[108.782,18.715],[126.846,18.715]],"v":[[108.782,18.715],[126.846,18.715]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[68.969,18.715],[102.993,18.715]],"o":[[68.969,18.715],[102.993,18.715]],"v":[[68.969,18.715],[102.993,18.715]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,10.898],[123.689,10.898]],"o":[[108.782,10.898],[123.689,10.898]],"v":[[108.782,10.898],[123.689,10.898]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[48.449,10.898],[102.994,10.898]],"o":[[48.449,10.898],[102.994,10.898]],"v":[[48.449,10.898],[102.994,10.898]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,7.388],[117.376,7.388]],"o":[[108.782,7.388],[117.376,7.388]],"v":[[108.782,7.388],[117.376,7.388]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[48.449,7.388],[102.994,7.388]],"o":[[48.449,7.388],[102.994,7.388]],"v":[[48.449,7.388],[102.994,7.388]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,3.878],[123.689,3.878]],"o":[[108.782,3.878],[123.689,3.878]],"v":[[108.782,3.878],[123.689,3.878]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[48.449,3.878],[102.994,3.878]],"o":[[48.449,3.878],[102.994,3.878]],"v":[[48.449,3.878],[102.994,3.878]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 62","np":2,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,0.368],[117.376,0.368]],"o":[[108.782,0.368],[117.376,0.368]],"v":[[108.782,0.368],[117.376,0.368]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[48.449,0.368],[102.994,0.368]],"o":[[48.449,0.368],[102.994,0.368]],"v":[[48.449,0.368],[102.994,0.368]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,84.442],[132.108,84.442]],"o":[[108.782,84.442],[132.108,84.442]],"v":[[108.782,84.442],[132.108,84.442]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[32.839,84.442],[102.993,84.442]],"o":[[32.839,84.442],[102.993,84.442]],"v":[[32.839,84.442],[102.993,84.442]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[108.782,44.559],[122.637,44.559]],"o":[[108.782,44.559],[122.637,44.559]],"v":[[108.782,44.559],[122.637,44.559]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 67","np":2,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[32.839,44.559],[102.993,44.559]],"o":[[32.839,44.559],[102.993,44.559]],"v":[[32.839,44.559],[102.993,44.559]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.737,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[0.922]},"o":{"x":[0.333],"y":[0]},"t":39,"s":[100]},{"t":217,"s":[0]}],"ix":1,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":90,"ix":3},"m":2,"ix":69,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":40,"ty":4,"nm":"Layer 11 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,19.909,0],"ix":2},"a":{"a":0,"k":[76.918,71.021,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[76.668,70.771],[-76.668,70.771],[-76.668,-70.771],[76.668,-70.771]],"o":[[76.668,70.771],[-76.668,70.771],[-76.668,-70.771],[76.668,-70.771]],"v":[[76.668,70.771],[-76.668,70.771],[-76.668,-70.771],[76.668,-70.771]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[76.918,71.021],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":41,"ty":4,"nm":"Layer 12 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,19.908,0],"ix":2},"a":{"a":0,"k":[79.237,73.665,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[78.987,73.415],[-78.987,73.415],[-78.987,-73.415],[78.987,-73.415]],"o":[[78.987,73.415],[-78.987,73.415],[-78.987,-73.415],[78.987,-73.415]],"v":[[78.987,73.415],[-78.987,73.415],[-78.987,-73.415],[78.987,-73.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.312,0.4,0.488,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[79.237,73.665],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":42,"ty":4,"nm":"Layer 59 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,104.221,0],"ix":2},"a":{"a":0,"k":[34.344,1.882,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[29.509,-1.632],[-29.509,-1.632],[-34.094,1.632],[34.094,1.632]],"o":[[29.509,-1.632],[-29.509,-1.632],[-34.094,1.632],[34.094,1.632]],"v":[[29.509,-1.632],[-29.509,-1.632],[-34.094,1.632],[34.094,1.632]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.344,1.882],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":43,"ty":4,"nm":"Layer 60 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,107.171,0],"ix":2},"a":{"a":0,"k":[34.344,1.569,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[34.094,1.319],[-34.094,1.319],[-34.094,-1.319],[34.094,-1.319]],"o":[[34.094,1.319],[-34.094,1.319],[-34.094,-1.319],[34.094,-1.319]],"v":[[34.094,1.319],[-34.094,1.319],[-34.094,-1.319],[34.094,-1.319]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.664,0.6731,0.936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.344,1.569],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":44,"ty":4,"nm":"Layer 61 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,83.465,0],"ix":2},"a":{"a":0,"k":[9.023,14.503,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.773,14.253],[-8.773,14.253],[-8.773,-14.253],[8.773,-14.253]],"o":[[8.773,14.253],[-8.773,14.253],[-8.773,-14.253],[8.773,-14.253]],"v":[[8.773,14.253],[-8.773,14.253],[-8.773,-14.253],[8.773,-14.253]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8,0.8067,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,14.503],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":45,"ty":4,"nm":"Layer 13 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,88.521,0],"ix":2},"a":{"a":0,"k":[9.023,19.56,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.773,19.31],[-8.773,19.31],[-8.773,-19.31],[8.773,-19.31]],"o":[[8.773,19.31],[-8.773,19.31],[-8.773,-19.31],[8.773,-19.31]],"v":[[8.773,19.31],[-8.773,19.31],[-8.773,-19.31],[8.773,-19.31]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9,0.9033,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.023,19.56],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":46,"ty":4,"nm":"Layer 14 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[134.699,120.33,0],"ix":2},"a":{"a":0,"k":[47.331,10.92,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-47.08,-10.67],[-26.003,1.633],[47.08,10.67],[26.000999999999998,-1.6319999999999997]],"o":[[-47.08,-4.300000000000001],[26.000999999999998,9.901],[47.08,4.301],[-26.003,-9.9]],"v":[[-47.08,-7.485],[-0.001,5.767],[47.08,7.486],[-0.001,-5.766]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[47.331,10.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":47,"ty":4,"nm":"Layer 15 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-134.698,120.33,0],"ix":2},"a":{"a":0,"k":[47.33,10.92,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[47.081,-10.67],[26.000999999999998,1.633],[-47.081,10.67],[-26.002000000000002,-1.6319999999999997]],"o":[[47.081,-4.300000000000001],[-26.002000000000002,9.901],[-47.081,4.301],[26.000999999999998,-9.9]],"v":[[47.081,-7.485],[-0.001,5.767],[-47.081,7.486],[-0.001,-5.766]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[47.33,10.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":48,"ty":4,"nm":"Layer 16 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-3.431,108.49,0],"ix":2},"a":{"a":0,"k":[64.021,6.017,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[63.771,-3.185],[35.219,5.767],[-63.771,3.186],[-35.221,-5.767]],"o":[[63.771,3.186],[-35.221,5.767],[-63.771,-3.185],[35.219,-5.767]],"v":[[63.771,0],[0,5.767],[-63.771,0],[0,-5.767]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[64.021,6.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":49,"ty":4,"nm":"Layer 25 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0.651,126.333,0],"ix":2},"a":{"a":0,"k":[74.616,8.886,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.667,1.214],[-4.905,1.214],[-6.667,-1.214],[4.557,-1.214]],"o":[[6.667,1.214],[-4.905,1.214],[-6.667,-1.214],[4.557,-1.214]],"v":[[6.667,1.214],[-4.905,1.214],[-6.667,-1.214],[4.557,-1.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[138.284,12.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.451,1.214],[-5.121,1.214],[-6.451,-1.214],[4.773,-1.214]],"o":[[6.451,1.214],[-5.121,1.214],[-6.451,-1.214],[4.773,-1.214]],"v":[[6.451,1.214],[-5.121,1.214],[-6.451,-1.214],[4.773,-1.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[124.092,12.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[41.803,1.214],[-41.803,1.214],[-40.542,-1.214],[40.558,-1.214]],"o":[[41.803,1.214],[-41.803,1.214],[-40.542,-1.214],[40.558,-1.214]],"v":[[41.803,1.214],[-41.803,1.214],[-40.542,-1.214],[40.558,-1.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.333,12.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.112,1.214],[-6.459,1.214],[-4.766,-1.214],[6.459,-1.214]],"o":[[5.112,1.214],[-6.459,1.214],[-4.766,-1.214],[6.459,-1.214]],"v":[[5.112,1.214],[-6.459,1.214],[-4.766,-1.214],[6.459,-1.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[24.581,12.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.897,1.214],[-6.675,1.214],[-4.549,-1.214],[6.675,-1.214]],"o":[[4.897,1.214],[-6.675,1.214],[-4.549,-1.214],[6.675,-1.214]],"v":[[4.897,1.214],[-6.675,1.214],[-4.549,-1.214],[6.675,-1.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.39,12.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.374,1.122],[-4.745,1.122],[-6.374,-1.122],[4.425,-1.122]],"o":[[6.374,1.122],[-4.745,1.122],[-6.374,-1.122],[4.425,-1.122]],"v":[[6.374,1.122],[-4.745,1.122],[-6.374,-1.122],[4.425,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[135.827,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.174,1.122],[-4.944,1.122],[-6.174,-1.122],[4.624,-1.122]],"o":[[6.174,1.122],[-4.944,1.122],[-6.174,-1.122],[4.624,-1.122]],"v":[[6.174,1.122],[-4.944,1.122],[-6.174,-1.122],[4.624,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[122.182,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.974,1.122],[-5.144,1.122],[-5.974,-1.122],[4.824,-1.122]],"o":[[5.974,1.122],[-5.144,1.122],[-5.974,-1.122],[4.824,-1.122]],"v":[[5.974,1.122],[-5.144,1.122],[-5.974,-1.122],[4.824,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[108.539,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.775,1.122],[-5.344,1.122],[-5.775,-1.122],[5.024,-1.122]],"o":[[5.775,1.122],[-5.344,1.122],[-5.775,-1.122],[5.024,-1.122]],"v":[[5.775,1.122],[-5.344,1.122],[-5.775,-1.122],[5.024,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[94.894,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.575,1.122],[-5.544,1.122],[-5.575,-1.122],[5.222,-1.122]],"o":[[5.575,1.122],[-5.544,1.122],[-5.575,-1.122],[5.222,-1.122]],"v":[[5.575,1.122],[-5.544,1.122],[-5.575,-1.122],[5.222,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[81.25,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.535,1.122],[-5.583,1.122],[-5.215,-1.122],[5.583,-1.122]],"o":[[5.535,1.122],[-5.583,1.122],[-5.215,-1.122],[5.583,-1.122]],"v":[[5.535,1.122],[-5.583,1.122],[-5.215,-1.122],[5.583,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[67.445,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.336,1.122],[-5.782,1.122],[-5.016,-1.122],[5.782,-1.122]],"o":[[5.336,1.122],[-5.782,1.122],[-5.016,-1.122],[5.782,-1.122]],"v":[[5.336,1.122],[-5.782,1.122],[-5.016,-1.122],[5.782,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[53.801,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.137,1.122],[-5.982,1.122],[-4.816,-1.122],[5.982,-1.122]],"o":[[5.137,1.122],[-5.982,1.122],[-4.816,-1.122],[5.982,-1.122]],"v":[[5.137,1.122],[-5.982,1.122],[-4.816,-1.122],[5.982,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[40.156,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.937,1.122],[-6.182,1.122],[-4.617,-1.122],[6.182,-1.122]],"o":[[4.937,1.122],[-6.182,1.122],[-4.617,-1.122],[6.182,-1.122]],"v":[[4.937,1.122],[-6.182,1.122],[-4.617,-1.122],[6.182,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[26.512,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.737,1.122],[-6.382,1.122],[-4.416,-1.122],[6.382,-1.122]],"o":[[4.737,1.122],[-6.382,1.122],[-4.416,-1.122],[6.382,-1.122]],"v":[[4.737,1.122],[-6.382,1.122],[-4.416,-1.122],[6.382,-1.122]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[12.868,9.803],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.106,1.04],[-4.596,1.04],[-6.106,-1.04],[4.298,-1.04]],"o":[[6.106,1.04],[-4.596,1.04],[-6.106,-1.04],[4.298,-1.04]],"v":[[6.106,1.04],[-4.596,1.04],[-6.106,-1.04],[4.298,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[133.554,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.921,1.04],[-4.781,1.04],[-5.921,-1.04],[4.483,-1.04]],"o":[[5.921,1.04],[-4.781,1.04],[-5.921,-1.04],[4.483,-1.04]],"v":[[5.921,1.04],[-4.781,1.04],[-5.921,-1.04],[4.483,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[120.415,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.736,1.04],[-4.966,1.04],[-5.736,-1.04],[4.668,-1.04]],"o":[[5.736,1.04],[-4.966,1.04],[-5.736,-1.04],[4.668,-1.04]],"v":[[5.736,1.04],[-4.966,1.04],[-5.736,-1.04],[4.668,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[107.277,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.551,1.04],[-5.151,1.04],[-5.551,-1.04],[4.853,-1.04]],"o":[[5.551,1.04],[-5.151,1.04],[-5.551,-1.04],[4.853,-1.04]],"v":[[5.551,1.04],[-5.151,1.04],[-5.551,-1.04],[4.853,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[94.139,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.365,1.04],[-5.335,1.04],[-5.365,-1.04],[5.039,-1.04]],"o":[[5.365,1.04],[-5.335,1.04],[-5.365,-1.04],[5.039,-1.04]],"v":[[5.365,1.04],[-5.335,1.04],[-5.365,-1.04],[5.039,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[81,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.328,1.04],[-5.372,1.04],[-5.031,-1.04],[5.372,-1.04]],"o":[[5.328,1.04],[-5.372,1.04],[-5.031,-1.04],[5.372,-1.04]],"v":[[5.328,1.04],[-5.372,1.04],[-5.031,-1.04],[5.372,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[67.714,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.143,1.04],[-5.557,1.04],[-4.846,-1.04],[5.557,-1.04]],"o":[[5.143,1.04],[-5.557,1.04],[-4.846,-1.04],[5.557,-1.04]],"v":[[5.143,1.04],[-5.557,1.04],[-4.846,-1.04],[5.557,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[54.576,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.958,1.04],[-5.742,1.04],[-4.661,-1.04],[5.742,-1.04]],"o":[[4.958,1.04],[-5.742,1.04],[-4.661,-1.04],[5.742,-1.04]],"v":[[4.958,1.04],[-5.742,1.04],[-4.661,-1.04],[5.742,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[41.437,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.773,1.04],[-5.927,1.04],[-4.475,-1.04],[5.927,-1.04]],"o":[[4.773,1.04],[-5.927,1.04],[-4.475,-1.04],[5.927,-1.04]],"v":[[4.773,1.04],[-5.927,1.04],[-4.475,-1.04],[5.927,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.299,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.588,1.04],[-6.113,1.04],[-4.29,-1.04],[6.113,-1.04]],"o":[[4.588,1.04],[-6.113,1.04],[-4.29,-1.04],[6.113,-1.04]],"v":[[4.588,1.04],[-6.113,1.04],[-4.29,-1.04],[6.113,-1.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.161,6.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.859,0.967],[-4.455,0.967],[-5.859,-0.967],[4.177,-0.967]],"o":[[5.859,0.967],[-4.455,0.967],[-5.859,-0.967],[4.177,-0.967]],"v":[[5.859,0.967],[-4.455,0.967],[-5.859,-0.967],[4.177,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[131.442,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.687,0.967],[-4.627,0.967],[-5.687,-0.967],[4.35,-0.967]],"o":[[5.687,0.967],[-4.627,0.967],[-5.687,-0.967],[4.35,-0.967]],"v":[[5.687,0.967],[-4.627,0.967],[-5.687,-0.967],[4.35,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[118.774,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.514,0.967],[-4.799,0.967],[-5.514,-0.967],[4.522,-0.967]],"o":[[5.514,0.967],[-4.799,0.967],[-5.514,-0.967],[4.522,-0.967]],"v":[[5.514,0.967],[-4.799,0.967],[-5.514,-0.967],[4.522,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[106.106,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.343,0.967],[-4.971,0.967],[-5.343,-0.967],[4.695,-0.967]],"o":[[5.343,0.967],[-4.971,0.967],[-5.343,-0.967],[4.695,-0.967]],"v":[[5.343,0.967],[-4.971,0.967],[-5.343,-0.967],[4.695,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[93.438,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.17,0.967],[-5.143,0.967],[-5.17,-0.967],[4.866,-0.967]],"o":[[5.17,0.967],[-5.143,0.967],[-5.17,-0.967],[4.866,-0.967]],"v":[[5.17,0.967],[-5.143,0.967],[-5.17,-0.967],[4.866,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[80.77,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.137,0.967],[-5.176,0.967],[-4.859,-0.967],[5.176,-0.967]],"o":[[5.137,0.967],[-5.176,0.967],[-4.859,-0.967],[5.176,-0.967]],"v":[[5.137,0.967],[-5.176,0.967],[-4.859,-0.967],[5.176,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[67.963,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.964,0.967],[-5.35,0.967],[-4.688,-0.967],[5.35,-0.967]],"o":[[4.964,0.967],[-5.35,0.967],[-4.688,-0.967],[5.35,-0.967]],"v":[[4.964,0.967],[-5.35,0.967],[-4.688,-0.967],[5.35,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[55.295,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.792,0.967],[-5.521,0.967],[-4.516,-0.967],[5.521,-0.967]],"o":[[4.792,0.967],[-5.521,0.967],[-4.516,-0.967],[5.521,-0.967]],"v":[[4.792,0.967],[-5.521,0.967],[-4.516,-0.967],[5.521,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.627,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.62,0.967],[-5.693,0.967],[-4.344,-0.967],[5.693,-0.967]],"o":[[4.62,0.967],[-5.693,0.967],[-4.344,-0.967],[5.693,-0.967]],"v":[[4.62,0.967],[-5.693,0.967],[-4.344,-0.967],[5.693,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[29.959,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.448,0.967],[-5.866,0.967],[-4.172,-0.967],[5.866,-0.967]],"o":[[4.448,0.967],[-5.866,0.967],[-4.172,-0.967],[5.866,-0.967]],"v":[[4.448,0.967],[-5.866,0.967],[-4.172,-0.967],[5.866,-0.967]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[17.291,4.318],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.631,0.902],[-4.322,0.902],[-5.631,-0.902],[4.064,-0.902]],"o":[[5.631,0.902],[-4.322,0.902],[-5.631,-0.902],[4.064,-0.902]],"v":[[5.631,0.902],[-4.322,0.902],[-5.631,-0.902],[4.064,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[129.478,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.47,0.902],[-4.483,0.902],[-5.47,-0.902],[4.224,-0.902]],"o":[[5.47,0.902],[-4.483,0.902],[-5.47,-0.902],[4.224,-0.902]],"v":[[5.47,0.902],[-4.483,0.902],[-5.47,-0.902],[4.224,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[117.247,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.31,0.902],[-4.643,0.902],[-5.31,-0.902],[4.384,-0.902]],"o":[[5.31,0.902],[-4.643,0.902],[-5.31,-0.902],[4.384,-0.902]],"v":[[5.31,0.902],[-4.643,0.902],[-5.31,-0.902],[4.384,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[105.017,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.149,0.902],[-4.803,0.902],[-5.149,-0.902],[4.545,-0.902]],"o":[[5.149,0.902],[-4.803,0.902],[-5.149,-0.902],[4.545,-0.902]],"v":[[5.149,0.902],[-4.803,0.902],[-5.149,-0.902],[4.545,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[92.786,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.989,0.902],[-4.963,0.902],[-4.989,-0.902],[4.706,-0.902]],"o":[[4.989,0.902],[-4.963,0.902],[-4.989,-0.902],[4.706,-0.902]],"v":[[4.989,0.902],[-4.963,0.902],[-4.989,-0.902],[4.706,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[80.555,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.957,0.902],[-4.995,0.902],[-4.699,-0.902],[4.995,-0.902]],"o":[[4.957,0.902],[-4.995,0.902],[-4.699,-0.902],[4.995,-0.902]],"v":[[4.957,0.902],[-4.995,0.902],[-4.699,-0.902],[4.995,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[68.195,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.797,0.902],[-5.155,0.902],[-4.539,-0.902],[5.155,-0.902]],"o":[[4.797,0.902],[-5.155,0.902],[-4.539,-0.902],[5.155,-0.902]],"v":[[4.797,0.902],[-5.155,0.902],[-4.539,-0.902],[5.155,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[55.965,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.636,0.902],[-5.316,0.902],[-4.379,-0.902],[5.316,-0.902]],"o":[[4.636,0.902],[-5.316,0.902],[-4.379,-0.902],[5.316,-0.902]],"v":[[4.636,0.902],[-5.316,0.902],[-4.379,-0.902],[5.316,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[43.734,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.476,0.902],[-5.476,0.902],[-4.218,-0.902],[5.476,-0.902]],"o":[[4.476,0.902],[-5.476,0.902],[-4.218,-0.902],[5.476,-0.902]],"v":[[4.476,0.902],[-5.476,0.902],[-4.218,-0.902],[5.476,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.503,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.315,0.902],[-5.636,0.902],[-4.058,-0.902],[5.636,-0.902]],"o":[[4.315,0.902],[-5.636,0.902],[-4.058,-0.902],[5.636,-0.902]],"v":[[4.315,0.902],[-5.636,0.902],[-4.058,-0.902],[5.636,-0.902]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.8592,0.8613,0.9208,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[19.273,1.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"o":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"v":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.616,7.831],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.21,1.717],[-2.21,-0.393],[2.21,-1.717],[2.21,-0.001],[-0.413,0.937]],"o":[[-2.21,1.717],[-2.21,-0.393],[2.21,-1.717],[2.21,-0.001],[-0.413,0.937]],"v":[[-2.21,1.717],[-2.21,-0.393],[2.21,-1.717],[2.21,-0.001],[-0.413,0.937]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7511,0.755,0.8689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.46,15.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.016,1.386],[2.016,-0.723],[-2.016,-1.386],[-2.016,0.217]],"o":[[2.016,1.386],[2.016,-0.723],[-2.016,-1.386],[-2.016,0.217]],"v":[[2.016,1.386],[2.016,-0.723],[-2.016,-1.386],[-2.016,0.217]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7511,0.755,0.8689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[146.966,16.135],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"o":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"v":[[74.366,7.581],[-74.366,7.581],[-60.661,-7.581],[60.661,-7.581]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7511,0.755,0.8689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.616,9.94],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":50,"ty":4,"nm":"Layer 17 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,123.956,0],"ix":2},"a":{"a":0,"k":[206.401,24.26,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[206.151,20.384],[-206.151,20.384],[-161.398,-20.384],[163.211,-20.384]],"o":[[206.151,20.384],[-206.151,20.384],[-161.398,-20.384],[163.211,-20.384]],"v":[[206.151,20.384],[-206.151,20.384],[-161.398,-20.384],[163.211,-20.384]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[206.401,20.634],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.495,4.154],[-7.495,-3.098],[7.495,-4.154],[6.441,0.001]],"o":[[-7.495,4.154],[-7.495,-3.098],[7.495,-4.154],[6.441,0.001]],"v":[[-7.495,4.154],[-7.495,-3.098],[7.495,-4.154],[6.441,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[7.746,44.116],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.495,4.154],[7.495,-3.098],[-7.495,-4.154],[-6.441,0.001]],"o":[[7.495,4.154],[7.495,-3.098],[-7.495,-4.154],[-6.441,0.001]],"v":[[7.495,4.154],[7.495,-3.098],[-7.495,-4.154],[-6.441,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[405.057,44.116],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[206.151,20.837],[-206.151,20.837],[-162.304,-20.837],[162.304,-20.837]],"o":[[206.151,20.837],[-206.151,20.837],[-162.304,-20.837],[162.304,-20.837]],"v":[[206.151,20.837],[-206.151,20.837],[-162.304,-20.837],[162.304,-20.837]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[206.401,27.433],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":51,"ty":4,"nm":"Layer 62 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-157.544,-105.397,0],"ix":2},"a":{"a":0,"k":[4.981,4.981,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.481,-1.37],[1.371,2.481],[-2.481,1.37],[-1.37,-2.481]],"o":[[2.481,1.37],[-1.37,2.481],[-2.481,-1.37],[1.371,-2.481]],"v":[[2.481,0],[0.001,2.481],[-2.481,0],[0.001,-2.481]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[4.981,4.981],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":52,"ty":4,"nm":"Layer 63 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150.248,-78.383,0],"ix":2},"a":{"a":0,"k":[4.981,4.981,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.481,-1.37],[1.37,2.481],[-2.481,1.37],[-1.371,-2.481]],"o":[[2.481,1.37],[-1.371,2.481],[-2.481,-1.37],[1.37,-2.481]],"v":[[2.481,0],[0,2.481],[-2.481,0],[0,-2.481]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[4.981,4.981],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":53,"ty":4,"nm":"Layer 64 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-95.369,160.577,0],"ix":2},"a":{"a":0,"k":[6.573,6.573,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.073,-2.25],[2.249,4.073],[-4.073,2.249],[-2.25,-4.073]],"o":[[4.073,2.249],[-2.25,4.073],[-4.073,-2.25],[2.249,-4.073]],"v":[[4.073,0],[0,4.073],[-4.073,0],[0,-4.073]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[6.573,6.573],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":54,"ty":4,"nm":"Layer 65 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-195.622,114.257,0],"ix":2},"a":{"a":0,"k":[1.767,1.767,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.517,-0.837],[0.837,1.517],[-1.517,0.838],[-0.837,-1.517]],"o":[[1.517,0.838],[-0.837,1.517],[-1.517,-0.837],[0.837,-1.517]],"v":[[1.517,0],[0,1.517],[-1.517,0],[0,-1.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[1.767,1.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":55,"ty":4,"nm":"Layer 66 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[91.898,164.65,0],"ix":2},"a":{"a":0,"k":[1.767,1.768,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.517,-0.838],[0.837,1.518],[-1.517,0.837],[-0.838,-1.518]],"o":[[1.517,0.837],[-0.838,1.518],[-1.517,-0.838],[0.837,-1.518]],"v":[[1.517,0],[-0.001,1.518],[-1.517,0],[-0.001,-1.518]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[1.766,1.768],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":56,"ty":4,"nm":"Layer 67 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[107.741,-147.344,0],"ix":2},"a":{"a":0,"k":[1.766,1.767,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.517,-0.837],[0.837,1.517],[-1.517,0.838],[-0.838,-1.517]],"o":[[1.517,0.838],[-0.838,1.517],[-1.517,-0.837],[0.837,-1.517]],"v":[[1.517,0],[-0.001,1.517],[-1.517,0],[-0.001,-1.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[1.766,1.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":57,"ty":4,"nm":"Layer 68 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-108.597,156.105,0],"ix":2},"a":{"a":0,"k":[1.767,1.767,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.517,-0.837],[0.837,1.517],[-1.517,0.838],[-0.838,-1.517]],"o":[[1.517,0.838],[-0.838,1.517],[-1.517,-0.837],[0.837,-1.517]],"v":[[1.517,0],[-0.001,1.517],[-1.517,0],[-0.001,-1.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[1.767,1.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":58,"ty":4,"nm":"Layer 69 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[160.541,-72.287,0],"ix":2},"a":{"a":0,"k":[1.767,1.767,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.517,-0.838],[0.837,1.517],[-1.517,0.837],[-0.838,-1.517]],"o":[[1.517,0.837],[-0.838,1.517],[-1.517,-0.838],[0.837,-1.517]],"v":[[1.517,0],[-0.001,1.517],[-1.517,0],[-0.001,-1.517]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[1.766,1.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":59,"ty":4,"nm":"Layer 70 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-110.931,-124.847,0],"ix":2},"a":{"a":0,"k":[2.584,2.583,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.334,-1.289],[1.289,2.333],[-2.334,1.289],[-1.288,-2.333]],"o":[[2.334,1.289],[-1.288,2.333],[-2.334,-1.289],[1.289,-2.333]],"v":[[2.334,0],[0.001,2.333],[-2.334,0],[0.001,-2.333]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.584,2.583],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":60,"ty":4,"nm":"Layer 71 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[109.567,-130.11,0],"ix":2},"a":{"a":0,"k":[6.573,6.573,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.073,-2.25],[2.25,4.073],[-4.073,2.25],[-2.249,-4.073]],"o":[[4.073,2.25],[-2.249,4.073],[-4.073,-2.25],[2.25,-4.073]],"v":[[4.073,0],[0,4.073],[-4.073,0],[0,-4.073]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[6.573,6.573],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":61,"ty":4,"nm":"Layer 72 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[105.434,157.719,0],"ix":2},"a":{"a":0,"k":[3.381,3.381,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.131,-1.7280000000000002],[1.73,3.131],[-3.131,1.73],[-1.7280000000000002,-3.131]],"o":[[3.131,1.73],[-1.7280000000000002,3.131],[-3.131,-1.7280000000000002],[1.73,-3.131]],"v":[[3.131,0.001],[0.001,3.131],[-3.131,0.001],[0.001,-3.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[3.38,3.381],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":62,"ty":4,"nm":"Layer 73 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-206.151,127.129,0],"ix":2},"a":{"a":0,"k":[2.135,2.134,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.885,-1.041],[1.041,1.885],[-1.885,1.04],[-1.041,-1.885]],"o":[[1.885,1.04],[-1.041,1.885],[-1.885,-1.041],[1.041,-1.885]],"v":[[1.885,-0.001],[0,1.885],[-1.885,-0.001],[0,-1.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.135,2.134],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":63,"ty":4,"nm":"Layer 74 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-135.945,156.473,0],"ix":2},"a":{"a":0,"k":[2.134,2.135,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.885,-1.041],[1.041,1.885],[-1.885,1.041],[-1.04,-1.885]],"o":[[1.885,1.041],[-1.04,1.885],[-1.885,-1.041],[1.041,-1.885]],"v":[[1.885,0],[0.001,1.885],[-1.885,0],[0.001,-1.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.134,2.135],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":64,"ty":4,"nm":"Layer 3 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-157.544,-78.383,0],"ix":2},"a":{"a":0,"k":[3.381,3.38,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.131,-1.729],[1.73,3.13],[-3.131,1.729],[-1.7280000000000002,-3.13]],"o":[[3.131,1.729],[-1.7280000000000002,3.13],[-3.131,-1.729],[1.73,-3.13]],"v":[[3.131,0],[0.001,3.13],[-3.131,0],[0.001,-3.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[3.381,3.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":65,"ty":4,"nm":"PHP","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":30,"s":[-118.27,-86.558,0],"to":[24.201,-23.843,0],"ti":[-16.488,8.95,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[-72,-124.3,0],"to":[8.746,-4.748,0],"ti":[-26.178,-5.096,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":210,"s":[-1.1,-140,0],"to":[11.88,2.313,0],"ti":[-19.283,-8.9,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":300,"s":[67.4,-124.3,0],"to":[19.283,8.9,0],"ti":[-15.573,-20.583,0]},{"i":{"x":0.65,"y":1},"o":{"x":0.167,"y":0},"t":389,"s":[114.6,-86.6,0],"to":[101.903,134.681,0],"ti":[-130.333,160.638,0]},{"t":480,"s":[-118.3,-86.558,0]}],"ix":2},"a":{"a":0,"k":[23.532,23.532,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.659,0.659,0.659],"y":[-2.034,-2.034,1]},"o":{"x":[0.297,0.297,0.297],"y":[0,0,0]},"t":30,"s":[90,90,100]},{"i":{"x":[0.802,0.802,0.802],"y":[1,1,1]},"o":{"x":[0.341,0.341,0.341],"y":[0.543,0.543,0]},"t":120,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":210,"s":[156,156,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":300,"s":[107,107,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":389,"s":[98,98,100]},{"t":480,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.724,-0.1379999999999999],[1.097,-2.554],[-1.734,-2.554],[-1.734,0.405],[-0.117,0.405]],"o":[[1.724,-2.011],[-0.117,-2.554],[-1.734,-2.554],[-1.734,0.405],[1.097,0.405]],"v":[[1.724,-1.075],[-0.117,-2.554],[-1.734,-2.554],[-1.734,0.405],[-0.117,0.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[3.119,-2.724],[1.9060000000000001,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[-0.053,-3.725]],"o":[[3.119,0.5640000000000001],[-0.053,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[1.9060000000000001,-3.725]],"v":[[3.119,-1.075],[-0.053,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[-0.053,-3.725]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[31.657,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.31,-3.725],[3.31,3.725],[1.926,3.725],[1.926,0.532],[-1.926,0.532],[-1.926,3.725],[-3.31,3.725],[-3.31,-3.725],[-1.926,-3.725],[-1.926,-0.649],[1.926,-0.649],[1.926,-3.725]],"o":[[3.31,-3.725],[3.31,3.725],[1.926,3.725],[1.926,0.532],[-1.926,0.532],[-1.926,3.725],[-3.31,3.725],[-3.31,-3.725],[-1.926,-3.725],[-1.926,-0.649],[1.926,-0.649],[1.926,-3.725]],"v":[[3.31,-3.725],[3.31,3.725],[1.926,3.725],[1.926,0.532],[-1.926,0.532],[-1.926,3.725],[-3.31,3.725],[-3.31,-3.725],[-1.926,-3.725],[-1.926,-0.649],[1.926,-0.649],[1.926,-3.725]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[23.223,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.724,-0.1379999999999999],[1.097,-2.554],[-1.734,-2.554],[-1.734,0.405],[-0.117,0.405]],"o":[[1.724,-2.011],[-0.117,-2.554],[-1.734,-2.554],[-1.734,0.405],[1.097,0.405]],"v":[[1.724,-1.075],[-0.117,-2.554],[-1.734,-2.554],[-1.734,0.405],[-0.117,0.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[3.119,-2.724],[1.9060000000000001,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[-0.053,-3.725]],"o":[[3.119,0.5640000000000001],[-0.053,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[1.9060000000000001,-3.725]],"v":[[3.119,-1.075],[-0.053,1.575],[-1.734,1.575],[-1.734,3.725],[-3.119,3.725],[-3.119,-3.725],[-0.053,-3.725]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.407,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.838,-23.282],[-23.282,-12.838],[-12.838,23.282],[23.282,12.838]],"o":[[-12.838,-23.282],[-23.282,12.838],[12.838,23.282],[23.282,-12.838]],"v":[[0,-23.282],[-23.282,0],[0,23.282],[23.282,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-11.754,-21.282],[21.282,-11.754],[11.754,21.282],[-21.282,11.754]],"o":[[11.754,-21.282],[21.282,11.754],[-11.754,21.282],[-21.282,-11.754]],"v":[[0,-21.282],[21.282,0],[0,21.282],[-21.282,0]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[23.532,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":6,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.286,22.282],[-22.282,12.286],[-12.286,-22.282],[22.282,-12.287]],"o":[[-12.286,22.282],[-22.282,-12.287],[12.286,-22.282],[22.282,12.286]],"v":[[0,22.282],[-22.282,0],[0,-22.282],[22.282,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[23.532,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":66,"ty":4,"nm":"CSS","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":28,"s":[-72.362,-124.337,0],"to":[25.707,-11.387,0],"ti":[-33.4,-1.336,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[-1.1,-140,0],"to":[23.275,0.931,0],"ti":[-27.731,-15.097,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":210,"s":[67.4,-124.3,0],"to":[16.43,8.945,0],"ti":[-18.474,-18.025,0]},{"i":{"x":0.65,"y":1},"o":{"x":0.167,"y":0},"t":300,"s":[114.6,-86.6,0],"to":[117.861,115,0],"ti":[-130.333,160.638,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":390,"s":[-118.3,-86.558,0],"to":[24.456,-30.142,0],"ti":[-16.488,8.95,0]},{"t":480,"s":[-72,-124.3,0]}],"ix":2},"a":{"a":0,"k":[25.257,25.257,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":28,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":120,"s":[146,146,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":210,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":300,"s":[90,90,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":390,"s":[90,90,100]},{"t":480,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.214,4.731],[-3.404,2.54],[-1.299,3.657],[2.199,3.091],[-3.838,1.5820000000000003],[-2.533,-5.224],[2.751,-4.905],[3.04,-2.859],[1.125,-3.657],[-1.966,-3.047],[4.056,-1.524],[2.735,5.224]],"o":[[-4.056,4.005],[-2.59,3.193],[1.5310000000000001,3.657],[2.199,0.14600000000000035],[-3.838,-3.83],[1.473,-5.224],[3.635,-4.325],[2.127,-3.396],[-1.327,-3.657],[-1.966,-0.1160000000000001],[4.056,3.831],[-1.632,5.224]],"v":[[-4.056,4.005],[-3.404,2.54],[-0.051,3.657],[2.199,2.337],[-3.838,-2.191],[0.254,-5.224],[3.635,-4.325],[3.04,-2.859],[0.24,-3.657],[-1.966,-2.278],[4.056,2.206],[-0.051,5.224]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[35.006,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.2139999999999995,4.731],[-3.402,2.54],[-1.298,3.657],[2.199,3.091],[-3.839,1.5820000000000003],[-2.533,-5.224],[2.75,-4.905],[3.04,-2.859],[1.125,-3.657],[-1.967,-3.047],[4.055,-1.524],[2.735,5.224]],"o":[[-4.055,4.005],[-2.59,3.193],[1.532,3.657],[2.199,0.14600000000000035],[-3.839,-3.83],[1.4729999999999999,-5.224],[3.634,-4.325],[2.126,-3.396],[-1.326,-3.657],[-1.967,-0.1160000000000001],[4.055,3.831],[-1.631,5.224]],"v":[[-4.055,4.005],[-3.402,2.54],[-0.051,3.657],[2.199,2.337],[-3.839,-2.191],[0.255,-5.224],[3.634,-4.325],[3.04,-2.859],[0.24,-3.657],[-1.967,-2.278],[4.055,2.206],[-0.051,5.224]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.874,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.731,3.033],[-2.41,-5.224],[3.787,-4.629],[3.511,-2.38],[1.858,-3.57],[-2.83,-2.09],[-1.3050000000000002,3.569],[2.7720000000000002,3.178],[4.731,3.526],[2.366,5.224]],"o":[[-4.731,-3.033],[2.366,-5.224],[4.731,-3.526],[2.7720000000000002,-3.178],[-1.3050000000000002,-3.57],[-2.83,2.089],[1.858,3.569],[3.511,2.366],[3.787,4.629],[-2.41,5.224]],"v":[[-4.731,0],[0.711,-5.224],[4.731,-3.526],[3.511,-2.38],[0.798,-3.57],[-2.83,0],[0.798,3.569],[3.511,2.366],[4.731,3.526],[0.697,5.224]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[16.182,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.789,-25.007],[-25.007,-13.789],[-13.789,25.007],[25.007,13.789]],"o":[[-13.789,-25.007],[-25.007,13.789],[13.789,25.007],[25.007,-13.789]],"v":[[0,-25.007],[-25.007,0],[0,25.007],[25.007,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-12.707,-23.007],[23.007,-12.706],[12.706,23.007],[-23.007,12.706]],"o":[[12.706,-23.007],[23.007,12.706],[-12.707,23.007],[-23.007,-12.706]],"v":[[0,-23.007],[23.007,0],[0,23.007],[-23.007,0]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.257,25.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":6,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.237,24.007],[-24.007,13.237],[-13.237,-24.007],[24.007,-13.237]],"o":[[-13.237,24.007],[-24.007,-13.237],[13.237,-24.007],[24.007,13.237]],"v":[[0,24.007],[-24.007,0],[0,-24.007],[24.007,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.257,25.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":67,"ty":4,"nm":"HTML","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":28,"s":[-1.127,-140.025,0],"to":[24.985,-0.039,0],"ti":[-19.288,-8.904,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[67.4,-124.3,0],"to":[19.288,8.904,0],"ti":[-16.382,-19.945,0]},{"i":{"x":0.65,"y":1},"o":{"x":0.387,"y":0},"t":210,"s":[114.6,-86.6,0],"to":[131.159,159.681,0],"ti":[-130.333,160.638,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":300,"s":[-118.3,-86.558,0],"to":[24.456,-30.142,0],"ti":[-16.488,8.95,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":390,"s":[-72,-124.3,0],"to":[8.746,-4.748,0],"ti":[-26.178,-5.096,0]},{"t":480,"s":[-1.1,-140,0]}],"ix":2},"a":{"a":0,"k":[36.878,36.878,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":28,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":120,"s":[67,67,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":210,"s":[60.3,60.3,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":300,"s":[60.3,60.3,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":390,"s":[68.3,68.3,100]},{"t":480,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.81,-5.378],[-1.813,-5.378],[-1.813,3.688],[3.81,3.688],[3.81,5.378],[-3.81,5.378]],"o":[[-3.81,-5.378],[-1.813,-5.378],[-1.813,3.688],[3.81,3.688],[3.81,5.378],[-3.81,5.378]],"v":[[-3.81,-5.378],[-1.813,-5.378],[-1.813,3.688],[3.81,3.688],[3.81,5.378],[-3.81,5.378]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[55.448,37.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.995,5.378],[3.978,-1.751],[0.445,4.149],[-0.445,4.149],[-3.98,-1.66],[-3.98,5.378],[-5.885,5.378],[-5.885,-5.378],[-4.242,-5.378],[0.031,1.752],[4.225,-5.378],[5.87,-5.378],[5.885,5.378]],"o":[[3.995,5.378],[3.978,-1.751],[0.445,4.149],[-0.445,4.149],[-3.98,-1.66],[-3.98,5.378],[-5.885,5.378],[-5.885,-5.378],[-4.242,-5.378],[0.031,1.752],[4.225,-5.378],[5.87,-5.378],[5.885,5.378]],"v":[[3.995,5.378],[3.978,-1.751],[0.445,4.149],[-0.445,4.149],[-3.98,-1.66],[-3.98,5.378],[-5.885,5.378],[-5.885,-5.378],[-4.242,-5.378],[0.031,1.752],[4.225,-5.378],[5.87,-5.378],[5.885,5.378]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[42.854,37.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.999,-3.688],[-4.564,-3.688],[-4.564,-5.377],[4.564,-5.377],[4.564,-3.688],[0.998,-3.688],[0.998,5.377],[-0.999,5.377]],"o":[[-0.999,-3.688],[-4.564,-3.688],[-4.564,-5.377],[4.564,-5.377],[4.564,-3.688],[0.998,-3.688],[0.998,5.377],[-0.999,5.377]],"v":[[-0.999,-3.688],[-4.564,-3.688],[-4.564,-5.377],[4.564,-5.377],[4.564,-3.688],[0.998,-3.688],[0.998,5.377],[-0.999,5.377]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[30.903,37.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.779,-5.378],[4.779,5.378],[2.781,5.378],[2.781,0.768],[-2.782,0.768],[-2.782,5.378],[-4.779,5.378],[-4.779,-5.378],[-2.782,-5.378],[-2.782,-0.938],[2.781,-0.938],[2.781,-5.378]],"o":[[4.779,-5.378],[4.779,5.378],[2.781,5.378],[2.781,0.768],[-2.782,0.768],[-2.782,5.378],[-4.779,5.378],[-4.779,-5.378],[-2.782,-5.378],[-2.782,-0.938],[2.781,-0.938],[2.781,-5.378]],"v":[[4.779,-5.378],[4.779,5.378],[2.781,5.378],[2.781,0.768],[-2.782,0.768],[-2.782,5.378],[-4.779,5.378],[-4.779,-5.378],[-2.782,-5.378],[-2.782,-0.938],[2.781,-0.938],[2.781,-5.378]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.059,37.536],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":4,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[20.197,-36.628],[-36.627,-20.195999999999998],[-20.196,36.628],[36.627,20.197000000000003]],"o":[[-20.196,-36.628],[-36.627,20.197000000000003],[20.197,36.628],[36.627,-20.195999999999998]],"v":[[0,-36.628],[-36.627,0.001],[0,36.628],[36.627,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-19.124,-34.628],[34.627,-19.124],[19.125,34.628],[-34.627,19.125]],"o":[[19.125,-34.628],[34.627,19.125],[-19.124,34.628],[-34.627,-19.124]],"v":[[0,-34.628],[34.627,0.001],[0,34.628],[-34.627,0.001]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[36.877,36.878],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":6,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[19.646,35.627],[-35.627,19.646],[-19.645,-35.627],[35.627,-19.645]],"o":[[-19.645,35.627],[-35.627,-19.645],[19.646,-35.627],[35.627,19.646]],"v":[[0,35.627],[-35.627,0.001],[0,-35.627],[35.627,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[36.877,36.878],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 6","np":4,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":68,"ty":4,"nm":"c++","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":28,"s":[67.392,-124.337,0],"to":[30.474,15.066,0],"ti":[-16.562,-19.796,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[114.6,-86.6,0],"to":[112.01,133.883,0],"ti":[-130.333,160.638,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":210,"s":[-118.3,-86.558,0],"to":[24.456,-30.142,0],"ti":[-16.488,8.95,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":300,"s":[-72,-124.3,0],"to":[8.746,-4.748,0],"ti":[-26.178,-5.096,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":390,"s":[-1.1,-140,0],"to":[11.88,2.313,0],"ti":[-11.417,-2.617,0]},{"t":480,"s":[67.4,-124.3,0]}],"ix":2},"a":{"a":0,"k":[25.257,25.257,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":28,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":120,"s":[90,90,100]},{"i":{"x":[0.661,0.661,0.661],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":210,"s":[90,90,100]},{"i":{"x":[0.815,0.815,0.815],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":300,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":390,"s":[156,156,100]},{"t":480,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"o":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"v":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[35.429,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"o":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"v":[[3.075,0.667],[0.713,0.667],[0.713,3.001],[-0.714,3.001],[-0.714,0.667],[-3.075,0.667],[-3.075,-0.667],[-0.714,-0.667],[-0.714,-3.001],[0.713,-3.001],[0.713,-0.667],[3.075,-0.667]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[27.594,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.128,3.287],[-2.612,-5.663],[4.104,-5.019],[3.807,-2.58],[2.013,-3.87],[-3.068,-2.267],[-1.4160000000000001,3.87],[3.005,3.4450000000000003],[5.128,3.823],[2.563,5.663]],"o":[[-5.128,-3.2889999999999997],[2.5629999999999997,-5.663],[5.128,-3.824],[3.005,-3.4450000000000003],[-1.4160000000000001,-3.87],[-3.068,2.2640000000000002],[2.013,3.87],[3.807,2.564],[4.104,5.019],[-2.612,5.663]],"v":[[-5.128,-0.001],[0.77,-5.663],[5.128,-3.824],[3.807,-2.58],[0.865,-3.87],[-3.068,-0.001],[0.865,3.87],[3.807,2.564],[5.128,3.823],[0.755,5.663]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[17.14,25.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.789,-25.007],[-25.007,-13.789],[-13.789,25.007],[25.007,13.789]],"o":[[-13.789,-25.007],[-25.007,13.789],[13.789,25.007],[25.007,-13.789]],"v":[[0,-25.007],[-25.007,0],[0,25.007],[25.007,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-12.706,-23.007],[23.007,-12.706],[12.706,23.007],[-23.007,12.706]],"o":[[12.706,-23.007],[23.007,12.706],[-12.706,23.007],[-23.007,-12.706]],"v":[[0,-23.007],[23.007,0],[0,23.007],[-23.007,0]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.257,25.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":6,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.237,24.007],[-24.007,13.237],[-13.237,-24.007],[24.007,-13.237]],"o":[[-13.237,24.007],[-24.007,-13.237],[13.237,-24.007],[24.007,13.237]],"v":[[0,24.007],[-24.007,0],[0,-24.007],[24.007,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[25.257,25.257],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 5","np":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":69,"ty":4,"nm":"JS","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.669,"y":0},"t":28,"s":[114.594,-86.558,0],"to":[134.057,147.872,0],"ti":[-130.333,160.638,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":120,"s":[-118.3,-86.558,0],"to":[24.456,-30.142,0],"ti":[-16.488,8.95,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":210,"s":[-72,-124.3,0],"to":[8.746,-4.748,0],"ti":[-26.653,-0.959,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":300,"s":[-1.1,-140,0],"to":[27.305,0.983,0],"ti":[-19.283,-8.9,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":390,"s":[67.4,-124.3,0],"to":[19.283,8.9,0],"ti":[-15.573,-20.583,0]},{"t":480,"s":[114.6,-86.6,0]}],"ix":2},"a":{"a":0,"k":[23.532,23.532,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.335,0.335,0.335],"y":[0,0,0]},"t":28,"s":[90,90,100]},{"i":{"x":[0.661,0.661,0.661],"y":[1,1,1]},"o":{"x":[0.33,0.33,0.33],"y":[0,0,0]},"t":120,"s":[90,90,100]},{"i":{"x":[0.815,0.815,0.815],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":210,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":300,"s":[156,156,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":390,"s":[107,107,100]},{"t":480,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.2380000000000004,4.308],[-3.238,2.064],[-1.166,2.987],[1.949,2.602],[-3.795,1.8550000000000002],[-2.2110000000000003,-4.76],[2.941,-4.465],[2.941,-2.305],[1.166,-3.003],[-1.671,-2.567],[4.073,-1.748],[2.472,4.76]],"o":[[-4.073,3.716],[-2.419,2.603],[1.375,2.987],[1.949,0.18300000000000005],[-3.795,-3.6109999999999998],[1.5310000000000001,-4.76],[3.778,-3.96],[2.054,-2.827],[-1.044,-3.003],[-1.671,-0.07700000000000018],[4.073,3.63],[-1.689,4.76]],"v":[[-4.073,3.716],[-3.238,2.064],[0,2.987],[1.949,1.958],[-3.795,-1.853],[0.296,-4.76],[3.778,-3.96],[2.941,-2.305],[0.279,-3.003],[-1.671,-1.957],[4.073,1.889],[-0.14,4.76]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.414,24.462],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.097,5.5520000000000005],[-2.645,2.872],[-1.183,4.264],[1.671,3.5170000000000003],[1.671,-4.281],[-2.662,-4.281],[-2.662,-6.18],[3.933,-6.18],[3.933,1.897],[2.5060000000000002,6.18]],"o":[[-3.933,4.421],[-1.983,3.777],[1.028,4.264],[1.671,2.02],[1.671,-4.281],[-2.662,-4.281],[-2.662,-6.18],[3.933,-6.18],[3.933,4.769],[-1.7049999999999998,6.18]],"v":[[-3.933,4.421],[-2.645,2.872],[-0.226,4.264],[1.671,2.02],[1.671,-4.281],[-2.662,-4.281],[-2.662,-6.18],[3.933,-6.18],[3.933,1.897],[-0.174,6.18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[18.504,23.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.838999999999999,-23.282],[-23.281,-12.838],[-12.837,23.282],[23.281,12.838]],"o":[[-12.837,-23.282],[-23.281,12.838],[12.838999999999999,23.282],[23.281,-12.838]],"v":[[0.001,-23.282],[-23.281,0],[0.001,23.282],[23.281,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-11.753,-21.282],[21.281,-11.754],[11.754999999999999,21.282],[-21.281,11.754]],"o":[[11.754999999999999,-21.282],[21.281,11.754],[-11.753,21.282],[-21.281,-11.754]],"v":[[0.001,-21.282],[21.281,0],[0.001,21.282],[-21.281,0]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[23.531,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.286999999999999,22.282],[-22.281,12.286],[-12.285,-22.282],[22.281,-12.287]],"o":[[-12.285,22.282],[-22.281,-12.287],[12.286999999999999,-22.282],[22.281,12.286]],"v":[[0.001,22.282],[-22.281,0],[0.001,-22.282],[22.281,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[23.531,23.532],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 4","np":4,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":480,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":70,"ty":4,"nm":"path","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,9.953,0],"ix":2},"a":{"a":0,"k":[157.197,157.198,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[154.698,-85.438],[85.436,154.698],[-154.697,85.437],[-85.438,-154.698]],"o":[[154.698,85.437],[-85.438,154.698],[-154.697,-85.438],[85.436,-154.698]],"v":[[154.698,0],[0,154.698],[-154.697,0],[0,-154.698]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":0,"k":[0.2,0.2353,0.2706,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[157.198,157.198],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":481,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":71,"ty":4,"nm":"bg circle","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,9.952,0],"ix":2},"a":{"a":0,"k":[144.191,144.191,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[143.942,-79.496],[79.497,143.941],[-143.941,79.497],[-79.496,-143.941]],"o":[[143.942,79.497],[-79.496,143.941],[-143.941,-79.496],[79.497,-143.941]],"v":[[143.942,0.001],[0.001,143.941],[-143.941,0.001],[0.001,-143.941]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3255,0.349,0.9922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false,"_render":true},{"ty":"tr","p":{"a":0,"k":[144.191,144.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform","_render":true}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":481,"st":0,"bm":0,"completed":true}],"markers":[],"__complete":true} \ No newline at end of file diff --git a/vite-app/src/assets/profile-pictures/user1.jpg b/vite-app/src/assets/profile-pictures/user1.jpg new file mode 100644 index 00000000..464923c0 Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user1.jpg differ diff --git a/vite-app/src/assets/profile-pictures/user2.jpg b/vite-app/src/assets/profile-pictures/user2.jpg new file mode 100644 index 00000000..2ff088b3 Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user2.jpg differ diff --git a/vite-app/src/assets/profile-pictures/user3.jpg b/vite-app/src/assets/profile-pictures/user3.jpg new file mode 100644 index 00000000..dd411cd5 Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user3.jpg differ diff --git a/vite-app/src/assets/profile-pictures/user4.jpg b/vite-app/src/assets/profile-pictures/user4.jpg new file mode 100644 index 00000000..942e729c Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user4.jpg differ diff --git a/vite-app/src/assets/profile-pictures/user5.jpg b/vite-app/src/assets/profile-pictures/user5.jpg new file mode 100644 index 00000000..e6614f54 Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user5.jpg differ diff --git a/vite-app/src/assets/profile-pictures/user6.jpg b/vite-app/src/assets/profile-pictures/user6.jpg new file mode 100644 index 00000000..c51842fa Binary files /dev/null and b/vite-app/src/assets/profile-pictures/user6.jpg differ diff --git a/vite-app/src/assets/react.svg b/vite-app/src/assets/react.svg new file mode 100644 index 00000000..6c87de9b --- /dev/null +++ b/vite-app/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/vite-app/src/assets/video1.mp4 b/vite-app/src/assets/video1.mp4 new file mode 100644 index 00000000..92f5d13b Binary files /dev/null and b/vite-app/src/assets/video1.mp4 differ diff --git a/vite-app/src/assets/video2.mp4 b/vite-app/src/assets/video2.mp4 new file mode 100644 index 00000000..19776eb8 Binary files /dev/null and b/vite-app/src/assets/video2.mp4 differ diff --git a/vite-app/src/assets/workflowlottie.json b/vite-app/src/assets/workflowlottie.json new file mode 100644 index 00000000..765cb9c5 --- /dev/null +++ b/vite-app/src/assets/workflowlottie.json @@ -0,0 +1 @@ +{"nm":"sphere1","ddd":0,"h":800,"w":800,"meta":{"g":"@lottiefiles/toolkit-js 0.33.2"},"layers":[{"ty":0,"nm":"front","sr":1,"st":0,"op":151,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[400,400,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":800,"h":800,"refId":"comp_0","ind":1},{"ty":0,"nm":"back circles","sr":1,"st":0,"op":151,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[400,400,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":800,"h":800,"refId":"comp_1","ind":2},{"ty":0,"nm":"back","sr":1,"st":0,"op":151,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[400,400,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"w":800,"h":800,"refId":"comp_2","ind":3}],"v":"5.7.4","fr":60,"op":150,"ip":0,"assets":[{"nm":"","id":"comp_0","layers":[{"ty":4,"nm":"layer 1","sr":1,"st":0,"op":151,"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":[134,850,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":"Circle4","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[188.509,-141.999],[196.009,-134.499],[188.509,-126.999],[181.009,-134.499]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[149.509,-147.499],[157.009,-139.999],[149.509,-132.499],[142.009,-139.999]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[117.509,-152.499],[125.009,-144.999],[117.509,-137.499],[110.009,-144.999]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[107.009,-156.999],[114.509,-149.499],[107.009,-141.999],[99.509,-149.499]]}],"t":94},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[98.821,-160.436],[106.321,-152.936],[98.821,-145.436],[91.321,-152.936]]}],"t":109},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[93.509,-162.499],[101.009,-154.999],[93.509,-147.499],[86.009,-154.999]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.683,-171.507],[90.183,-164.007],[82.683,-156.507],[75.183,-164.007]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":21},{"s":[100],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 4","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[187.939,-134.97],[265.327,-111.798]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[148.939,-140.47],[265.327,-111.798]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[116.939,-145.47],[265.327,-111.798]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[106.439,-149.97],[266.327,-112.798]]}],"t":94},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[92.939,-155.47],[266.327,-112.798]]}],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[92.939,-155.47],[266.327,-112.798]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81.867,-163.788],[264.994,-112.108]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":21},{"s":[100],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 7","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81.603,-168.834],[187.846,-135.936]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[92.603,-177.834],[148.846,-141.436]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[117.103,-187.334],[116.846,-146.436]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[131.853,-189.334],[103.846,-148.936]]}],"t":94},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[143.853,-191.334],[97.659,-151.456]]}],"t":105},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[156.853,-193.834],[90.346,-154.436]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[204.25,-199.438],[82.188,-164.562]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":21},{"s":[100],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 6","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[186.257,-136.437],[-13.455,-261.613]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[147.257,-141.937],[-13.455,-261.613]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[115.257,-146.937],[-26.955,-279.113]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[102.757,-151.937],[-25.455,-287.613]]}],"t":94},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89.257,-157.437],[-18.955,-301.113]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[82.531,-162.219],[9.688,-319.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":54},{"s":[100],"t":55}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 8","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-8.244,-277.615],[101.151,-149.079]]}],"t":105},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-18.335,-281.335],[92.645,-155.226]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-42.719,-300.844],[80.875,-163.312]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":104},{"s":[100],"t":105}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 3","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[419.234,-186.361],[265.117,-113.788]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[431.484,-181.861],[265.117,-113.163]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[448.984,-170.861],[265.117,-113.163]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[450.484,-166.861],[265.117,-113.163]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[451.734,-161.361],[265.367,-111.788]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[435.234,-152.361],[265.367,-111.788]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[412.484,-144.861],[265.367,-111.788]]}],"t":150}],"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,0.6078,0.8588],"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":1},{"ty":4,"nm":"layer 3","sr":1,"st":0,"op":151,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-207.78,-142.706,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[355.22,597.294,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":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-9.861,33.396],[-28.361,51.896],[-9.861,70.396],[8.639,51.896]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[81.198,32.563],[62.698,51.062],[81.198,69.562],[99.698,51.062]]}],"t":113},{"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[166.615,36.208],[148.115,54.708],[166.615,73.208],[185.115,54.708]]}],"t":144}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":113},{"s":[0],"t":144}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[96,96],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[0],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80],"t":113},{"s":[0],"t":144}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 5","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[159.5,-157],[167,-149.5],[159.5,-142],[152,-149.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[202.5,-152.5],[210,-145],[202.5,-137.5],[195,-145]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[272.75,-140.25],[280.25,-132.75],[272.75,-125.25],[265.25,-132.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[320.25,-125.25],[327.75,-117.75],[320.25,-110.25],[312.75,-117.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[350.75,-103.25],[358.25,-95.75],[350.75,-88.25],[343.25,-95.75]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[357.375,-87.125],[364.875,-79.625],[357.375,-72.125],[349.875,-79.625]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-226,-87],"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":"Circle 4","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-46,-190],[-38.5,-182.5],[-46,-175],[-53.5,-182.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[2.5,-194],[10,-186.5],[2.5,-179],[-5,-186.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[95.25,-194.5],[102.75,-187],[95.25,-179.5],[87.75,-187]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[182.25,-186.5],[189.75,-179],[182.25,-171.5],[174.75,-179]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[267.75,-175.5],[275.25,-168],[267.75,-160.5],[260.25,-168]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[327.75,-160.5],[335.25,-153],[327.75,-145.5],[320.25,-153]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-225,-87.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":"Circle 3","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-123.5,27.5],[-116,35],[-123.5,42.5],[-131,35]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-125,22.556],[-117.5,30.056],[-125,37.556],[-132.5,30.056]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-114.5,11.556],[-107,19.056],[-114.5,26.556],[-122,19.056]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-88.5,2.556],[-81,10.056],[-88.5,17.556],[-96,10.056]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-49,-3.444],[-41.5,4.056],[-49,11.556],[-56.5,4.056]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-2,-9.444],[5.5,-1.944],[-2,5.556],[-9.5,-1.944]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Circle 2","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[60,80],[67.5,87.5],[60,95],[52.5,87.5]]}],"t":0},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[60,80],[67.5,87.5],[60,95],[52.5,87.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-225,-91],"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":"Circle 1","ix":6,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-6.5],[7.5,1],[0,8.5],[-7.5,1]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[27,-10.5],[34.5,-3],[27,4.5],[19.5,-3]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[77.5,-11.5],[85,-4],[77.5,3.5],[70,-4]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[127,-9.5],[134.5,-2],[127,5.5],[119.5,-2]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[178.5,-2.5],[186,5],[178.5,12.5],[171,5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[214.5,7],[222,14.5],[214.5,22],[207,14.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-224.5,-91.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":"Group 1","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-47.75,-182],[-2.5,-4.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3,-186],[27,-3]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[95.75,-186.5],[77.5,-4]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[182.75,-178.5],[127,-2]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[268.25,-167.5],[178.5,5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[326.25,-151.5],[213,11.5]]}],"t":150}],"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,0.6078,0.8588],"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":[-223,-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":"Group 11","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-67.25,-234.5],[-223.5,-91.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-20,-233],[-195.5,-92]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[50.25,-220.75],[-145,-93]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97.75,-205.75],[-95.5,-91]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[128.25,-183.75],[-44,-84]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[131.75,-166.25],[-9.5,-77.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 10","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 17","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-18.5,-35.5],[-162.5,-1.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-37.5,-31],[-163.5,-3]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-71,-27.5],[-163.5,-3]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-119.5,-21],[-163.5,-3]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-169,-22],[-163.5,-3]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-213,-21.5],[-163.5,-3]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":63},{"s":[0],"t":64}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 9","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-9,-77.25],[-221.75,-94]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[4,-70.5],[-195.5,-92]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[19.25,-62.75],[-145,-93]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[19.75,-52.25],[-95.5,-91]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[4.75,-43.25],[-44,-84]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-18.25,-34.75],[-9.5,-77.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 8","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-418.312,-208.438],[-270.75,-270.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-388.25,-216.625],[-226.167,-273.833]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-327.5,-230.375],[-135.417,-274.333]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-251,-240.375],[-48.417,-266.333]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-150,-241.875],[37.083,-255.333]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-65,-237.375],[95.083,-239.333]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 7","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-418.312,-208.188],[-223.688,-90.312]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-389,-216.5],[-195.5,-91.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-327.5,-230.625],[-145,-92.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-251,-240.625],[-95.5,-90.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-150,-242.125],[-44,-83.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-65,-237.625],[-9.5,-77]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 6","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 4","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-347,-54],[-223.688,-90.312]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-347.5,-62],[-195.5,-91.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-337,-73],[-145,-92.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-311,-82],[-95.5,-90.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-271.5,-88],[-44,-83.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-224.5,-94],[-9.5,-77]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 5","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-162.75,-1.25],[-223.438,-89.812]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-4.5],[-195.25,-91]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-4.5],[-144.75,-92]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-4.5],[-95.25,-90]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-4.5],[-43.75,-83]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-4.5],[-9.25,-76.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 4","ix":15,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 16","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-347,-53.75],[-163,-1.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-348.194,-57.935],[-164.306,-2.806]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-336.444,-68.935],[-164.306,-2.806]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-312.944,-78.935],[-164.306,-2.806]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-270.444,-84.935],[-164.306,-2.806]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-223.944,-89.435],[-164.306,-2.806]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 3","ix":16,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 18","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-268.5,-269],[-66.75,-237.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-219.5,-275],[-20,-233.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-127.75,-275.75],[48,-221.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-40.75,-267.75],[95.5,-206.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.75,-256.75],[126,-184.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[102.75,-240.75],[129.5,-167]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 2","ix":17,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 19","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-418.312,-208.188],[-347,-53.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-388.5,-216.5],[-347,-53.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-327,-229.5],[-337.5,-69]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-250.5,-239.5],[-311.5,-78]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-149.5,-241],[-272,-84]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-64.5,-236.5],[-225,-90]]}],"t":150}],"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,0.6078,0.8588],"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":2},{"ty":4,"nm":"layer 7","sr":1,"st":0,"op":151,"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":[400,400,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":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[274.236,-5.146],[255.736,13.354],[274.236,31.854],[292.736,13.354]]}],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[308.889,-1.656],[290.389,16.844],[308.889,35.344],[327.389,16.844]]}],"t":56},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[342.135,1.052],[323.635,19.552],[342.135,38.052],[360.635,19.552]]}],"t":72},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[9.429,0],[0,-9.429],[-9.429,0],[0,9.429]],"o":[[-9.429,0],[0,9.429],[9.429,0],[0,-9.429]],"v":[[406.449,9.763],[389.376,26.836],[406.449,43.909],[423.521,26.836]]}],"t":90},{"s":[{"c":true,"i":[[8.716,0],[0,-8.716],[-8.716,0],[0,8.716]],"o":[[-8.716,0],[0,8.716],[8.716,0],[0,-8.716]],"v":[[443.837,19.483],[428.056,35.264],[443.837,51.045],[459.618,35.264]]}],"t":103}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":72},{"s":[0],"t":103}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[90,96],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[96,96],"t":72},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[91.3,93.942],"t":90},{"s":[90,90],"t":103}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[0],"t":40},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80],"t":72},{"s":[0],"t":103}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle4","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-256.458,123.368],[-248.958,130.868],[-256.458,138.368],[-263.958,130.868]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-224.708,116.618],[-217.208,124.118],[-224.708,131.618],[-232.208,124.118]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-163.958,102.618],[-156.458,110.118],[-163.958,117.618],[-171.458,110.118]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-86.208,93.368],[-78.708,100.868],[-86.208,108.368],[-93.708,100.868]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[14.042,90.368],[21.542,97.868],[14.042,105.368],[6.542,97.868]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[97.292,96.118],[104.792,103.618],[97.292,111.118],[89.792,103.618]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle 3","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-96.938,-279.75],[-89.438,-272.25],[-96.938,-264.75],[-104.438,-272.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-52.028,-283.694],[-44.528,-276.194],[-52.028,-268.694],[-59.528,-276.194]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[31.472,-283.694],[38.972,-276.194],[31.472,-268.694],[23.972,-276.194]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[110.472,-277.694],[117.972,-270.194],[110.472,-262.694],[102.972,-270.194]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[190.972,-259.194],[198.472,-251.694],[190.972,-244.194],[183.472,-251.694]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[241.472,-238.944],[248.972,-231.444],[241.472,-223.944],[233.972,-231.444]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle 2","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-336.5,-38.875],[-329,-31.375],[-336.5,-23.875],[-344,-31.375]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-321.167,-55.667],[-313.667,-48.167],[-321.167,-40.667],[-328.667,-48.167]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-273.208,-79.382],[-265.708,-71.882],[-273.208,-64.382],[-280.708,-71.882]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-205.708,-98.882],[-198.208,-91.382],[-205.708,-83.882],[-213.208,-91.382]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-102.208,-114.382],[-94.708,-106.882],[-102.208,-99.382],[-109.708,-106.882]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-2.708,-119.882],[4.792,-112.382],[-2.708,-104.882],[-10.208,-112.382]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle 1","ix":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-1.75,-7.5],[5.75,0],[-1.75,7.5],[-9.25,0]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[43,-17.5],[50.5,-10],[43,-2.5],[35.5,-10]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[140,-27.5],[147.5,-20],[140,-12.5],[132.5,-20]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[239.5,-30.5],[247,-23],[239.5,-15.5],[232,-23]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[357,-22],[364.5,-14.5],[357,-7],[349.5,-14.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[440,-7.5],[447.5,0],[440,7.5],[432.5,0]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Group 8","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-97.25,-272.062],[-221.25,-92.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-51,-278.5],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[31.5,-276],[-82.5,-109]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[110.5,-270],[17,-112]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[191,-251.5],[134.5,-103.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[241.5,-229.75],[217.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 7","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[2,-113.5],[-219.375,-89.375]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[54,-112.5],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[154,-101.5],[-82.5,-110]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[234,-82.5],[17,-113]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[302.5,-57.5],[134.5,-104.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[334.5,-33.5],[217.5,-90]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 6","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-107.625,70.5],[-222,-86.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-58.75,64.75],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[35.5,66],[-82.5,-109]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[123,72.5],[17,-112]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[208.5,82.5],[134.5,-103.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[265.5,100],[217.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 5","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-254.5,130.375],[-224.625,-85.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-224,124],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.5,110.5],[-82.5,-109]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.5,102],[17,-112]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[15,98],[134.5,-103.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97.5,103],[217.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 4","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-336.625,-32.875],[-259.438,-205.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-317.881,-47.517],[-230.39,-219.78]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-273.889,-72.962],[-164.345,-237.53]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-207.3,-93.207],[-89.269,-253.178]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-101.5,-107.5],[13.5,-256.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-3.5,-113.5],[100.5,-252]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 3","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-256.625,132],[-336,-30.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-226.39,123.161],[-318.381,-47.517]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-164.395,108.379],[-274.389,-72.962]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.612,101.901],[-207.8,-92.207]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[15,96.5],[-102,-107.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97.5,102.5],[-4,-113.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 2","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-333.25,-34.125],[-224.375,-88.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-318,-49.5],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-274,-72.5],[-82.5,-109]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-206.5,-92],[17,-112]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-103,-107.5],[134.5,-103.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-3.5,-113],[217.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 1","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-256.875,-205.125],[-223.781,-89.719]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-230.5,-219.5],[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-164.5,-239.5],[-82.5,-109]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.5,-252.5],[17,-112]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[13.5,-255.5],[134.5,-103.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[99.5,-252],[217.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":"layer 2","sr":1,"st":0,"op":151,"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":[623,376,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":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-206.064,657.242],[-224.564,675.742],[-206.064,694.242],[-187.564,675.742]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-188.754,659.724],[-207.254,678.224],[-188.754,696.724],[-170.254,678.224]]}],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-193.978,678.937],[-212.478,697.437],[-193.978,715.937],[-175.478,697.437]]}],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-195.61,693.605],[-214.11,712.105],[-195.61,730.605],[-177.11,712.105]]}],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-204.412,734.883],[-222.912,753.382],[-204.412,771.882],[-185.912,753.382]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-220.921,731.651],[-239.421,750.151],[-220.921,768.651],[-202.421,750.151]]}],"t":138},{"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[-206.064,657.242],[-224.564,675.742],[-206.064,694.242],[-187.564,675.742]]}],"t":150}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2.941],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":138},{"s":[2],"t":150}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[80,89],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[88,88],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[85.353,85.353],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[83,83],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[78,78],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[72.945,80.289],"t":138},{"s":[80,89],"t":150}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[18],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[58.824],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[40],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":138},{"s":[15],"t":150}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 2","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[101.25,-147.25],[108.75,-139.75],[101.25,-132.25],[93.75,-139.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[145.5,-139.5],[153,-132],[145.5,-124.5],[138,-132]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[215,-123.5],[222.5,-116],[215,-108.5],[207.5,-116]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[264,-96],[271.5,-88.5],[264,-81],[256.5,-88.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[298,-68],[305.5,-60.5],[298,-53],[290.5,-60.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[294,-38.5],[301.5,-31],[294,-23.5],[286.5,-31]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Circle 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-2.75,-7.375],[4.75,0.125],[-2.75,7.625],[-10.25,0.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[55,-7.5],[62.5,0],[55,7.5],[47.5,0]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[154,3],[161.5,10.5],[154,18],[146.5,10.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[233,22],[240.5,29.5],[233,37],[225.5,29.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[299,47],[306.5,54.5],[299,62],[291.5,54.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[335,71.5],[342.5,79],[335,86.5],[327.5,79]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Group 8","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-320.219,-247.125],[-227.375,-89.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272.5,-251.5],[-167.5,-89]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-192,-253.5],[-68.5,-78.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-112,-246.5],[10.5,-59.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-32,-227.5],[76.5,-34.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[18,-207],[112.5,-10]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 7","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-121.875,-228.969],[-319.5,-246.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-75.75,-221],[-278,-253.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-7.75,-204.5],[-191,-252.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.25,-177],[-111,-245.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[75.25,-149],[-31,-226.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[71.25,-119.5],[19,-206]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 6","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-122.156,-226.406],[-6,-65.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-75.75,-221],[37.5,-53]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-7.75,-204.5],[90,-27]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.25,-177],[116.25,-2.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[75.25,-149],[114.25,29.75]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[71.25,-119.5],[87.75,49.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":131},{"s":[0],"t":132}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 5","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-125,127],[-227.375,-89.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-83.5,131.5],[-167.5,-89]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-12.5,143.75],[-68.5,-78.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[35.75,157.5],[10.5,-59.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[70.25,179.5],[76.5,-34.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[71.25,196],[112.5,-10]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 4","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 4","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-330,94.375],[-227.375,-89.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.75,88.75],[-167.5,-89]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-188,88.25],[-68.5,-78.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-100.75,96.75],[10.5,-59.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-11.75,109.75],[76.5,-34.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.75,123.75],[112.5,-10]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 3","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-8.75,-65.25],[-227.375,-89.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[38,-53],[-167.5,-89]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89,-28],[-68.5,-78.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[115.25,-3.25],[10.5,-59.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[113.25,28.75],[76.5,-34.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[86.75,48.75],[112.5,-10]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":142},{"s":[0],"t":143}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 2","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-123.562,-226.375],[-227.375,-89.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-76,-218.5],[-167.5,-89]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-7.5,-203],[-68.5,-78.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[41.5,-175.5],[10.5,-59.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[75.5,-147.5],[76.5,-34.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[71.5,-118],[112.5,-10]]}],"t":150}],"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,0.6078,0.8588],"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":4},{"ty":4,"nm":"layer 8 ","sr":1,"st":150,"op":151,"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":[398.5,400,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":"Circle 7","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-29.554,264.014],[-22.054,271.514],[-29.554,279.014],[-37.054,271.514]]}],"t":90},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-63.054,250.014],[-55.554,257.514],[-63.054,265.014],[-70.554,257.514]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-83.554,230.014],[-76.054,237.514],[-83.554,245.014],[-91.054,237.514]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":104},{"s":[100],"t":105}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 6","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-56,-84.5],[-48.5,-77],[-56,-69.5],[-63.5,-77]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-58,-100.5],[-50.5,-93],[-58,-85.5],[-65.5,-93]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-44,-126],[-36.5,-118.5],[-44,-111],[-51.5,-118.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-10,-152.5],[-2.5,-145],[-10,-137.5],[-17.5,-145]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[53,-176.5],[60.5,-169],[53,-161.5],[45.5,-169]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[127.5,-191],[135,-183.5],[127.5,-176],[120,-183.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Circle 5","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[43,154],[50.5,161.5],[43,169],[35.5,161.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[9,148],[16.5,155.5],[9,163],[1.5,155.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-51,128],[-43.5,135.5],[-51,143],[-58.5,135.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-93.5,108],[-86,115.5],[-93.5,123],[-101,115.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-114.5,76.5],[-107,84],[-114.5,91.5],[-122,84]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-112,49.5],[-104.5,57],[-112,64.5],[-119.5,57]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":79},{"s":[100],"t":80}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 4","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-3.5,-5.75],[4,1.75],[-3.5,9.25],[-11,1.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-27.5,-14.25],[-20,-6.75],[-27.5,0.75],[-35,-6.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-58,-39.25],[-50.5,-31.75],[-58,-24.25],[-65.5,-31.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-74.5,-64.25],[-67,-56.75],[-74.5,-49.25],[-82,-56.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-64.5,-97.75],[-57,-90.25],[-64.5,-82.75],[-72,-90.25]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-33,-124.25],[-25.5,-116.75],[-33,-109.25],[-40.5,-116.75]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":65},{"s":[100],"t":66}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 3","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[3.5,292.5],[11,300],[3.5,307.5],[-4,300]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-23.5,287],[-16,294.5],[-23.5,302],[-31,294.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-55,269.5],[-47.5,277],[-55,284.5],[-62.5,277]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-69,250],[-61.5,257.5],[-69,265],[-76.5,257.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-61,229.5],[-53.5,237],[-61,244.5],[-68.5,237]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-32.5,212],[-25,219.5],[-32.5,227],[-40,219.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":18},{"s":[100],"t":19}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 2","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-83.625,230],[-76.125,237.5],[-83.625,245],[-91.125,237.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-86,218],[-78.5,225.5],[-86,233],[-93.5,225.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-71.5,198],[-64,205.5],[-71.5,213],[-79,205.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-33.5,179.5],[-26,187],[-33.5,194.5],[-41,187]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[36.5,160],[44,167.5],[36.5,175],[29,167.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[116.5,151],[124,158.5],[116.5,166],[109,158.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Circle 1","ix":7,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-85,111.5],[-77.5,119],[-85,126.5],[-92.5,119]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-103.5,97.5],[-96,105],[-103.5,112.5],[-111,105]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-116.5,71.5],[-109,79],[-116.5,86.5],[-124,79]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-104,44],[-96.5,51.5],[-104,59],[-111.5,51.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-63,14],[-55.5,21.5],[-63,29],[-70.5,21.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-7.5],[7.5,0],[0,7.5],[-7.5,0]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":9},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":10},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-3.5,1],[-83.5,119.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-27.5,-7.5],[-102,105.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-58,-32.5],[-115,79.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-74.5,-57.5],[-102.5,52]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-64.5,-91],[-61.5,22]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-33,-117.5],[1.5,0.5]]}],"t":150}],"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,0.6078,0.8588],"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":[-223,-88.5],"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":[0],"t":65},{"s":[100],"t":66}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 21","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-278.25,-163.5],[-308.5,31]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.75,-181],[-326,16]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-267.75,-206.5],[-339,-10]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-233.75,-233],[-326.5,-37.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-170.75,-257],[-285.5,-67.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-96.25,-271.5],[-222.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":23},{"s":[100],"t":24}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 20","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-332.812,-32],[-307.5,30]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-319.312,-46],[-326,16]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272.812,-72],[-339,-10]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-205.812,-92],[-326.5,-37.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-99.812,-107],[-285.5,-67.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-2,-113],[-222.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":9},{"s":[100],"t":10}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 19","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 27","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-219.375,215.625],[-180.125,72.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-246.375,210.125],[-214.125,66.625]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-277.875,192.625],[-274.125,46.625]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-291.875,173.125],[-316.625,26.625]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-290.253,163.541],[-323.436,16.409]]}],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-271.997,174.559],[-330.814,5.341]]}],"t":106},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-286.875,168.625],[-337.625,-4.875]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-306.125,150.375],[-335.125,-31.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":112},{"s":[100],"t":113}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 18","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 26","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-286.22,155.274],[-270.617,174.489]]}],"t":107},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-283.625,148.625],[-285.375,168.375]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-255.125,131.125],[-304.875,149.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":106},{"s":[100],"t":107}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 17","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 25","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-182.125,284.625],[-218.875,212.375]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-182.625,279.625],[-245.875,206.875]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-171.625,271.125],[-277.375,189.375]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147.625,262.125],[-291.375,169.875]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-106.625,255.125],[-283.375,149.375]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-60.625,249.125],[-254.875,131.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":20},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":21},{"s":[100],"t":111}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 16","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 24","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-183.25,287.375],[-305.375,151.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-182,282],[-308.875,137.875]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-171,273.5],[-294.375,117.875]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147,264.5],[-256.375,99.375]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-106,257.5],[-186.375,79.875]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-60,251.5],[-106.375,70.875]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 15","ix":15,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 23","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252.5,130.5],[-301.5,148.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-225.5,124],[-309.5,137.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-161.5,110.5],[-295,117.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-84.5,103],[-257,99]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.5,99],[-187,79.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[99.5,103],[-107,70.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 14","ix":16,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,149],[-307.5,30]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-308.5,137.5],[-326,16]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-294,117.5],[-339,-10]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-256,99],[-326.5,-37.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-186,79.5],[-285.5,-67.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-106,70.5],[-222.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":10},{"s":[100],"t":11}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 13","ix":17,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-219.75,211.5],[-307.5,30]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-246.75,206],[-326,16]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-278.25,188.5],[-339,-10]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-292.25,169],[-326.5,-37.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.5,147.5],[-285.5,-67.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-253,130],[-222.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":45},{"s":[100],"t":46}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 12","ix":18,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 4","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":118},{"s":[{"c":false,"i":[[0,0]],"o":[[0,0]],"v":[[-179.5,-99]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 11","ix":19,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 19","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-131.25,-229.75],[-226.562,-87]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-146.25,-236.25],[-250.562,-95.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-253.25],[-281.062,-120.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-172.75,-268.75],[-297.562,-145.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-162.75,-291.25],[-287.562,-179]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-145.25,-307.25],[-256.062,-205.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":98},{"s":[100],"t":99}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 10","ix":20,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 18","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-131.25,-229.75],[-280.062,-164.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-146.25,-236.25],[-282.062,-180.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-163.75,-253.25],[-268.062,-206]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-172.75,-268.75],[-234.062,-232.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-162.75,-291.25],[-171.062,-256.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-145.25,-307.25],[-96.562,-271]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 9","ix":21,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 17","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-142.25,-309.75],[-279.562,-164.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-128.75,-314.75],[-281.562,-180.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-90.75,-327.75],[-267.562,-206]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-49.25,-336.75],[-233.562,-232.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[6.75,-337.75],[-170.562,-256.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[54.75,-334.75],[-96.062,-271]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":12},{"s":[100],"t":13}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 8","ix":22,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 22","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-219.5,211.875],[-180.562,72]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-246.5,206.375],[-214.562,66]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-278,188.875],[-274.562,46]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-292,169.375],[-317.062,26]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-284,148.875],[-338.062,-5.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-255.5,131.375],[-335.562,-32.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 7","ix":23,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 21","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304.5,148.25],[-220.562,212.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-309,136.75],[-247.562,207]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-294.5,116.75],[-279.062,189.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-256.5,98.25],[-293.062,170]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-186.5,78.75],[-285.062,149.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-106.5,69.75],[-256.562,132]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":18},{"s":[100],"t":19}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 6","ix":24,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 20","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-334.469,-29.5],[-306.375,147.312]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-318.812,-45.25],[-308.062,137.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-274.312,-71.25],[-293.562,117.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-207.312,-91.25],[-255.562,99]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-101.312,-106.25],[-185.562,79.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-3.5,-112.25],[-105.562,70.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 5","ix":25,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 16","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-280,-165.25],[-332.375,-32.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-282,-181.25],[-318.875,-46.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-268,-206.75],[-274.375,-72.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-234,-233.25],[-207.375,-92.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-171,-257.25],[-101.375,-107.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-96.5,-271.75],[-3.562,-113.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 4","ix":26,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 15","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-226.5,-86],[-278.5,-166.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-250.5,-94.5],[-280.5,-182.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281,-119.5],[-266.5,-208]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-297.5,-144.5],[-232.5,-234.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-287.5,-178],[-169.5,-258.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-256,-204.5],[-95,-273]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":65},{"s":[100],"t":66}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 3","ix":27,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 14","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-180.5,72.5],[-229,-86.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-214.5,66.5],[-253,-95]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-274.5,46.5],[-283.5,-120]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-317,26.5],[-300,-145]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-338,-5],[-290,-178.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-335.5,-32],[-258.5,-205]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":93},{"s":[100],"t":94}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 2","ix":28,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-180,72],[-307.5,30]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-214,66],[-326,16]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-274,46],[-339,-10]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-316.5,26],[-326.5,-37.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-337.5,-5.5],[-285.5,-67.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-335,-32.5],[-222.5,-89]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":84},{"s":[100],"t":86}],"ix":7}}]}],"ind":5},{"ty":4,"nm":"layer 5","sr":1,"st":0,"op":151,"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":[623,376,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":"Circle 5","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[49.25,77.625],[56.75,85.125],[49.25,92.625],[41.75,85.125]]}],"t":0},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[47.5,88.5],[55,96],[47.5,103.5],[40,96]]}],"t":12}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[22,-204.5],"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":11},{"s":[0],"t":12}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 4","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-191.625,-115.25],[-184.125,-107.75],[-191.625,-100.25],[-199.125,-107.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-164.25,-110.5],[-156.75,-103],[-164.25,-95.5],[-171.75,-103]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-125.75,-98],[-118.25,-90.5],[-125.75,-83],[-133.25,-90.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-95.25,-83.75],[-87.75,-76.25],[-95.25,-68.75],[-102.75,-76.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-76.25,-63.25],[-68.75,-55.75],[-76.25,-48.25],[-83.75,-55.75]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-72.25,-46.594],[-64.75,-39.094],[-72.25,-31.594],[-79.75,-39.094]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[22,-204.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":"Circle 3","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-72.25,-46.25],[-64.75,-38.75],[-72.25,-31.25],[-79.75,-38.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-76,-36.5],[-68.5,-29],[-76,-21.5],[-83.5,-29]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-90.25,-18.75],[-82.75,-11.25],[-90.25,-3.75],[-97.75,-11.25]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-114.25,-4.75],[-106.75,2.75],[-114.25,10.25],[-121.75,2.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-153.75,6.25],[-146.25,13.75],[-153.75,21.25],[-161.25,13.75]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-190.75,13.25],[-183.25,20.75],[-190.75,28.25],[-198.25,20.75]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[22,-204.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":0,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 1","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-3.375,-10.375],[4.125,-2.875],[-3.375,4.625],[-10.875,-2.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[16.5,5.5],[24,13],[16.5,20.5],[9,13]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[35,32],[42.5,39.5],[35,47],[27.5,39.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[36.5,59.5],[44,67],[36.5,74.5],[29,67]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[11.5,87.5],[19,95],[11.5,102.5],[4,95]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-27,108],[-19.5,115.5],[-27,123],[-34.5,115.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[22,-204.5],"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":80},{"s":[0],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 10","ix":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[71.5,-118.5],[113,-6.75]]}],"t":0},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[70,-108.75],[113,-6.75]]}],"t":11}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":11},{"s":[0],"t":12}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 9","ix":6,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[23.125,-199],[71.625,-120.125]]}],"t":0},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[32,-195.5],[70.25,-108.25]]}],"t":11}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":11},{"s":[0],"t":12}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-71.5,-38],[-0.875,-0.5],[51,82.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-74.389,-31.944],[11.389,8.444],[11.944,9.222]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-75.833,-28.917],[16.833,12.917],[-75.833,-28.917]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-90.083,-11.167],[35.333,39.417],[-90.083,-11.167]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-114.083,2.833],[36.833,66.917],[-114.083,2.833]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-153.583,13.833],[11.833,94.917],[-153.583,13.833]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-190.583,20.833],[-26.667,115.417],[-190.583,20.833]]}],"t":150}],"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,0.6078,0.8588],"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":[22,-204.5],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":0,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 8","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-169.875,-310.75],[-317.5,-248.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-143.5,-306.5],[-276,-252.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-105,-294],[-191.5,-252]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-74.5,-279.75],[-112.5,-247]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.5,-259.25],[-32,-228.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-51.5,-240.75],[19.25,-206.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":142},{"s":[0],"t":143}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 7","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[12.5,-209.375],[-166,-309.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[38.75,-190.75],[-142.5,-307.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[57.25,-164.25],[-104,-295.25]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[58.75,-136.75],[-73.5,-281]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[33.75,-108.75],[-54.5,-260.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-4.75,-88.25],[-50.5,-242]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":64},{"s":[0],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 6","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[109.938,-15.062],[16.188,-212.062]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[117.417,6.417],[38.583,-190.833]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[111.417,35.417],[57.083,-164.333]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.917,58.917],[58.583,-136.833]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[23.417,82.917],[33.583,-108.833]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-39.083,96.917],[-4.917,-88.333]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":52},{"s":[0],"t":53}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 5","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 4","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-118.5,-228.5],[21.125,-206.375]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-76.75,-220.5],[38,-192]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-7.5,-203.75],[56.5,-165.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[40.5,-178.75],[58.581,-137.355]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[74,-146.25],[33.581,-109.355]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[74,-119.75],[-4.919,-88.855]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":80},{"s":[0],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 4","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5.375,-65.875],[18,-202.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[36.722,-54.861],[37.944,-191.361]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89.722,-25.361],[56.444,-164.861]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[114.722,-2.861],[57.944,-137.361]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[113.722,28.639],[32.944,-109.361]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89.222,55.139],[-5.556,-88.861]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":80},{"s":[0],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 3","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-168,-308.5],[-121.5,-228]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-143.25,-306.5],[-75.5,-219.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-104.75,-294],[-7.75,-202.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-74.25,-279.75],[40.25,-177.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.25,-259.25],[73.75,-145.25]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-51.25,-240.75],[73.75,-118.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":125},{"s":[0],"t":126}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 2","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-50.25,-243],[-166,-311.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-53.083,-233.25],[-142.5,-308.833]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-67.333,-215.5],[-104,-296.333]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-91.333,-201.5],[-73.5,-282.083]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-130.833,-190.5],[-54.5,-261.583]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-167.833,-183.5],[-50.5,-243.083]]}],"t":150}],"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,0.6078,0.8588],"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":0,"ix":7}}]}],"ind":6},{"ty":4,"nm":"layer 4","sr":1,"st":0,"op":151,"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":[886,589.5,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":"Circle 6","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-118,196.625],[-110.5,204.125],[-118,211.625],[-125.5,204.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-138,200.5],[-130.5,208],[-138,215.5],[-145.5,208]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-175,205],[-167.5,212.5],[-175,220],[-182.5,212.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-218,211],[-210.5,218.5],[-218,226],[-225.5,218.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-271,208],[-263.5,215.5],[-271,223],[-278.5,215.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-313.5,209.5],[-306,217],[-313.5,224.5],[-321,217]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":63},{"s":[0],"t":64}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 5","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-110.25,154.75],[-102.75,162.25],[-110.25,169.75],[-117.75,162.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-98.5,159],[-91,166.5],[-98.5,174],[-106,166.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-80.5,169],[-73,176.5],[-80.5,184],[-88,176.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-78.5,179],[-71,186.5],[-78.5,194],[-86,186.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-94.5,189],[-87,196.5],[-94.5,204],[-102,196.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-118,196.5],[-110.5,204],[-118,211.5],[-125.5,204]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-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":"Circle 4","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 16","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.097,0.609],[-0.609,-4.097],[4.097,-0.609],[0.609,4.097]],"o":[[4.097,-0.609],[0.609,4.097],[-4.097,0.609],[-0.609,-4.097]],"v":[[-46.602,-197.169],[-38.081,-190.852],[-44.398,-182.331],[-52.919,-188.648]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-3.25,-187],[4.25,-179.5],[-3.25,-172],[-10.75,-179.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[48.75,-160],[56.25,-152.5],[48.75,-145],[41.25,-152.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[74.25,-136],[81.75,-128.5],[74.25,-121],[66.75,-128.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[72.75,-105],[80.25,-97.5],[72.75,-90],[65.25,-97.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[46.25,-82],[53.75,-74.5],[46.25,-67],[38.75,-74.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":142},{"s":[0],"t":143}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 3","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 15","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[72.25,-142.5],[79.75,-135],[72.25,-127.5],[64.75,-135]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[76.25,-127],[83.75,-119.5],[76.25,-112],[68.75,-119.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[70.25,-97.5],[77.75,-90],[70.25,-82.5],[62.75,-90]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[42.25,-76],[49.75,-68.5],[42.25,-61],[34.75,-68.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-16.5,-51.125],[-9,-43.625],[-16.5,-36.125],[-24,-43.625]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-79,-39.125],[-71.5,-31.625],[-79,-24.125],[-86.5,-31.625]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":66},{"s":[0],"t":67}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 2","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[31.5,64.625],[39,72.125],[31.5,79.625],[24,72.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[23,75],[30.5,82.5],[23,90],[15.5,82.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-5.5,93.5],[2,101],[-5.5,108.5],[-13,101]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-45.5,106],[-38,113.5],[-45.5,121],[-53,113.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-115.5,117],[-108,124.5],[-115.5,132],[-123,124.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-179,124],[-171.5,131.5],[-179,139],[-186.5,131.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":56},{"s":[0],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 1","ix":6,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[2.875,-8.75],[10.375,-1.25],[2.875,6.25],[-4.625,-1.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[23.5,3.5],[31,11],[23.5,18.5],[16,11]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[45,25],[52.5,32.5],[45,40],[37.5,32.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[42,43],[49.5,50.5],[42,58],[34.5,50.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[15.5,63.5],[23,71],[15.5,78.5],[8,71]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-27.5,81],[-20,88.5],[-27.5,96],[-35,88.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-223,-88.5],"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":119},{"s":[0],"t":120}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-45.25,-190.5],[2.609,-0.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-3,-179],[24,10.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[49,-152],[45.5,32]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[74.5,-128],[42.5,50]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[73,-97],[16,70.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[46.5,-74],[-27,88]]}],"t":150}],"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,0.6078,0.8588],"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":[-223,-88.5],"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":112},{"s":[0],"t":113}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 12","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 17","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-267.75,-279],[-150.5,-222]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-225.5,-267.5],[-146.5,-206.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-173.5,-240.5],[-152.5,-177]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-148,-216.5],[-180.5,-155.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-149.5,-185.5],[-239.25,-130.625]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-176,-162.5],[-301.75,-118.625]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":64},{"s":[0],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 11","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 8","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-150.812,-222.906],[-220.078,-91.625]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-146.5,-207.5],[-199,-78]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-152.5,-178],[-177.5,-56.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-180.5,-156.5],[-180.5,-38.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-239.25,-131.625],[-207,-18]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-301.75,-119.625],[-250,-0.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":64},{"s":[0],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 10","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 14","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-332.75,74.375],[-341.375,116.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-322.25,76.875],[-360.125,119.875]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304.25,86.875],[-397.125,124.375]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-303.161,93.944],[-415.157,126.891]]}],"t":64},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-302.25,96.875],[-440.125,130.375]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-318.25,106.875],[-493.125,127.375]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-341.75,114.375],[-535.625,128.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":64},{"s":[0],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 9","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-192.25,-15.625],[-341.875,116.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-199.75,-6.125],[-360.625,119.875]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-228.25,12.375],[-397.625,124.375]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-268.25,24.875],[-440.625,130.375]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-338.25,35.875],[-493.625,127.375]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-401.75,42.875],[-536.125,128.875]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":26},{"s":[0],"t":27}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 8","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 7","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-192.25,-15.625],[-329.25,71.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-199.75,-6.125],[-322.375,77.875]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-228.25,12.375],[-304.375,87.875]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-268.25,24.875],[-302.375,97.875]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-338.25,35.875],[-318.375,107.875]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-401.75,42.875],[-341.875,115.375]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":56},{"s":[0],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 7","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-193,-16],[-219.953,-89.062]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-200.5,-6.5],[-199,-78]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-229,12],[-177.5,-56.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-269,24.5],[-180.5,-38.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-339,35.5],[-207,-18]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-402.5,42.5],[-250,-0.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":56},{"s":[0],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 6","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-330.5,70.25],[-220.391,-89]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-322,78],[-199,-78]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-304,88],[-177.5,-56.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-302,98],[-180.5,-38.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-318,108],[-207,-18]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-341.5,115.5],[-250,-0.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":118},{"s":[0],"t":119}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 5","ix":15,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 19","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-151,-222.5],[-192,-16]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147,-207],[-199.5,-6.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-153,-177.5],[-228,12]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-181,-156],[-268,24.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-239.75,-131.125],[-338,35.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-302.25,-119.125],[-401.5,42.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":30},{"s":[0],"t":31}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 4","ix":16,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-385.125,-86.938],[-220.391,-89]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-345.25,-82.5],[-199,-78]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-274.75,-69.75],[-177.5,-56.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-228.25,-55.25],[-180.5,-38.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-194.5,-34.5],[-207,-18]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-191.5,-15.5],[-250,-0.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":119},{"s":[0],"t":120}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 3","ix":17,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 18","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-268.75,-278.5],[-387,-89]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-225,-268.5],[-345.25,-82.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-173,-241.5],[-274.75,-69.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147.5,-217.5],[-228.25,-55.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-149,-186.5],[-193.5,-34]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-175.5,-163.5],[-191,-16.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":142},{"s":[0],"t":143}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 2","ix":18,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-388.062,-87.062],[-331.5,76]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-346.25,-82],[-321,78.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-275.75,-69.25],[-303,88.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-229.25,-54.75],[-301,98.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-194,-33.5],[-317,108.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-192,-16],[-340.5,116]]}],"t":150}],"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,0.6078,0.8588],"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":7},{"ty":4,"nm":"layer 6","sr":1,"st":0,"op":151,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[-34.108,-286.716,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[369.892,109.784,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":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[13.125,195.896],[-5.375,214.396],[13.125,232.896],[31.625,214.396]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[55.394,186.365],[36.894,204.865],[55.394,223.365],[73.894,204.865]]}],"t":16},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[104.115,180.479],[85.615,198.979],[104.115,217.479],[122.615,198.979]]}],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[160.617,173.944],[142.117,192.444],[160.617,210.944],[179.117,192.444]]}],"t":50},{"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[204.115,173.708],[185.615,192.208],[204.115,210.708],[222.615,192.208]]}],"t":63}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":32},{"s":[0],"t":63}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[90,96],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[96,96],"t":32},{"s":[96,96],"t":63}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[0],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[80],"t":32},{"s":[0],"t":63}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle 3","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-114.5,97.25],[-107,104.75],[-114.5,112.25],[-122,104.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-87.5,82.5],[-80,90],[-87.5,97.5],[-95,90]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-20,64.5],[-12.5,72],[-20,79.5],[-27.5,72]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[53.5,50],[61,57.5],[53.5,65],[46,57.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[156.5,46],[164,53.5],[156.5,61],[149,53.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[244,50],[251.5,57.5],[244,65],[236.5,57.5]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-147,-306.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":"Circle 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-1,-4.688],[6.5,2.812],[-1,10.312],[-8.5,2.812]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[12,-12],[19.5,-4.5],[12,3],[4.5,-4.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[54,-25.5],[61.5,-18],[54,-10.5],[46.5,-18]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[92,-33.5],[99.5,-26],[92,-18.5],[84.5,-26]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[148.5,-36],[156,-28.5],[148.5,-21],[141,-28.5]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[196.25,-33.75],[203.75,-26.25],[196.25,-18.75],[188.75,-26.25]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-147,-306.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":"Group 1","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[200.5,-26],[1.5,2.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[223.5,-20.5],[13.5,-4]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[263,-10],[55.5,-17.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[292,5.5],[93.5,-25.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[310,25.5],[150,-28]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[315.5,43.5],[197,-24.5]]}],"t":150}],"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,0.6078,0.8588],"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":[-147,-306.5],"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":146},{"s":[0],"t":147}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 9","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 6","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-104.125,-269.5],[-148.125,-302]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.5,-272],[-134.5,-311.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[28.5,-271.5],[-92.5,-325]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[106.5,-266.5],[-54.5,-333]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[186.5,-247.5],[2,-335.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[238,-226.5],[49,-332]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 8","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-258.438,-202.375],[-100,-269.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-234,-217],[-55.5,-272.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-166.5,-235],[28.5,-272]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-93,-249.5],[106.5,-267]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[10,-253.5],[186.5,-248]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97.5,-249.5],[238,-227]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 6","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 16","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-284.5,-162],[-263,-201.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-287.5,-177],[-234.5,-217.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-273,-202.5],[-168,-235]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-237,-229.5],[-93.5,-249]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-175,-253.5],[9.5,-253.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-102.5,-267],[98,-249.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Group 2","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-259.438,-203.562],[-147.5,-306.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-234.5,-217.5],[-134.5,-311.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-167,-235.5],[-92.5,-325]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-93.5,-250],[-54.5,-333]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[9.5,-254],[2,-335.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97,-250],[49,-332]]}],"t":150}],"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,0.6078,0.8588],"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":"Circle 2","ix":9,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[8.75,73],[16.25,80.5],[8.75,88],[1.25,80.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-6.25,66.25],[1.25,73.75],[-6.25,81.25],[-13.75,73.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-22.75,46.25],[-15.25,53.75],[-22.75,61.25],[-30.25,53.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-31.25,32.75],[-23.75,40.25],[-31.25,47.75],[-38.75,40.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-22.25,12.25],[-14.75,19.75],[-22.25,27.25],[-29.75,19.75]]}],"t":118},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-1.25,-4.75],[6.25,2.75],[-1.25,10.25],[-8.75,2.75]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-147,-306.5],"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":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Group 7","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 5","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-138,-227],[-146.5,-307]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-152.5,-232.5],[-134.5,-311.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-169,-252.5],[-92.5,-325]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-177.5,-266],[-54.5,-333]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-168.5,-286.5],[2,-335.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147.5,-303.5],[49,-332]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]}],"ind":8}]},{"nm":"","id":"comp_1","layers":[{"ty":4,"nm":"Back circles","sr":1,"st":0,"op":151,"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":[400,400,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":"Circle29","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-248.425,578.425],[-240.925,585.925],[-248.425,593.425],[-255.925,585.925]]}],"t":0},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-276.116,575.748],[-268.616,583.248],[-276.116,590.748],[-283.616,583.248]]}],"t":22}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[194,-268.5],"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":21},{"s":[0],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle28","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[87.575,98.425],[95.075,105.925],[87.575,113.425],[80.075,105.925]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[64.075,125.425],[71.575,132.925],[64.075,140.425],[56.575,132.925]]}],"t":114},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[20.575,147.425],[28.075,154.925],[20.575,162.425],[13.075,154.925]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[194,-268.5],"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":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle27","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[122.075,281.925],[129.575,289.425],[122.075,296.925],[114.575,289.425]]}],"t":142},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[115.575,290.925],[123.075,298.425],[115.575,305.925],[108.075,298.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[194,-268.5],"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":[0],"t":142},{"s":[100],"t":143}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle26","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[276.093,424.56],[283.593,432.06],[276.093,439.56],[268.593,432.06]]}],"t":56},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[208.593,440.31],[216.093,447.81],[208.593,455.31],[201.093,447.81]]}],"t":100},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[107.593,452.56],[115.093,460.06],[107.593,467.56],[100.093,460.06]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26.5,-227.5],"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":[0],"t":56},{"s":[100],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle25","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[345.468,242.185],[352.968,249.685],[345.468,257.185],[337.968,249.685]]}],"t":66},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[302.468,266.185],[309.968,273.685],[302.468,281.185],[294.968,273.685]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[206.718,295.185],[214.218,302.685],[206.718,310.185],[199.218,302.685]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26.5,-227.5],"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":[0],"t":66},{"s":[100],"t":67}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle24","ix":6,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[303.843,393.06],[311.343,400.56],[303.843,408.06],[296.343,400.56]]}],"t":119},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[261.343,409.56],[268.843,417.06],[261.343,424.56],[253.843,417.06]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26.5,-227.5],"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":[0],"t":119},{"s":[100],"t":120}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle23","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-196.425,131.425],[-188.925,138.925],[-196.425,146.425],[-203.925,138.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-239.771,114.675],[-232.271,122.175],[-239.771,129.675],[-247.271,122.175]]}],"t":30},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-263.175,86.925],[-255.675,94.425],[-263.175,101.925],[-270.675,94.425]]}],"t":65}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26.5,-227.5],"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":65},{"s":[0],"t":66}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle21","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-197.925,431.925],[-190.425,439.425],[-197.925,446.925],[-205.425,439.425]]}],"t":0},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-228.425,422.925],[-220.925,430.425],[-228.425,437.925],[-235.925,430.425]]}],"t":25}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26,-227.5],"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":21},{"s":[0],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 1","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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[392.014,397.076],[373.514,415.576],[392.014,434.076],[410.514,415.576]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[338.752,385.832],[320.252,404.332],[338.752,422.832],[357.252,404.332]]}],"t":46},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[287.19,375.063],[268.69,393.563],[287.19,412.063],[305.69,393.563]]}],"t":62},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[252.14,383.046],[233.64,401.546],[252.14,420.046],[270.64,401.546]]}],"t":80},{"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[217.696,399.713],[199.196,418.213],[217.696,436.713],[236.196,418.213]]}],"t":93}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":62},{"s":[0],"t":93}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[90,90],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[96,96],"t":62},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[91.3,93.942],"t":80},{"s":[90,90],"t":93}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[0],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[55],"t":62},{"s":[0],"t":93}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle20","ix":10,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[206.075,294.925],[213.575,302.425],[206.075,309.925],[198.575,302.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[149.075,302.425],[156.575,309.925],[149.075,317.425],[141.575,309.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-39.425,305.925],[-31.925,313.425],[-39.425,320.925],[-46.925,313.425]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-154.925,293.925],[-147.425,301.425],[-154.925,308.925],[-162.425,301.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-26,-227.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":"Circle19","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[181.075,337.425],[188.575,344.925],[181.075,352.425],[173.575,344.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[131.075,325.425],[138.575,332.925],[131.075,340.425],[123.575,332.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[45.415,290.893],[52.915,298.393],[45.415,305.893],[37.915,298.393]]}],"t":80}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-362,-271],"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":79},{"s":[0],"t":80}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle18","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[200.075,303.425],[207.575,310.925],[200.075,318.425],[192.575,310.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[147.075,309.425],[154.575,316.925],[147.075,324.425],[139.575,316.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-19.925,295.425],[-12.425,302.925],[-19.925,310.425],[-27.425,302.925]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-106.175,269.175],[-98.675,276.675],[-106.175,284.175],[-113.675,276.675]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-117,-365],"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":"Circle16","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[58.075,461.425],[65.575,468.925],[58.075,476.425],[50.575,468.925]]}],"t":0},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[47.255,455.765],[54.755,463.265],[47.255,470.765],[39.755,463.265]]}],"t":10}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-367,-440],"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":10},{"s":[0],"t":11}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle17","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[183.575,325.925],[191.075,333.425],[183.575,340.925],[176.075,333.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[134.075,320.925],[141.575,328.425],[134.075,335.925],[126.575,328.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[16.075,279.925],[23.575,287.425],[16.075,294.925],[8.575,287.425]]}],"t":100},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-18.425,244.925],[-10.925,252.425],[-18.425,259.925],[-25.925,252.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-262.5,-415],"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":"Circle15","ix":15,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-78.5,-535.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":"Circle14","ix":16,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[172.575,281.425],[180.075,288.925],[172.575,296.425],[165.075,288.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[135.575,296.425],[143.075,303.925],[135.575,311.425],[128.075,303.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-17.175,317.675],[-9.675,325.175],[-17.175,332.675],[-24.675,325.175]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-121.425,313.175],[-113.925,320.675],[-121.425,328.175],[-128.925,320.675]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[42,-402.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":"Circle13","ix":17,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[115.075,332.425],[122.575,339.925],[115.075,347.425],[107.575,339.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[96.575,319.925],[104.075,327.425],[96.575,334.925],[89.075,327.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[74.325,291.175],[81.825,298.675],[74.325,306.175],[66.825,298.675]]}],"t":80}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-249,-568.5],"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":80},{"s":[0],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Ellipse 3","ix":18,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-9.077],[-10.217,0],[0,9.077]],"o":[[-10.217,0],[0,9.077],[10.217,0],[0,-9.077]],"v":[[569.741,181.736],[551.24,198.171],[569.741,214.607],[588.24,198.171]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.45,0],[0,-9.744],[-10.45,0],[0,9.744]],"o":[[-10.45,0],[0,9.744],[10.45,0],[0,-9.744]],"v":[[531.997,186.774],[513.075,204.418],[531.997,222.062],[550.919,204.418]]}],"t":7},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.717,0],[0,-10.507],[-10.717,0],[0,10.507]],"o":[[-10.717,0],[0,10.507],[10.717,0],[0,-10.507]],"v":[[492.7,192.532],[473.295,211.557],[492.7,230.582],[512.104,211.557]]}],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.08,0],[0,-9.883],[-10.08,0],[0,9.883]],"o":[[-10.08,0],[0,9.883],[10.08,0],[0,-9.883]],"v":[[491.58,205.952],[473.329,223.847],[491.58,241.742],[509.831,223.847]]}],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[9.305,0],[0,-9.123],[-9.305,0],[0,9.123]],"o":[[-9.305,0],[0,9.123],[9.305,0],[0,-9.123]],"v":[[488.8,217.967],[471.953,234.486],[488.8,251.004],[505.648,234.486]]}],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[9.305,0],[0,-9.123],[-9.305,0],[0,9.123]],"o":[[-9.305,0],[0,9.123],[9.305,0],[0,-9.123]],"v":[[499.057,237.878],[482.209,254.396],[499.057,270.914],[515.904,254.396]]}],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[644.116,192.972],[625.615,211.472],[644.116,229.972],[662.615,211.472]]}],"t":138},{"s":[{"c":true,"i":[[10.217,0],[0,-9.077],[-10.217,0],[0,9.077]],"o":[[-10.217,0],[0,9.077],[10.217,0],[0,-9.077]],"v":[[569.741,181.736],[551.24,198.171],[569.741,214.607],[588.24,198.171]]}],"t":150}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2.941],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[2],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":138},{"s":[2],"t":150}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[80,89],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[88,88],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[85.353,85.353],"t":24},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[83,83],"t":32},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[78,78],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[72.945,80.289],"t":138},{"s":[80,89],"t":150}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[20],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[55],"t":15},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":41},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":138},{"s":[20],"t":150}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle12","ix":19,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[103.575,279.925],[111.075,287.425],[103.575,294.925],[96.075,287.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[98.075,294.425],[105.575,301.925],[98.075,309.425],[90.575,301.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[60.075,322.425],[67.575,329.925],[60.075,337.425],[52.575,329.925]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[41.575,327.925],[49.075,335.425],[41.575,342.925],[34.075,335.425]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-16.925,340.925],[-9.425,348.425],[-16.925,355.925],[-24.425,348.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[69.5,-555.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 2","ix":20,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[118.01,48.54],[99.51,67.04],[118.01,85.54],[136.51,67.04]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[133.511,56.263],[115.011,74.763],[133.511,93.263],[152.011,74.763]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[188.681,69.299],[170.181,87.799],[188.681,106.299],[207.181,87.799]]}],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[162.742,62.591],[144.242,81.091],[162.742,99.591],[181.242,81.091]]}],"t":109},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[139.501,53.549],[121.001,72.049],[139.501,90.549],[158.001,72.049]]}],"t":125},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[126.065,50.018],[107.565,68.518],[126.065,87.018],[144.565,68.518]]}],"t":143},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[118.01,48.54],[99.51,67.04],[118.01,85.54],[136.51,67.04]]}],"t":150},{"s":[{"c":true,"i":[[10.217,0],[0,-10.217],[-10.217,0],[0,10.217]],"o":[[-10.217,0],[0,10.217],[10.217,0],[0,-10.217]],"v":[[217.696,399.713],[199.196,418.213],[217.696,436.713],[236.196,418.213]]}],"t":156}],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0.774],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[4],"t":125},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0.774],"t":150},{"s":[0],"t":156}],"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"ix":3}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[90.6,91.819],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[73.523,74.385],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[90,90],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[96,96],"t":125},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[91.3,93.942],"t":143},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[90.6,91.819],"t":150},{"s":[90,90],"t":156}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[-241,-290.5],"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":[15.484],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[55],"t":125},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[15.484],"t":150},{"s":[0],"t":156}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle11","ix":21,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[151.575,304.925],[159.075,312.425],[151.575,319.925],[144.075,312.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[118.575,308.925],[126.075,316.425],[118.575,323.925],[111.075,316.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[18.575,299.425],[26.075,306.925],[18.575,314.425],[11.075,306.925]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-33.925,282.425],[-26.425,289.925],[-33.925,297.425],[-41.425,289.925]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[-100,-518.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":"Circle10","ix":22,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[121.075,264.425],[128.575,271.925],[121.075,279.425],[113.575,271.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[110.075,288.425],[117.575,295.925],[110.075,303.425],[102.575,295.925]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[8.575,336.425],[16.075,343.925],[8.575,351.425],[1.075,343.925]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-92.425,354.675],[-84.925,362.175],[-92.425,369.675],[-99.925,362.175]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[176,-416],"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":"Circle9","ix":23,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[115.575,290.925],[123.075,298.425],[115.575,305.925],[108.075,298.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[82.075,307.925],[89.575,315.425],[82.075,322.925],[74.575,315.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[30.075,323.925],[37.575,331.425],[30.075,338.925],[22.575,331.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-71.925,342.425],[-64.425,349.925],[-71.925,357.425],[-79.425,349.925]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-191.425,347.675],[-183.925,355.175],[-191.425,362.675],[-198.925,355.175]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[194,-268.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":"Circle8","ix":24,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 12","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[70.22,308.528],[77.72,316.028],[70.22,323.528],[62.72,316.028]]}],"t":63},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[16.575,310.425],[24.075,317.925],[16.575,325.425],[9.075,317.925]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-54.175,309.925],[-46.675,317.425],[-54.175,324.925],[-61.675,317.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":62},{"s":[100],"t":63}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle7","ix":25,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 13","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-85.675,204.925],[-78.175,212.425],[-85.675,219.925],[-93.175,212.425]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-139.175,197.925],[-131.675,205.425],[-139.175,212.925],[-146.675,205.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-194.425,190.925],[-186.925,198.425],[-194.425,205.925],[-201.925,198.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-269.925,168.925],[-262.425,176.425],[-269.925,183.925],[-277.425,176.425]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-273.027,166.741],[-265.527,174.241],[-273.027,181.741],[-280.527,174.241]]}],"t":105}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":104},{"s":[0],"t":105}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Circle6","ix":26,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 14","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-1.425,123.925],[6.075,131.425],[-1.425,138.925],[-8.925,131.425]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle5","ix":27,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[234.575,182.425],[242.075,189.925],[234.575,197.425],[227.075,189.925]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[190.575,189.925],[198.075,197.425],[190.575,204.925],[183.075,197.425]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[132.575,199.925],[140.075,207.425],[132.575,214.925],[125.075,207.425]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[28.575,207.925],[36.075,215.425],[28.575,222.925],[21.075,215.425]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-85.925,204.925],[-78.425,212.425],[-85.925,219.925],[-93.425,212.425]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle4","ix":28,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 11","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[81.042,225.368],[88.542,232.868],[81.042,240.368],[73.542,232.868]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[29.542,225.368],[37.042,232.868],[29.542,240.368],[22.042,232.868]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-34.458,229.868],[-26.958,237.368],[-34.458,244.868],[-41.958,237.368]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-133.958,219.868],[-126.458,227.368],[-133.958,234.868],[-141.458,227.368]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-223.708,204.118],[-216.208,211.618],[-223.708,219.118],[-231.208,211.618]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":"Circle 3","ix":29,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 10","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-95.5,-279.5],[-88,-272],[-95.5,-264.5],[-103,-272]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[96,-40],"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":"Circle 2","ix":30,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 9","ix":1,"d":1,"ks":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-202,-34],[-194.5,-26.5],[-202,-19],[-209.5,-26.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-266.5,-31],[-259,-23.5],[-266.5,-16],[-274,-23.5]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-335,-39],[-327.5,-31.5],[-335,-24],[-342.5,-31.5]]}],"t":54},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-438,-59.5],[-430.5,-52],[-438,-44.5],[-445.5,-52]]}],"t":101},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[-514,-91.625],[-506.5,-84.125],[-514,-76.625],[-521.5,-84.125]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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":[205,113],"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":"Circle 4","ix":31,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-7.5],[7.5,0],[0,7.5],[-7.5,0]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-7.5],[7.5,0],[0,7.5],[-7.5,0]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-7.5],[7.5,0],[0,7.5],[-7.5,0]]}],"t":54},{"s":[{"c":true,"i":[[-4.142,0],[0,-4.142],[4.142,0],[0,4.142]],"o":[[4.142,0],[0,4.142],[-4.142,0],[0,-4.142]],"v":[[0,-7.5],[7.5,0],[0,7.5],[-7.5,0]]}],"t":101}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"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,-63.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":1}]},{"nm":"","id":"comp_2","layers":[{"ty":4,"nm":"Layer 1","sr":1,"st":0,"op":151,"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":[400,400,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 7","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[180.5,74.5],[81.25,232.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[127.5,82.5],[31.75,233.375]]}],"t":23},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[45,87],[-42.75,237.375]]}],"t":58},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-13.5,86],[-91.75,232.375]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-105,84],[-164.75,222.875]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-180.75,75],[-224.5,213.625]]}],"t":150}],"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,0.6078,0.8588],"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 6","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81.25,232.75],[-55.75,318]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[31.75,233.25],[-83.25,313.5]]}],"t":23},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-42.75,237.25],[-125.25,311]]}],"t":58},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-91.75,232.25],[-149.25,305.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-162.777,223.007],[-172.75,297]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-221.25,213.5],[-184,285.75]]}],"t":150}],"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,0.6078,0.8588],"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 5","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[143,306],[80.5,231.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.5,310],[31,232]]}],"t":23},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[75,315],[-43.5,236]]}],"t":58},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[48,318],[-92.5,231]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-5,317.5],[-165.5,221.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.5,317.75],[-222,212.625]]}],"t":150}],"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,0.6078,0.8588],"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 4","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,86.75],[82.5,232.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-44.054,88.185],[43.761,233.141]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-121.75,82.75],[-24.471,236.336]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-189.25,70.75],[-90.5,232.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-259.25,49.75],[-163.5,222.75]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-312,25.25],[-224.75,209.75]]}],"t":150}],"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,0.6078,0.8588],"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":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[234.5,189],[82.125,231.375],[-85,213.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[203.5,196],[43,234],[-125.25,207]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[141,205],[-23.5,236.5],[-188,200]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[73.5,213.5],[-92,230.5],[-235.5,186.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-10,213.5],[-165,221],[-288,168.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-83.875,212.75],[-222.5,212.5],[-306.5,148.75]]}],"t":150}],"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,0.6078,0.8588],"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":1},{"ty":4,"nm":"Layer 2","sr":1,"st":0,"op":151,"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":[400,400,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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[144,305.5],[-55,318.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[125.5,309],[-76.5,315.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[90,314],[-114,311.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.5,317],[-149.5,305.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[13.5,320],[-164.5,297.5]]}],"t":105},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-50.5,317.5],[-183,286]]}],"t":150}],"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.5,211.5],[-55.75,317.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-123.5,207],[-77.25,315]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-186.5,201.5],[-114.75,311]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-237.5,187.5],[-150.25,304.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272.5,175.5],[-165.25,296.75]]}],"t":105},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272.5,175.5],[-183.75,285.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":104},{"s":[0],"t":105}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.25,317.75],[-226.5,210]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-76.75,315.25],[-247,206]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-113.531,313],[-277.969,188.625]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-149.031,306.5],[-282.469,187.125]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-164.031,298.75],[-282.469,187.125]]}],"t":105},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-182.531,287.25],[-282.469,187.125]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":50},{"s":[0],"t":51}],"ix":7}}]}],"ind":2},{"ty":4,"nm":"Layer 3","sr":1,"st":0,"op":151,"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":[400,400,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 1","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.5,339.5],[153,264.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.5,337],[172.5,272.5]]}],"t":32},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-2,337.5],[183.5,281]]}],"t":63}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":63},{"s":[0],"t":64}],"ix":7}}]}],"ind":3},{"ty":4,"nm":"Layer 4","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[184,282.5],[68,317.5]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[184.5,287.5],[45.5,317.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.5,297],[-6,318.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[143,305.75],[-52.25,318.125]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":64},{"s":[100],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[285,182.5],[123.5,310]]}],"t":20},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[258,201.5],[88.5,314.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[212,215],[46.5,318]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[147,224],[-6,319.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[83,231.75],[-54.75,317.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":26},{"s":[100],"t":27}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[142.5,304.5],[234,191]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[123.5,310],[202,197.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[88,315],[141,207]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[46,318.5],[74,214]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-6.5,320],[-9.5,214.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55.25,318.25],[-86.75,210.75]]}],"t":150}],"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,0.6078,0.8588],"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":4},{"ty":4,"nm":"Layer 5","sr":1,"st":0,"op":151,"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":[400,400,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 6","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":[[12,17.5]],"o":[[-12,-17.5]],"v":[[-174,295.5]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0,0.6078,0.8588],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"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,0.6078,0.8588],"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 5","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-183.5,286.5],[-222,212.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-184.917,282.042],[-247.5,206.375]]}],"t":18},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-184.188,279.375],[-248.438,205.875]]}],"t":21}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":21},{"s":[0],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-310,27],[-224,212]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-327,17],[-248,205.5]]}],"t":18},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-340.5,-9],[-278.5,189.5]]}],"t":50}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":50},{"s":[0],"t":51}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-180,72.5],[-224,212.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-217,66.5],[-247.5,207]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-273.5,48.5],[-279,188.5]]}],"t":50},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-316.5,28.5],[-293,169.5]]}],"t":79}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":79},{"s":[0],"t":80}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-307,148],[-224.5,211]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-310.25,137.25],[-250.5,204.75]]}],"t":18},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-309.75,136.5],[-250,204]]}],"t":21}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":21},{"s":[0],"t":22}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":6,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-221.5,212.5],[-87,213]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-245,207],[-124,206.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-276.5,188.5],[-187,200.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-292,170.5],[-237,186.5]]}],"t":79},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-290,155.5],[-271,176.5]]}],"t":104}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":104},{"s":[0],"t":105}],"ix":7}}]}],"ind":5},{"ty":4,"nm":"Layer 6","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[4,85],[-86.5,213]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-42.5,90],[-123.5,207.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-120.5,84],[-186.5,201]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-189.5,70],[-238.5,187.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-237.5,60.5],[-273,176.5]]}],"t":104},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,54],[-282.5,173]]}],"t":113},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-309.125,22.812],[-306.75,145]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-85,212.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-123,206.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-186.5,200.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-238.5,187]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-273,176]]}],"t":104},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,131],[-282.5,172.5]]}],"t":113},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.875,132.25],[-307.125,146.375]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-179.5,72.5],[-86.5,212]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-218,68],[-123,207.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272,47],[-187,200.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-318,28],[-238,186.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-331,7],[-272.5,175.25]]}],"t":104},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-336.5,-0.5],[-282,171.75]]}],"t":113},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-336.5,-0.5],[-307.5,149.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":111},{"s":[0],"t":112}],"ix":7}}]}],"ind":6},{"ty":4,"nm":"Layer 7","sr":1,"st":0,"op":151,"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":[400,400,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 4","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[234,189],[-1,132]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[206,197],[-1,132]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[141.5,208],[-1,132]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[73.5,214.5],[-1,132]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-10.5,215.5],[-1,132]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-83,211],[-0.938,132.375]]}],"t":150}],"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,0.6078,0.8588],"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 3","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-103.5,68.5],[-0.5,131.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-57.5,66],[-0.5,131.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[35.5,66],[-0.5,131.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[120.5,72.5],[-0.5,131.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[208,85.5],[-0.5,131.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[266.75,99.25],[-0.375,131.75]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1,132],[-306,146.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1,132],[-312,135.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1,132],[-296,117.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1,132],[-258.5,98.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1,132],[-189,80]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1.5,130.938],[-103.5,68.312]]}],"t":150}],"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,0.6078,0.8588],"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":7},{"ty":4,"nm":"Layer 8","sr":1,"st":0,"op":151,"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":[400,400,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 5","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[182.5,279],[293,175.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[182.5,279],[274,192]]}],"t":31},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[182.5,279],[248.5,206]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[184.5,287.5],[212,215.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[167,297],[147.5,225]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[143,306.25],[81.25,231.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":56},{"s":[100],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":2,"cix":2,"np":2,"it":[{"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":56},{"s":[100],"t":57}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[337,-6],[294,175]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[337,-6],[275,191.5]]}],"t":31},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[327,17],[249.5,205.5]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[301,33],[213,215]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[246,55.5],[148.5,224.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[181.5,72.75],[82.25,231.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":31},{"s":[100],"t":32}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[310,30.5],[293,174]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[266.5,52],[274,190.5]]}],"t":31},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[217,63.5],[248.5,204.5]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[166,73.5],[212,214]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.5,83],[147.5,223.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[2.5,84.5],[81.25,230.25]]}],"t":150}],"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,0.6078,0.8588],"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":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293,175],[234.5,189.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[274,191.5],[177.5,201]]}],"t":31},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[248.5,205.5],[124,208]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[212,215],[73.5,213.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[147.5,224.5],[-10.5,214]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81.25,231.25],[-84.25,213.5]]}],"t":150}],"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,0.6078,0.8588],"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":"Layer 9","sr":1,"st":0,"op":151,"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":[400,400,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 5","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-223,-88.5],[-309,30]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-98.5],[-327.5,17]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-279.5,-122],[-341,-8]]}],"t":50},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-289.5,-133.5],[-334.5,-20.5]]}],"t":65}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":65},{"s":[0],"t":66}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281,-165],[-309.5,28.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281,-165],[-320.5,21.25]]}],"t":10},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.5,-180],[-327.5,17.75]]}],"t":18},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.5,-182.5],[-330,13.25]]}],"t":22}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":22},{"s":[0],"t":23}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-181,73],[-309,29]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-200,70.5],[-320,22]]}],"t":10},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-216,65.5],[-327,18.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,57],[-335,2]]}],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-272.5,47.5],[-341,-9]]}],"t":50},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-317,31.5],[-329.5,-34.5]]}],"t":79}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":79},{"s":[0],"t":80}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-309.5,28.5],[-306.5,147]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-320.5,21.5],[-306.5,147]]}],"t":10},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-327.5,18],[-306.5,147]]}],"t":18},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-330,13.5],[-306.5,147]]}],"t":22}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":10},{"s":[0],"t":11}],"ix":7}}]}],"ind":9},{"ty":4,"nm":"Layer 10","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-181,73],[3.5,85.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-217,65.25],[-43.5,89.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-273,47.25],[-119.5,84]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-296,39.25],[-154.5,78]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-316.5,27.75],[-185,72]]}],"t":79},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-326.5,18.75],[-214,64.5]]}],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-65],[-341.5,-4.25],[-259,51]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3.5,-62.875],[-338.188,-30.688],[-307.5,31.125]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-77.5,-82.5],[-181,74]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-114.5,-84],[-217,66.25]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-173,-96.5],[-273,48.25]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-195.5,-106],[-296,40.25]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-215,-114],[-316.5,28.75]]}],"t":79},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-237,-123],[-326.5,19.75]]}],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-259,-138.5],[-341.5,-3.25]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-280.75,-164.5],[-338,-30.75]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-222.5,-87.5],[-180.5,73.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-249.5,-96.5],[-216.5,65.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-279.5,-120],[-272.5,47.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-289.5,-131.5],[-295.5,39.75]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-297,-144.5],[-316,28.25]]}],"t":79},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-297,-144.5],[-326,19.25]]}],"t":93},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-297,-144.5],[-341,-3.75]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-297,-144.5],[-337.5,-31.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":93},{"s":[0],"t":94}],"ix":7}}]}],"ind":10},{"ty":4,"nm":"Layer 11","sr":1,"st":0,"op":151,"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":[400,400,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 2","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-78.5,-81],[2.5,86.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-114.5,-84],[-43,89.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-170,-95],[-119,84]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-218.5,-115],[-190.5,71.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-259.5,-139],[-258.5,50.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.75,-160.875],[-309.5,29.625]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[180.5,73],[2.5,86.5],[83.5,-55]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[140.5,81],[-43,89.5],[46,-49]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[70,88],[-119,84],[-24,-49.5]]}],"t":49},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-13,88],[-190.5,71.5],[-93.5,-56.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-105,82],[-258.5,50.5],[-167,-70.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-179.125,73.75],[-308.25,29.25],[-223.5,-88.5]]}],"t":150}],"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,0.6078,0.8588],"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":11},{"ty":4,"nm":"Layer 12","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[234,189.5],[180,75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[203,197],[137.5,80.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[140.5,206.5],[63.5,88]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[74,214],[-15,88]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-10,213.5],[-106,82]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-84.75,214.5],[-176.5,77.5]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[215,-115.5],[180,75],[310.5,31]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[188.5,-102.5],[137.5,80.5],[285.5,42]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[131.5,-88.5],[63.5,88],[232.5,61.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[67.5,-82],[-15,88],[165.5,74]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-15.5,-70],[-106,82],[80,83.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-79,-80],[-180,73],[1.75,85.25]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3,-63],[182,75],[85,-54]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3,-63],[139.5,80.5],[45.5,-50]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3,-63],[65.5,88],[-25.5,-49]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3,-63],[-13,88],[-94,-57.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[3,-63],[-104,82],[-168,-71.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1.5,-63.5],[-180.5,72.625],[-223.25,-90.5]]}],"t":150}],"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,0.6078,0.8588],"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":12},{"ty":4,"nm":"Layer 13","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[335,-32.5],[310.5,28.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[341,-17.5],[285.5,43]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[333.5,10],[232,62.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[301.5,35],[166.5,75.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[246,55.5],[79.5,85]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[185,72.5],[1.75,86.5]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[298,-141.5],[308,28.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[290,-126],[285.5,43]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[262.5,-103],[232,62.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[216,-83],[166.5,75.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[151,-65.5],[79.5,85]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[83.25,-53.75],[1.75,86.5]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[235.5,189.5],[308.5,29],[214.5,-114.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[203,197],[286,43.5],[188,-103.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[140.5,207],[232.5,63],[132.5,-89]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[72,214],[167,76],[69,-81]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-11,214],[80,85.5],[-11,-78]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-83.5,210],[2.25,87],[-78.5,-81]]}],"t":150}],"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,0.6078,0.8588],"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":13},{"ty":4,"nm":"Layer 15","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[264.85,100.85],[263.25,100.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[288.85,111.85],[287.25,111.25]]}],"t":17},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[312.35,133.35],[310.75,132.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[312.35,137.35],[310.75,136.75]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[308.85,145.35],[307.25,144.75]]}],"t":66},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[308.85,145.35],[318.75,23.25]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[307.6,152.35],[301,32.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[283.6,170.6],[254.5,52.75]]}],"t":112},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[278,175],[240,58]]}],"t":120},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.5,130],[235,189.5],[183,72]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[260.35,108.85]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[284.35,119.85]]}],"t":17},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[307.85,141.35]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[307.85,145.35]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[306.6,152.35]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.75,-1.5],[282.6,170.6]]}],"t":112},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[334.5,4],[277,175]]}],"t":120},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[308.5,30],[235.125,189.375]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":111},{"s":[100],"t":112}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[264.194,99.972],[263.694,99.472],[259.75,102],[260.544,103.574],[262.694,99.972]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[288.194,110.972],[287.694,110.472],[283.75,113],[284.544,114.574],[286.694,110.972]]}],"t":17},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[311.694,132.472],[311.194,131.972],[307.25,134.5],[308.044,136.074],[310.194,132.472]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[311.694,136.472],[311.194,135.972],[249.25,204.5],[308.044,140.074],[310.194,136.472]]}],"t":56},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[311.694,136.472],[311.194,135.972],[249.25,204.5],[308.044,140.074],[310.194,136.472]]}],"t":57},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[308.194,144.472],[307.694,143.972],[233.25,209],[304.544,148.074],[306.694,144.472]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[306.944,151.472],[306.444,150.972],[211.5,214],[303.294,155.074],[305.444,151.472]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[282.944,169.722],[282.444,169.222],[158,224],[269.294,174.574],[281.444,169.722]]}],"t":112},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[277.5,174],[277,173.5],[143,225],[264.327,178.476],[276,174]]}],"t":119},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[167.5,298],[277,173.5],[143,225],[264.327,178.476],[292.5,156]]}],"t":120},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[163.667,299],[269.833,175.917],[133.25,225.917],[269.961,176.085],[291.104,159.844]]}],"t":125},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[155.233,301.2],[254.067,181.233],[111.8,227.933],[260.693,177.548],[293.933,166.3]]}],"t":136},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[143.375,303.625],[236.625,187.125],[84.5,230.5],[273.394,179.656],[292,174.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":56},{"s":[100],"t":57}],"ix":7}}]}],"ind":14},{"ty":4,"nm":"Layer 16","sr":1,"st":0,"op":151,"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":[400,400,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 5","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293.75,169.5],[338.75,-25.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293.75,169.5],[336.75,6.25]]}],"t":118},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293.75,169.5],[316.75,22.75]]}],"t":142},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293.188,172.25],[310.125,30.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":141},{"s":[100],"t":142}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 4","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[318.375,23.625],[326.625,-39]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[301.25,34.25],[338.75,-27.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[274.182,47.52],[337.615,-9.088]]}],"t":102},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[244.75,56.75],[336.75,4.75]]}],"t":118},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[197.75,69.25],[316.75,21.25]]}],"t":142},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[183.25,73.875],[307.125,32]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":66},{"s":[100],"t":67}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 3","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[281.25,-161.25],[337.75,-29.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[253.75,-133.75],[335.75,2.75]]}],"t":118},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[227.25,-118.25],[315.75,19.25]]}],"t":142},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[214.75,-114],[307.75,28]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[298.75,-173.75],[338.5,-29.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[298.75,-173.75],[336.5,2.75]]}],"t":118},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[295.25,-150.75],[316.5,19.25]]}],"t":142},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[297.75,-142.5],[308,30.25]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":117},{"s":[100],"t":118}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":5,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[326.125,-39],[326.5,-39]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[338.25,-27.25],[326.5,-39]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336.25,4.75],[326.5,-39]]}],"t":118},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[316.25,21.25],[326.5,-39]]}],"t":142},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[310.875,27.5],[335.25,-32.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":141},{"s":[100],"t":142}],"ix":7}}]}],"ind":15},{"ty":4,"nm":"Layer 18","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293,-132],[334,-33.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[293,-132],[338.5,-24.5]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[281,-117.5],[337,-8]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[258.5,-99.5],[330,11]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[237.5,-93],[318,22]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[216.5,-84],[301.5,33.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[187.149,-73.5],[277.27,45.203]]}],"t":99},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150,-65.5],[244.5,55.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[84.5,-55],[179.25,70.75]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":11},{"s":[100],"t":12}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[280,-185.5],[334,-32]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[280,-185.5],[338.5,-23]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[280,-185.5],[337,-6.5]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[280,-185.5],[330,12.5]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[281,-173],[318,23.5]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[281,-162],[301.5,35]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[268.108,-147.405],[277.27,46.703]]}],"t":99},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[254.5,-132],[244.5,57]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[214.25,-112.5],[180.25,72.125]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":52},{"s":[100],"t":53}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[333.5,-31.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[338,-22.5]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[336.5,-6]]}],"t":30},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[329.5,13]]}],"t":53},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[317.5,24]]}],"t":67},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[301,35.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[276.77,47.203]]}],"t":99},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[244,57.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-63],[178.75,72.75]]}],"t":150}],"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,0.6078,0.8588],"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":16},{"ty":4,"nm":"Layer 19","sr":1,"st":0,"op":151,"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":[400,400,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 4","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-222,-88.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-249.5,-98]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-279.5,-121.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-288,-133.5]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-296,-153]]}],"t":89},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-293.5,-162.5]]}],"t":101},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220],[-288.75,-179.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.75,-220.75],[-256.5,-205.75]]}],"t":150}],"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,0.6078,0.8588],"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 3","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-134,-229.5],[-223.5,-89]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147.5,-236],[-251,-98.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-165.5,-250.5],[-281,-122]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-170.5,-261],[-289.5,-134]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-172,-274],[-297.5,-153.5]]}],"t":89},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-170,-280.5],[-295,-163]]}],"t":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":2,"ix":5},"c":{"a":0,"k":[0,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":101},{"s":[0],"t":102}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 2","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-79.5,-80.5],[-225.5,-87]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-114.5,-85],[-251,-97.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-172.5,-96],[-281,-121]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-199.5,-104.5],[-289.5,-133]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-230.5,-120],[-297.5,-152.5]]}],"t":89},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-245.5,-127],[-295,-162]]}],"t":101},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-259,-139.5],[-290.25,-179]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-280.75,-164],[-260.25,-206]]}],"t":150}],"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,0.6078,0.8588],"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":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281,-164],[-224,-87.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-281.5,-179.5],[-250.5,-98.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-269.5,-206],[-280.5,-122]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,-221.5],[-289,-134]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,-221.5],[-297,-153.5]]}],"t":89},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,-221.5],[-294.5,-163]]}],"t":101},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,-221.5],[-289.75,-180]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-252,-221.5],[-257.75,-205.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":65},{"s":[0],"t":66}],"ix":7}}]}],"ind":17},{"ty":4,"nm":"Layer 20","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[51.5,-207],[-79,-80.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[28,-204.5],[-115.5,-84.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-13,-203.5],[-173.5,-96]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-56.5,-207],[-219.5,-114.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-99,-217.5],[-260.5,-139]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-134,-228.25],[-282.25,-164.25]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-135,-230.5],[-78,-80]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-147,-237.5],[-114.5,-84]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-165,-250.5],[-172.5,-95.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-174.5,-268],[-218.5,-114]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-166,-290.5],[-259.5,-138.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-144.5,-308.5],[-281.5,-161]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[83,-56],[-77.5,-81]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[45.5,-50],[-114,-85]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-25,-49.5],[-172,-96.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-92.5,-56.5],[-218,-115]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-167,-71],[-259,-139.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-225,-88.5],[-280.219,-162.625]]}],"t":150}],"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,0.6078,0.8588],"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":18},{"ty":4,"nm":"Layer 21","sr":1,"st":0,"op":151,"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":[400,400,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 2","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.5,-112],[3.25,-62.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[55,-111.5],[3.5,-63.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[153.5,-102],[3.5,-63.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[233.5,-82.5],[3.5,-63.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[299,-59],[3.5,-63.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[335.25,-31.25],[4.5,-62.875]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-336,-31],[4,-62.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-321,-47.5],[3.25,-62.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-273,-72],[3.25,-62.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-204,-92],[3.25,-62.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-103,-106.5],[3.25,-62.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0.75,-110.25],[3.25,-62.5]]}],"t":150}],"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,0.6078,0.8588],"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":19},{"ty":4,"nm":"Layer 22","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[215,-114.5],[83.875,-53.875]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[188.75,-102.75],[45.125,-48.375]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[132.75,-88.5],[-25.875,-49.375]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[67.75,-81],[-93.625,-56.125]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-10.75,-78.25],[-167.375,-70.375]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-77.75,-80.5],[-223.375,-87.25]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[52,-206],[83.875,-53.812]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[28,-203],[45.125,-48.312]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-13.75,-203.25],[-25.875,-49.312]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-54.5,-206.75],[-93.625,-56.062]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-99.75,-217],[-167.375,-70.312]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-134.5,-228.625],[-221.25,-93.188]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-219],[83.844,-53.906]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-219],[45.094,-48.406]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-219],[-25.906,-49.406]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-219],[-93.656,-56.156]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-219],[-167.406,-70.406]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.25,-219.75],[-221.656,-89.406]]}],"t":150}],"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,0.6078,0.8588],"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":20},{"ty":4,"nm":"Layer 23","sr":1,"st":0,"op":151,"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":[400,400,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 2","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[297,-141.5],[215.5,-113.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[289.5,-126],[189.5,-102]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[262.5,-102],[134,-88.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[216.5,-82.5],[68,-80]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150,-65.5],[-10,-77]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[85.5,-55.5],[-77.875,-81.125]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[51.5,-205.5],[214,-113.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29,-202.5],[188,-102]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-13.5,-202.5],[132.5,-88.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-55,-205],[66.5,-80]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-99.5,-217.5],[-11.5,-77]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-133,-227.5],[-78.5,-80.625]]}],"t":150}],"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,0.6078,0.8588],"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":21},{"ty":4,"nm":"Layer 24","sr":1,"st":0,"op":151,"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":[400,400,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 4","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.5,-269],[297.438,-143.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[170,-261.25],[292.438,-132.5]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.5,-253.75],[286.688,-120]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[154,-241.75],[263.688,-100.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[130.5,-225.75],[217.688,-82.25]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[90.5,-215.75],[151.688,-64.25]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[52.5,-205.75],[83.438,-56.5]]}],"t":150}],"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,0.6078,0.8588],"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 3","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[244.5,-229],[296.5,-145.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[255.75,-221.5],[291.5,-134.25]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[265.75,-209],[285.75,-121.75]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[279.75,-188.5],[262.75,-102.25]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[281.25,-161.5],[216.75,-84]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[254.25,-132],[150.75,-66]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[218,-116.25],[87,-55.5]]}],"t":150}],"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,0.6078,0.8588],"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":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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[336,-31.5],[298,-143]]}],"t":0},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[339.25,-22.25],[293,-131.75]]}],"t":13}],"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,0.6078,0.8588],"ix":3}},{"ty":"st","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 2","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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":12},{"s":[0],"t":13}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[296.562,-143.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[291.562,-132.25]]}],"t":12},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[285.812,-119.75]]}],"t":25},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[262.812,-100.25]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[216.812,-82]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[150.812,-64]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[3.5,-220.5],[83.562,-53.75]]}],"t":150}],"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,0.6078,0.8588],"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":22},{"ty":4,"nm":"Layer 25","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.25,-269.5],[246,-227.75]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[166.25,-251],[268.5,-206.75]]}],"t":29},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[143.25,-234],[280.5,-173.75]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[130,-224.5],[280.25,-160.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[91,-215],[253.75,-131.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[52.688,-205],[214.25,-113]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[134.5,-311.25],[280.5,-175.25]]}],"t":65},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150.5,-304.75],[280.25,-162]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[168.5,-285.25],[253.75,-133]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[172.625,-270],[214.25,-114.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":64},{"s":[100],"t":65}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[264.25,-200.5],[281.25,-161]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[298.75,-173],[254.75,-132]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[296,-141.5],[215.25,-113.5]]}],"t":150}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":80},{"s":[100],"t":81}],"ix":7}}]}],"ind":23},{"ty":4,"nm":"Layer 26","sr":1,"st":0,"op":151,"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":[400,400,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 4","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[52.5,-204.5],[-134.5,-228]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[28.5,-202],[-147,-236.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-13,-202],[-165,-250]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-52.5,-206.5],[-175,-268.5]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-99.75,-216.5],[-166.25,-289.5]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-134.375,-226.875],[-142.625,-308.875]]}],"t":150}],"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,0.6078,0.8588],"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 3","ix":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-134.5,-228.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-147,-237]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-165,-250.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-175,-269]]}],"t":80},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-166.25,-290]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-312],[-142.625,-309.375]]}],"t":150}],"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,0.6078,0.8588],"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":3,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-142.5,-311.5],[-134.5,-229]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-130.5,-314],[-147,-237.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89,-327.75],[-165,-251]]}],"t":50},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-53.5,-335.75],[-175.125,-268.125]]}],"t":80}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":80},{"s":[0],"t":81}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Shape 1","ix":4,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-282,-164.5],[-134.5,-228]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-283.5,-181],[-147,-236.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-269.5,-206.5],[-165,-250]]}],"t":50},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-234,-233],[-175,-268.5]]}],"t":80}],"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,0.6078,0.8588],"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":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":80},{"s":[0],"t":81}],"ix":7}}]}],"ind":24},{"ty":4,"nm":"Layer 27","sr":1,"st":0,"op":151,"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":[400,400,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 1","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-255.75,-205.75],[3.5,-220.5],[102.5,-252.5]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-231.75,-219.75],[3.5,-219.5],[146,-244]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-163.75,-238.5],[3.5,-219.5],[215,-228]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-89.75,-253],[3.5,-219.5],[263.5,-200]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[14.25,-255],[3.5,-219.5],[299,-172]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[101,-252],[3.5,-220.5],[296.5,-143.5]]}],"t":150}],"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,0.6078,0.8588],"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":25},{"ty":4,"nm":"Layer 28","sr":1,"st":0,"op":151,"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":[400,400,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 1","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.5,-313.5],[51.665,-205.474],[173.5,-267]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.5,-313.5],[28.415,-200.974],[170,-257.75]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.5,-313.5],[-13.335,-202.224],[154,-240.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.5,-313.5],[-54.96,-207.286],[130.25,-224.75]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.5,-313.5],[-99.96,-217.036],[91,-214.75]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1.5,-313],[-134.46,-227.786],[52.25,-205]]}],"t":150}],"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,0.6078,0.8588],"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":26},{"ty":4,"nm":"Layer 29","sr":1,"st":0,"op":151,"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":[400,400,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 1","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.5,-268],[214.25,-113.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[169.25,-257.5],[188.25,-101.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[153.75,-241.5],[131.25,-88.5]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[130.25,-225],[66.5,-80.5]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[91,-215],[-10.5,-78.25]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[51.25,-206.75],[-78.75,-80.25]]}],"t":150}],"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,0.6078,0.8588],"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":27},{"ty":4,"nm":"Layer 30","sr":1,"st":0,"op":151,"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":[400,400,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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[57.25,-337.25],[0,-312.312]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[81,-332],[0,-312.312]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119.5,-319],[0,-312.312]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150,-304.5],[0,-312.312]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[170.25,-284],[0,-312.312]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.5,-268.625],[2.875,-311.688]]}],"t":150}],"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,0.6078,0.8588],"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":2,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.5,-269],[0.375,-312.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[169.75,-256.75],[0.375,-312.125]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[153.75,-241],[0.375,-312.125]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[130.25,-225.5],[0.375,-312.125]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[91.25,-215.25],[0.375,-312.125]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[51.75,-205.875],[1.375,-311.5]]}],"t":150}],"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,0.6078,0.8588],"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":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-142.5,-309],[-0.125,-312.125]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-131.5,-314.25],[-0.125,-312.125]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-89.25,-328.25],[-0.125,-312.125]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-50.75,-336],[-0.125,-312.125]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[5.75,-338.75],[-0.125,-312.125]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[53.875,-335.875],[3,-313.375]]}],"t":150}],"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,0.6078,0.8588],"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":28},{"ty":4,"nm":"Layer 31","sr":1,"st":0,"op":151,"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":[400,400,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 1","ix":1,"cix":2,"np":2,"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.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[58,-336.5],[173.5,-269.25]]}],"t":0},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[80.25,-332.75],[170,-256.5]]}],"t":18},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[119,-319.25],[154.25,-240.75]]}],"t":50},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[150,-304.75],[130.5,-225.375]]}],"t":81},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[170,-284.25],[91.25,-215.125]]}],"t":118},{"s":[{"c":false,"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[173.25,-267],[53.5,-206.375]]}],"t":150}],"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,0.6078,0.8588],"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":29}]}]} \ No newline at end of file diff --git a/vite-app/src/main.js b/vite-app/src/main.js new file mode 100644 index 00000000..92ce9cc6 --- /dev/null +++ b/vite-app/src/main.js @@ -0,0 +1,10 @@ +import './style.css' + + +document.querySelector('#app').innerHTML = + ` +
+

ALL CODE MUST BE WRITTEN HERE

+
+` + diff --git a/vite-app/src/style.css b/vite-app/src/style.css new file mode 100644 index 00000000..bd6213e1 --- /dev/null +++ b/vite-app/src/style.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/vite-app/tailwind.config.js b/vite-app/tailwind.config.js new file mode 100644 index 00000000..2d36fc0a --- /dev/null +++ b/vite-app/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./src/index.html", + "./src/**/*.{js,ts,jsx,tsx}"], + theme: { + extend: {}, + }, + plugins: [], +} + diff --git a/website/copy.html b/website/copy.html new file mode 100644 index 00000000..557e7ced --- /dev/null +++ b/website/copy.html @@ -0,0 +1,470 @@ + + + + + + + + ResourceHub + + + + + + + + + + + +
+ +
+

+ + ResourceHub + +

+

+ An Open-Source project that serves as a collection of valuable resources for Web Development, DBMS, Web3 and + many more carefully curated by the amazing contributors in the community. +

+ + + +
+ +
+
+ +
+
+
+
+
+
+ :: before +

Programming Languages

+ :: after +
+
+
+
+
+ + + + +
+

+ Testimonials +

+
+ +
+
+
+
+ User Image +
+
John White
+ Web3 Developer, Blockchain Innovations +
+
+
+

"As a Web3 developer, finding reliable resources can be challenging. + ResourceHub provides a centralized platform with high-quality, curated content that has + significantly boosted my productivity and knowledge. It's an indispensable tool for everyone."

+
+
+
+ +
+
+
+ User Image +
+
Emily Brown
+ Devops Engineer, Cloudworks +
+
+
+

"ResourceHub is a game-changer for anyone in the DevOps field. + The open-source resources are comprehensive and up-to-date, making it my go-to site for learning and development. + Whether you're a beginner or an experienced professional, ResourceHub has something valuable for everyone."

+
+
+
+ +
+
+
+ User Image +
+
Dan Moore
+ Software Engineer, ML Works +
+
+
+

"ResourceHub offers an impressive collection of resources across various + programming languages. The depth and breadth of the material available here have helped me + master new languages quickly and efficiently. It's an excellent resource for continuous learning + and development."

+
+
+
+ + +
+
+
+ User Image +
+
Michael Lynn
+ UI/UX Specialist, Creative + Minds +
+
+
+

"ResourceHub has transformed the way I approach UI/UX design. The wealth of + open-source resources available is phenomenal, covering everything from the basics to advanced + design principles. It's an invaluable resource for designers looking to enhance their skills and + stay updated with industry trends."

+
+
+
+ +
+
+
+ User Image +
+
David Layne
+ App Developer, Tech + Innovators +
+
+
+

"ResourceHub is a treasure trove for app developers. The diverse range of + open-source resources available has been instrumental in helping me develop and refine my + skills. From mobile app frameworks to best coding practices, ResourceHub has everything I need + to excel in app development"

+
+
+
+ + +
+
+
+ User Image +
+
Sarah Kruss
+ Machine Learning Engineer, Data Dynamics +
+
+
+

"The machine learning resources on ResourceHub are top-notch. I've found everything I need to stay current in this fast-evolving field, from foundational concepts to cutting-edge research. ResourceHub is an essential resource for anyone serious about machine learning and data science"

+
+
+
+ + +
+
+ + + + + +
+

+ Accelerate your + + coding workflow + +

+
+
+
+
+
+ +
+
+ + + + +
+
+
Click on Start Learning
+

Sends you directly to the search bar

+
+
+ +
+
+ + + + +
+
+
Choose a Field
+

Choose the tech field that best fits you.

+
+
+
+
+ + + + +
+
+
Start learning directly in browser
+

No need to download large videos/books.

+
+
+
+
+ + + + +
+
+
Real-Time Information
+

Every information presented is up-to-date

+
+
+
+
+ + + + +
+
+
Best curated resources for you
+

We only present the best of the best resources from around + the internet.

+
+
+
+
+ + + + +
+
+
Become a Contributor
+

Click on the Github Repository Button to contribute to our + endeavour.

+
+
+ +
+
+
+
+ +

Faces of Dedication: Our Contributing Heroes

+
+
+ + + + + + +
+ + + + + + + + + diff --git a/website/home.html b/website/home.html new file mode 100644 index 00000000..b0d83762 --- /dev/null +++ b/website/home.html @@ -0,0 +1,120 @@ + + + + + + ResourceHub + + + + + + +
+
+ Home + About + Resources + Organization + FAQ +
+
+ +
+

ResourceHub

+

ResourceHub is an open-source project that serves as a one-stop repository of valuable resources curated by the amazing contributors in the community

+
+ Explore Resources + How to Contribute + View on GitHub +
+
+ Web Development + App Development + DevOps + Database + Programming Languages + UI/UX Design + Machine Learning + Web3 + Data Science + Open Source Development +
+
+ + + + diff --git a/website/homestyle.css b/website/homestyle.css new file mode 100644 index 00000000..a90f0749 --- /dev/null +++ b/website/homestyle.css @@ -0,0 +1,4 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + diff --git a/website/index.html b/website/index.html index e5b26eff..d609f1ac 100644 --- a/website/index.html +++ b/website/index.html @@ -41,8 +41,9 @@