mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-29 22:23:01 +00:00
* Enhance autocomplete functionality and settings panel
- Added a new AutocompletePanel component for managing inline autocomplete settings, including options for enabling/disabling, debounce timing, and style configurations.
- Integrated autocomplete status tracking and logging within the panel to provide real-time feedback on the autocomplete engine's state.
- Updated settings navigation to include the new autocomplete settings route, improving user accessibility to autocomplete features.
- Introduced new Tauri commands for managing autocomplete operations, including start, stop, and current status retrieval, enhancing interaction with the autocomplete engine.
- Refactored existing code to streamline autocomplete-related functionalities and improve overall maintainability.
* Update TypeScript configuration and add new assets
- Modified `tsconfig.json` to adjust path aliases and include directories for improved module resolution.
- Added new SVG and image assets to the public directory, enhancing the application's visual resources.
- Introduced multiple Lottie animation JSON files for dynamic UI elements, expanding the application's animation capabilities.
* Update project structure and paths for Tauri integration
- Adjusted paths in the pull request template and various workflow files to reflect the new project structure, moving Tauri-related files under the `app` directory.
- Updated commands in the build and release workflows to ensure compatibility with the new file locations.
- Enhanced the test workflow to create the necessary `.env` file in the correct directory for end-to-end testing.
- Added new markdown files for agent prompts and configuration, establishing a foundation for OpenHuman's AI capabilities.
* Refactor project paths and update configurations for Tauri integration
- Adjusted script paths in package.json to reflect the new project structure, ensuring compatibility with the updated directory layout.
- Modified tsconfig.json to correct path aliases and include directories for improved module resolution.
- Introduced a new utility for resolving development paths, enhancing the ability to locate the `rust-core/ai` directory across different project structures.
- Updated Cargo.toml and tauri.conf.json to align with the new directory structure, ensuring proper resource and dependency management.
- Added a new dev_paths module to streamline path resolution logic, improving maintainability and clarity in the codebase.
* Refactor project structure and update configurations for Tauri integration
- Adjusted paths in .gitignore, Cargo.toml, and various scripts to reflect the new directory layout, moving Tauri-related files under the `app` directory.
- Introduced a new package.json file to manage workspace scripts and dependencies effectively.
- Updated end-to-end build and run scripts to ensure compatibility with the new project structure.
- Enhanced documentation in CONTRIBUTING.md to guide contributors on the updated project organization and Tauri command usage.
* Refactor Tauri command invocations to use dedicated utility functions
- Replaced direct `invoke` calls with utility functions from `tauriCommands` for improved readability and maintainability across multiple components.
- Updated `SkillsGrid`, `Skills`, `SkillProvider`, and `SkillManager` to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced a new `coreRpcClient` for managing core RPC relay requests, streamlining error handling and request processing.
- Added a new `core_rpc_relay` command in the Tauri backend to facilitate communication with the core service, ensuring better service management and error reporting.
* Refactor Tauri command invocations in intelligence stats and memory manager
- Replaced direct `invoke` calls with utility functions from `tauriCommands` in `useIntelligenceStats` and `MemoryManager` for improved readability and maintainability.
- Updated the `aiListMemoryFiles`, `aiReadMemoryFile`, and `aiWriteMemoryFile` functions to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced new command handling in the Rust backend for `ai.list_memory_files`, `ai.read_memory_file`, and `ai.write_memory_file`, streamlining communication with the core service.
* Refactor SkillsGrid and remove SelfEvolveModal component
- Removed the SelfEvolveModal component to streamline the SkillsGrid functionality.
- Updated the SkillsGrid to utilize the runtimeDiscoverSkills function for loading skills, replacing the previous invoke method.
- Simplified the skill entry normalization process by integrating it directly into the skills loading logic.
- Enhanced error handling during skill loading to improve robustness and user feedback.
* Refactor Tauri command invocations to use coreRpcClient
- Replaced direct `invoke` calls with `callCoreRpc` in various components, including `useIntelligenceStats`, `MemoryManager`, `SessionManager`, and `transcript` functions, enhancing code readability and maintainability.
- Updated the Rust backend to handle new command structures for memory and session management, streamlining communication with the core service.
- Improved consistency in handling Tauri commands across the application.
* Refactor Tauri command invocations to utilize coreRpcClient
- Replaced direct `invoke` calls with `callCoreRpc` in `tauriCommands.ts` and `tauriSocket.ts`, enhancing code readability and maintainability.
- Updated the Rust backend to support new command structures for authentication and session management, streamlining communication with the core service.
- Removed legacy socket reporting methods in `tauriSocket.ts`, reflecting a shift towards event-driven socket state management.
- Improved consistency in handling Tauri commands across the application, aligning with recent refactoring efforts.
* Remove pre-commit hook and update TODO list with completed tasks and new objectives. This includes separating the binary from the Tauri codebase, integrating accessibility service installation, and removing Android/iOS support from the codebase.
* Add core server functionality with dispatch and RPC handling
- Introduced new modules for core server operations, including dispatching RPC requests and handling various AI and memory-related commands.
- Implemented a robust structure for managing authentication, configuration, and session states through the `openhuman` namespace.
- Added helper functions for loading configurations, managing memory files, and processing authentication profiles.
- Established a new routing system using Axum for handling HTTP requests, including health checks and RPC endpoints.
- Enhanced error handling and logging throughout the new functionalities to improve maintainability and user feedback.
* Implement core server CLI and modular structure
- Introduced a new CLI module for the core server, enabling various commands for server management, health checks, and configuration settings.
- Established a modular structure for core server functionalities, including dispatching RPC requests and managing settings for models, memory, and runtime.
- Added comprehensive tests to validate the functionality of accessibility and autocomplete commands, ensuring robust error handling and schema compliance.
- Enhanced the overall organization of the core server codebase, improving maintainability and readability.
* Implement AI RPC dispatch functionality
- Introduced a new `ai_rpc` module for handling various AI-related commands, including memory file operations and session management.
- Enhanced the `try_dispatch` function to support commands such as listing, reading, writing memory files, and managing session states.
- Updated the core server dispatch module to integrate the new AI RPC functionality, improving modularity and maintainability.
- Refactored existing code to ensure consistent parameter parsing and error handling across AI commands.
* Update TODO list and refactor Rust core server files
- Added new tasks to the TODO list for documentation updates and feature flag cleanup.
- Introduced `Arc` import in `cli.rs` for improved concurrency handling.
- Cleaned up imports in `helpers.rs` and added conditional compilation for `tauri-host`.
- Removed unused `value_only` function in `types.rs` and added `#[allow(dead_code)]` to `SocketConnectParams` and `SocketEmitParams`.
- Enhanced `try_dispatch` function in `dispatch/mod.rs` for non-tauri-host scenarios.
- Updated `try_dispatch` in `openhuman/platform.rs` to correctly handle session parameters.
- Modified `screen_intelligence` configuration in tests to include new properties for better session management.
* Refactor import statements and enhance code readability
- Cleaned up import statements across multiple files for improved organization and consistency.
- Reformatted code in `cli.rs`, `helpers.rs`, and various dispatch modules to enhance readability.
- Ensured consistent parameter handling in `try_dispatch` functions, improving maintainability.
- Removed unnecessary whitespace and adjusted formatting for better code clarity.
* Refactor project structure and enhance AI memory management
- Consolidated the `openhuman-core` package into a single `Cargo.toml` file, removing the previous `rust-core` directory.
- Introduced new modules for AI memory management, including filesystem-based storage and encryption functionalities.
- Added Tauri commands for initializing memory and session management, enhancing user interaction with memory files.
- Implemented JSON-based storage for memory chunks and session transcripts, improving data accessibility and organization.
- Updated dependencies and features in `Cargo.toml` to support new functionalities and ensure compatibility.
* Update build and release workflows to reflect project structure changes
- Adjusted paths in GitHub Actions workflows to accommodate the consolidation of the `openhuman-core` package into a single `Cargo.toml`.
- Updated import statements in various files to point to the new locations of markdown resources.
- Modified the Tauri configuration to reflect the new resource paths, ensuring proper access to AI prompts.
- Enhanced the staging script to build the standalone binary from the updated project structure.
* Refactor AI directory resolution and update documentation
- Updated the logic for resolving AI directory paths to reflect the new project structure, replacing references to `rust-core/ai` with `src/ai/prompts`.
- Enhanced the `find_ai_directory` function across multiple modules to utilize the new path resolution methods.
- Updated documentation comments to clarify the new directory structure and fallback mechanisms for loading AI prompts.
* Rename `openhuman-core` to `openhuman` across the project
- Updated package names in `Cargo.toml` and `Cargo.lock` to reflect the new naming convention.
- Adjusted references in GitHub Actions workflows and scripts to use the new package name.
- Modified CLI command names and error messages to align with the updated naming.
- Ensured consistency in executable file names and paths throughout the codebase.
* Refactor project commands and update package scripts
- Updated package.json to change workspace references from `openhuman` to `app` for build, compile, dev, format, lint, and test scripts.
- Removed outdated memory and chat command files to streamline the codebase and improve maintainability.
- Adjusted the `lib.rs` file to reflect changes in memory command handling, transitioning to use `callCoreRpc` for Neocortex memory operations.
- Cleaned up the commands module by removing unused imports and consolidating functionality.
* Add Tauri host support and new daemon configuration
- Introduced new modules for Tauri host functionality, including `desktop` and `daemon_host`.
- Added static variables and initialization functions for managing the desktop app handle and resource directory.
- Updated import paths for `HeartbeatEngine` to improve clarity and organization.
- Implemented configuration loading and saving for daemon UI preferences, enhancing user experience.
* Update package names in project configuration
- Changed workspace references in package.json from `app` to `openhuman-app` for consistency.
- Updated the name field in the app's package.json to reflect the new naming convention.
* Remove Tauri host feature flags from core server modules
- Eliminated conditional compilation for Tauri host in `lib.rs`, `helpers.rs`, and `dispatch` modules.
- Streamlined socket management functions and dispatch logic by removing unused code related to Tauri host.
- Improved code clarity and maintainability by consolidating socket-related functionality.
* Enhance Tauri host feature integration and update dependencies
- Added `tauri-host` as a default feature in `Cargo.toml` to streamline feature management.
- Removed explicit feature flag from `openhuman` dependency in `app/src-tauri/Cargo.toml` for cleaner configuration.
- Updated Tauri command attributes in various modules to conditionally compile with the `tauri-host` feature, improving modularity.
- Expanded TODO list to include migration support from OpenClaw, indicating future development focus.
* Refactor authentication and credential management in OpenHuman
- Introduced new modules for handling authentication profiles and tokens, including `anthropic_token`, `openai_oauth`, and `profiles`.
- Removed unused Tauri host-related code from core server modules, enhancing clarity and maintainability.
- Updated `Cargo.toml` and `Cargo.lock` to reflect the removal of the `rquickjs` dependency and other package adjustments.
- Streamlined memory client initialization in dispatch logic to utilize the new `local_memory` module.
- Enhanced code organization by consolidating credential management functionalities and improving the overall structure of the OpenHuman module.
* Enhance Rust core RPC structure and streamline helper functions
- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.
* Enhance Rust core RPC structure and streamline helper functions
- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.
* Refactor OpenHuman configuration loading and enhance onboarding RPC
- Replaced the `load_openhuman_config` function with a new `load_config_with_timeout` method to improve timeout handling during configuration loading.
- Consolidated configuration loading logic across various modules, reducing redundancy and enhancing maintainability.
- Introduced new RPC functions for applying settings related to models, memory, screen intelligence, gateway, tunnel, runtime, and browser, streamlining the update process.
- Added onboarding helpers in a new `onboard` module, including a JSON-RPC controller for model refresh operations, improving onboarding flow management.
* Refactor CLI and configuration management in OpenHuman
- Consolidated CLI-related functionality by introducing new modules for settings and credentials management, enhancing code organization.
- Removed redundant functions and streamlined the configuration loading process, improving maintainability.
- Added new CLI helpers for screenshot tools and workspace initialization, facilitating better user experience and onboarding.
- Enhanced JSON-RPC responses to be more compatible with CLI requirements, ensuring consistent output across various commands.
* Remove gateway settings and related functionality from OpenHuman
- Eliminated the GatewaySettingsUpdate interface and associated functions from the codebase, streamlining configuration management.
- Removed references to gateway settings in the CLI and configuration modules, enhancing clarity and maintainability.
- Deleted the gateway module and its related components, including rate limiting and client handling, to simplify the architecture.
- Updated Cargo.toml and Cargo.lock to reflect the removal of dependencies related to gateway functionality.
* Update documentation and improve clarity in OpenHuman
- Revised comments in the `mod.rs`, `traits.rs`, and `pairing.rs` files to enhance clarity and accuracy.
- Updated descriptions related to security policy, long-running processes, and pairing functionality for better understanding.
* Refactor loading prop in TauriCommandsPanel for cleaner code
- Simplified the loading prop assignment in the TauriCommandsPanel component by removing unnecessary line breaks, enhancing readability and maintainability.
* Add OpenSSL dependency and implement OAuth authentication features
- Added OpenSSL as a dependency in `Cargo.toml` to support cryptographic operations.
- Introduced new OAuth-related structures and parameters in `types.rs` for handling authentication flows.
- Implemented OAuth connection and integration token fetching in `auth_socket.rs`, enhancing the authentication capabilities of the OpenHuman module.
- Created new modules for managing authentication profiles and responses, improving the organization of authentication-related code.
- Removed deprecated `anthropic_token` and `openai_oauth` modules to streamline credential management.
- Updated `Cargo.lock` to reflect the addition of the OpenSSL dependency.
* Refactor OpenHuman module and update dependencies
- Added OpenHuman integration entry in the registry for improved backend inference handling.
- Updated various files to enhance code clarity and organization, including adjustments to OAuth client methods and integration tests.
- Refactored import statements and removed unnecessary line breaks for better readability.
- Updated `Cargo.lock` to reflect changes in dependencies and ensure consistency across the project.
* Implement desktop host features and refactor runtime handling
- Introduced new modules for memory management, socket handling, and command definitions to support desktop host functionality.
- Refactored QuickJS runtime initialization to log errors when the engine is not linked, improving clarity on runtime status.
- Added placeholder commands for chat and model interactions, indicating unavailability in the desktop build while maintaining structure for future integration.
- Enhanced organization of the codebase by creating dedicated files for runtime and utility functions, streamlining the development process.
- Updated documentation to reflect new modules and their purposes, ensuring better understanding for future contributors.
* Add CLI banner and print function to enhance user experience
- Introduced a new CLI banner with branding and GitHub link for user engagement.
- Implemented a `print_cli_banner` function to display the banner when running the CLI, improving visibility and user interaction.
- Updated the CLI entry point to call the new banner function, ensuring it appears at startup.
* Add API integration and update dependencies
- Introduced new API modules for handling HTTP requests and WebSocket connections to the TinyHumans backend.
- Added `ureq` dependency for simplified HTTP client functionality, updating `Cargo.toml` and `Cargo.lock` accordingly.
- Implemented configuration and JWT handling in the new `api` module, enhancing session management and API interactions.
- Refactored existing code to utilize the new API helpers, improving code organization and maintainability.
- Updated documentation to reflect new API functionalities and usage guidelines.
* Refactor settings fetching and update dependencies
- Removed the `ureq` dependency and associated functions for fetching settings, streamlining the codebase.
- Updated the `fetch_settings` method to utilize `reqwest` for HTTP requests, enhancing consistency and reliability in API interactions.
- Adjusted the `Cargo.toml` to reflect the removal of `ureq`, ensuring dependencies are up to date.
* Update `ureq` dependency to version 3.3.0 in `Cargo.lock`
- Removed the specific version constraint for `ureq`, allowing for more flexibility in dependency resolution.
- Updated the `Cargo.lock` to reflect the new version of `ureq`, ensuring compatibility with recent changes in the codebase.
* Enhance JSON-RPC logging and CLI initialization
- Introduced a new `rpc_log` module for structured logging of JSON-RPC requests and responses, including redaction of sensitive parameters.
- Updated `execute_core_cli` to initialize logging with a default level and timestamp format.
- Enhanced logging in `rpc_handler` and `dispatch` functions to provide detailed insights into method calls and their execution times.
- Improved error handling logging to capture method failures with context, aiding in debugging and monitoring.
* Refactor HTTP server setup and add integration tests
- Introduced a new `build_core_http_router` function to encapsulate the HTTP routing logic, improving code organization and readability.
- Updated the `run_server` function to utilize the new router function, streamlining server initialization.
- Added comprehensive integration tests for the JSON-RPC API, ensuring robust functionality and error handling in real-world scenarios.
* Enhance OpenHuman backend integration and refactor provider handling
- Added support for the OpenHuman backend in the TauriCommandsPanel, including default configurations and validation for API keys.
- Introduced a new REPL command in the CLI for interactive RPC communication, allowing for dynamic mode switching and message handling.
- Refactored provider creation logic to streamline the integration of the OpenHuman backend, removing deprecated provider overrides and ensuring consistent usage across the codebase.
- Updated various components to improve error handling and user feedback related to provider selection and API interactions.
* Refactor provider handling and update default model settings
- Removed provider override states from the AgentChatPanel and TauriCommandsPanel components, simplifying state management.
- Updated local storage handling to exclude provider overrides, ensuring cleaner data storage.
- Changed default model settings across various components and backend configurations to use "neocortex-mk1" as the new default model.
- Enhanced error handling and validation logic in the TauriCommandsPanel, focusing on model and temperature settings.
- Streamlined integration tests and removed deprecated provider validation logic to improve code clarity and maintainability.
* Refactor code for improved readability and consistency
- Adjusted formatting in several files to enhance code clarity, including consistent parameter passing and alignment.
- Simplified match statement syntax in the `run_models` function for better readability.
- Streamlined assertions in tests to maintain consistency in error handling checks.
- Updated default model name handling in the `AgentBuilder` for cleaner initialization.
* Refactor API URL handling and enhance error reporting
- Updated the `effective_api_url` function to improve clarity in resolving the API base URL, incorporating environment variable checks.
- Enhanced diagnostics in the configuration check to provide clearer messages regarding the API URL status.
- Introduced new error formatting functions to improve the clarity of error messages related to API transport issues.
- Refactored error handling in the OpenAiCompatibleProvider to utilize the new error formatting, ensuring consistent and informative error reporting.
* Refactor API client initialization for consistency
- Updated the instantiation of `BackendOAuthClient` to consistently pass the API URL by reference across multiple functions.
- Simplified the match statement in the `run_models_refresh` function for improved readability.
* Enhance REPL command handling and add fallback mechanisms
- Improved error handling in the REPL command processing, providing clearer feedback for command execution failures.
- Introduced a fallback mechanism for the `agent_chat` RPC call, allowing for graceful degradation to a simpler chat method or a direct backend curl transport if the primary call fails.
- Added a new `backend_chat_via_curl` function to handle chat requests using curl as a last resort, ensuring continued functionality in case of RPC issues.
- Updated the `agent_chat_simple` function to support model overrides and temperature settings, enhancing flexibility in chat interactions.
* Update default Ollama model settings for consistency
- Changed the default Ollama model and vision model to "gemma3:4b-it-qat" for improved alignment across configurations.
- Ensured consistent model naming to enhance clarity in model usage within the local AI module.
* Implement login token consumption and enhance error handling
- Added functionality to consume login tokens via a new API endpoint, returning a JWT for authenticated sessions.
- Improved error handling in the Conversations component, introducing a fallback mechanism for chat interactions when the primary method is unavailable.
- Updated UserProvider to restore session tokens automatically, enhancing user experience during authentication.
- Refactored thread API to support the new login token consumption logic, ensuring seamless integration with the backend.
* Update HTTP client configuration to use Rustls TLS
- Replaced the HTTP/1.1 only setting with Rustls TLS in the OpenAiCompatibleProvider's client builder for enhanced security.
- Ensured consistent application of the new TLS setting across multiple client instances.
* Add Local AI command support and enhance error handling
- Introduced a new `LocalAi` command in the CLI for managing local AI runtime operations, including status checks, asset downloads, and prompt handling.
- Added detailed argument structures for various local AI functionalities, improving command usability.
- Enhanced error reporting in the `LocalAiService` by including response details in error messages for better debugging and user feedback.
- Refactored existing error handling to provide clearer context on failures during API interactions.
* Add local AI module with Ollama integration and model management
- Introduced a new local AI module that includes functionality for automatic installation of the Ollama runtime across different operating systems (Windows, macOS, Linux).
- Implemented model ID resolution and management, providing default settings for various AI models and ensuring compatibility with user configurations.
- Added HTTP API structures and request handling for Ollama, enabling interaction with the local AI service for generating responses and managing assets.
- Developed utility functions for parsing model outputs and managing workspace paths, enhancing the overall structure and usability of the local AI service.
- Established a comprehensive service layer for managing local AI operations, including status tracking and error handling for improved user experience.
* Refactor local AI service structure and enhance asset management
- Simplified the local AI module by reorganizing the service structure, introducing new modules for model IDs, paths, and asset management.
- Added comprehensive asset status tracking for various AI models, including chat, vision, embedding, STT, and TTS, with improved error handling.
- Implemented methods for downloading models and assets, ensuring better management of local AI resources.
- Updated visibility of service methods to enhance encapsulation and maintainability within the local AI service.
* Enhance local AI module with new download progress tracking and unit tests
- Added new structures for tracking download progress of various AI models, including detailed status and metrics.
- Implemented unit tests for model ID resolution, parsing suggestions, and asset path resolution to ensure robust functionality.
- Refactored service methods to improve encapsulation and maintainability, enhancing the overall structure of the local AI service.
- Updated existing tests to cover new functionalities and ensure consistent behavior across the module.
* Implement new local AI download functionalities and refactor model management
- Added support for downloading all local AI assets and tracking download progress, enhancing user experience and resource management.
- Introduced new RPC methods for fetching download progress and managing asset states, improving the overall functionality of the local AI module.
- Refactored existing model management code to utilize the new model catalog, ensuring better organization and maintainability.
- Updated relevant tests to cover new functionalities and ensure consistent behavior across the local AI service.
* Add new interfaces and functions for local AI download progress tracking
- Introduced `LocalAiDownloadProgressItem` and `LocalAiDownloadsProgress` interfaces to structure download progress data for various AI models.
- Implemented `openhumanLocalAiDownloadAllAssets` and `openhumanLocalAiDownloadsProgress` functions to facilitate downloading all assets and tracking their progress.
- Enhanced error handling for Tauri environment checks in new functions, ensuring robust operation within the local AI module.
* Refactor agent loop structure and introduce modular components
- Deleted the `loop_.rs` file and reorganized the agent loop into multiple modules for better maintainability and clarity.
- Introduced new files for handling credentials, history management, tool instructions, memory context, and parsing logic.
- Implemented functions for scrubbing sensitive credentials, managing conversation history, and building tool instructions.
- Enhanced the overall structure of the agent loop to facilitate easier testing and future development.
* Refactor authentication structure and migrate to credentials module
- Moved authentication-related functionality from `auth_profiles` to a new `credentials` module for better organization and clarity.
- Updated references in the API and core server to reflect the new module structure.
- Introduced new data structures and methods for managing authentication profiles, including session support and response handling.
- Removed the obsolete `auth_profiles` module to streamline the codebase and enhance maintainability.
* Add screen intelligence module with capture and context management
- Introduced new modules for screen capture and context management, specifically targeting macOS.
- Implemented functionality to capture screen images and retrieve foreground application context.
- Added data structures for managing application context and window bounds.
- Established limits for screenshot sizes and context character counts to ensure efficient resource management.
- Enhanced helper functions for input action validation and vision summary processing.
- Set up a modular structure for better maintainability and future enhancements.
* Refactor screen intelligence module and remove obsolete components
- Deleted unused files related to screen intelligence, including context and permissions management, to streamline the codebase.
- Refactored the capture functionality to improve organization and maintainability.
- Updated function signatures for better clarity and consistency.
- Enhanced the overall structure of the screen intelligence module for future development and testing.
* Enhance autocomplete CLI functionality and refactor related code
- Added new options for the autocomplete command in the CLI, allowing users to run the autocomplete loop in the current process or spawn a detached process.
- Introduced `AutocompleteStartCliOptions` struct to encapsulate the new command-line arguments.
- Refactored the `autocomplete_start_cli` function to handle the new options and improve process management for the autocomplete service.
- Updated documentation in `CLAUDE.md` to clarify the separation of concerns between routing and controller logic in the codebase.
* Enhance autocomplete error handling and improve focused text context retrieval
- Added a new function to identify "no text candidate" errors, improving error management in the autocomplete engine.
- Refactored the `focused_text_context` and `focused_text_context_verbose` functions to enhance clarity and reliability in retrieving application context.
- Updated the return format of the `focused_text_context_verbose` function to use a separator for better data parsing.
- Added a new TODO item for allowing users to select LLM model versions based on their CPU capabilities.
* Remove Docker, Native, and WASM runtime implementations along with related traits and tests
- Deleted the DockerRuntime, NativeRuntime, and WasmRuntime implementations to streamline the codebase.
- Removed associated traits and factory functions for runtime creation.
- Eliminated all related tests to ensure a clean removal of unused components.
- This refactor aims to simplify the runtime management and prepare for future enhancements.
* Add quickjs-runtime feature and introduce runtime module
- Added a new feature flag for `quickjs-runtime` in `Cargo.toml` to enable its usage.
- Created a new `runtime.rs` module to implement `NativeRuntime` and `DockerRuntime` with associated traits for runtime management.
- Updated the `skills` module to reference the correct path for `SkillConfig`.
- Removed the obsolete `skillforge` module from the `openhuman` namespace to streamline the codebase.
- Enhanced the `skills` module with new structures and functions for managing skills, including initialization and loading logic.
* Refactor autocomplete configuration to remove legacy disabled apps
- Updated the default configuration for `AutocompleteConfig` to remove the legacy disabled apps ('terminal' and 'code'), allowing for broader usage of Codex/CLI.
- Introduced a migration function to handle legacy disabled apps during configuration loading, ensuring custom user preferences remain intact.
- This change enhances the flexibility of the autocomplete feature by preventing unnecessary restrictions on application usage.
* Update rquickjs dependencies in Cargo.lock
- Updated the rquickjs and rquickjs-core dependencies to versions 0.11.0 and 0.9.0 respectively, ensuring compatibility with the latest features and fixes.
- Added new entries for rquickjs-sys and its corresponding version 0.9.0 to the dependency list, enhancing the project's runtime capabilities.
- This update improves the overall stability and performance of the application by leveraging the latest improvements in the rquickjs ecosystem.
* Add terminal application detection to autocomplete logic
- Introduced a new function `is_terminal_app` to identify terminal applications based on their names, enhancing the autocomplete feature's context awareness.
- Updated the `focused_text_context_verbose` function to allow terminal applications to bypass text role checks when the input value is not empty, improving user experience in terminal environments.
- This change aims to provide better support for terminal-based applications in the autocomplete system.
* Add terminal input context extraction and noise line detection
- Introduced functions to identify terminal-like buffers and filter out noise lines in terminal input, enhancing the autocomplete engine's context awareness.
- Updated the `focused_text_context` logic to utilize the new terminal context extraction, improving the handling of text in terminal applications.
- Enhanced the `focused_text_context_verbose` function to better retrieve static text values from UI elements, ensuring accurate context representation in terminal environments.
- These changes aim to improve user experience and functionality for terminal-based applications in the autocomplete system.
* Enhance autocomplete engine state management and error handling
- Added new fields `last_escape_down` and `last_overlay_signature` to `EngineState` for improved state tracking.
- Implemented `try_reject_via_escape` method to handle escape key interactions, allowing users to reject suggestions more intuitively.
- Updated error handling to display notifications for different states (ready, accepted, rejected, error) using `show_overflow_badge`.
- Refactored state updates to ensure consistent management of suggestion and phase transitions, enhancing overall user experience in the autocomplete system.
* Implement periodic status logging in autocomplete service
- Added a polling mechanism to log the status of the autocomplete engine at regular intervals.
- Enhanced logging to capture changes in phase, application name, suggestions, and errors, improving visibility during service execution.
- Refactored the `autocomplete_start_cli` function to integrate the new logging functionality, ensuring a more informative user experience while the service is running.
* Refactor memory dispatch logic and remove local memory implementation
- Updated the memory dispatch functions to utilize the new `memory_rpc` module, enhancing the handling of memory operations such as document management and namespace queries.
- Removed the local memory implementation, including database interactions and related functions, to streamline the codebase and improve maintainability.
- Introduced new RPC calls for document operations (put, list, delete) and context queries, ensuring a more efficient and consistent approach to memory management.
- This refactor aims to enhance the overall architecture and performance of the memory handling system.
* Remove macOS-specific overflow badge functionality and related helper functions
- Deleted the `show_overflow_badge` and `escape_applescript_string` functions, which were specific to macOS, to streamline the codebase.
- Refactored the `show_overflow_badge` function to provide a no-op implementation for non-macOS platforms, enhancing cross-platform compatibility.
- This change simplifies the autocomplete module by removing platform-dependent code, improving maintainability and clarity.
* Enhance text application logic in autocomplete module
- Updated the `apply_text_to_focused_field` function to improve interaction with focused UI elements on macOS.
- The new implementation retrieves the current value of the focused element and appends the provided text, ensuring better handling of text input.
- Enhanced error reporting to include stderr output when applying suggestions fails, improving debugging capabilities.
- These changes aim to provide a more robust and user-friendly experience in the autocomplete functionality.
* Refactor Landlock feature configuration for Linux support
- Moved the `landlock` and `rppal` dependencies under a conditional target configuration for Linux in both `Cargo.toml` files, ensuring they are only included when building for Linux.
- Updated the `landlock.rs` module to check for both the `sandbox-landlock` feature and the Linux target OS, improving the conditional compilation logic.
- This change enhances cross-platform compatibility and ensures that Landlock functionality is only available on supported systems.
* Update dependencies and enhance Tauri integration
- Updated the Tauri dependency in `Cargo.toml` to include the `tray-icon` feature, enabling system tray support.
- Introduced a new `rust-toolchain.toml` file to pin the Rust version to 1.93.0, ensuring compatibility with the matrix-sdk.
- Modified GitHub workflows to use the specified Rust version from `rust-toolchain.toml` instead of the stable version, improving build consistency.
- Refactored Tauri commands to utilize a new `wrapCommandResult` function for better response handling.
- Added a new `tray` module in `openhuman` for managing system tray functionality, enhancing the desktop experience.
- Updated various command implementations to streamline service management and improve error handling.
* Refactor core process handling and enhance encryption features
- Removed the `openhuman` dependency from `Cargo.lock` and `Cargo.toml`, streamlining the project structure.
- Updated the core process handling to fall back to a child process when in-process execution is unavailable, improving error handling and logging.
- Introduced new encryption commands (`ai_init_encryption`, `ai_encrypt`, `ai_decrypt`) to enhance security features, utilizing AES-GCM for data protection.
- Added a new `tray` module for managing system tray functionality, improving user experience on desktop platforms.
- Refactored various command implementations to improve service management and error handling, ensuring a more robust application architecture.
* Remove unused modules and refactor daemon host configuration
- Deleted the `daemon_host_config`, `memory`, `models`, `openhuman_daemon`, `tray`, `chat`, `conscious_loop`, and `runtime` modules to streamline the codebase.
- Refactored the daemon host configuration logic into the `openhuman` module, consolidating related functionality.
- Updated command implementations to utilize the new configuration methods, ensuring consistent handling of daemon host settings.
- This cleanup enhances maintainability and reduces complexity in the project structure.
* Refactor memory management and update Tauri dependencies
- Removed the `tray-icon` feature from the Tauri dependency in `Cargo.toml` to streamline the configuration.
- Deleted the `core:tray:default` capability from the default capabilities JSON, simplifying the capabilities structure.
- Refactored memory handling in tests to utilize `UnifiedMemory` instead of `SqliteMemory`, enhancing consistency across memory operations.
- Updated memory store, recall, and forget functionalities to support a global namespace, improving memory management and retrieval processes.
- Enhanced error handling and logging in memory operations to provide clearer feedback during execution.
* Remove AI encryption commands and related functionality
- Deleted the `ai_init_encryption`, `ai_encrypt`, and `ai_decrypt` functions to streamline the codebase and remove unused features.
- Updated the command registration in the `run` function to reflect the removal of these encryption commands, enhancing maintainability and reducing complexity.
* Add OAuth integration token handling and channel connection management
- Introduced functions to fetch and encrypt integration tokens using OAuth, enhancing security for token management.
- Updated the channel connections API to support OAuth integration, including listing, connecting, and disconnecting channels.
- Implemented checks for supported channels and authentication modes, improving the robustness of channel connection handling.
- Enhanced error handling for integration token retrieval to ensure required fields are present before proceeding.
* Refactor project structure and update documentation
- Renamed the project from "Outsourced" to "OpenHuman" and revised the project summary to reflect its focus on AI-powered assistance for crypto communities.
- Restructured the repository layout, detailing the purpose of each directory and its contents.
- Updated runtime scope to clarify platform support and Tauri's desktop-only focus.
- Enhanced documentation across various files, including architecture, services, and routing, to improve clarity and usability for contributors.
- Removed outdated sections and streamlined commands for development and production builds, ensuring consistency in the documentation.
* Implement REPL session management and multimodal support
- Introduced a new REPL session management system, allowing for session-specific interactions with agents.
- Added functions for starting, chatting, resetting, and ending REPL sessions, enhancing user experience and control.
- Implemented multimodal message handling, enabling the processing of images alongside text in user messages.
- Updated the project structure to include new modules for identity and multimodal functionalities, improving organization and maintainability.
- Enhanced error handling and logging for session operations, providing clearer feedback during execution.
* Refactor memory store implementation and introduce unified memory management
- Removed the legacy memory store implementation and replaced it with a new unified memory management system.
- Introduced a `MemoryClient` for handling document storage, retrieval, and namespace management.
- Added support for key-value storage and graph data structures within the unified memory framework.
- Enhanced the `UnifiedMemory` struct with methods for document upsertion, querying, and namespace operations.
- Updated the project structure to include new modules for memory types, factories, and traits, improving organization and maintainability.
- Improved error handling and logging across memory operations for clearer feedback during execution.
* Implement QuickJS skill instance management
- Removed the previous QjsSkillInstance implementation and replaced it with a new modular structure.
- Introduced separate modules for event loop management, instance handling, JavaScript handlers, and utility functions.
- Enhanced the event loop to efficiently manage QuickJS runtime tasks, including timer callbacks and message processing.
- Added support for asynchronous tool calls and lifecycle management within the QuickJS context.
- Improved error handling and logging throughout the new implementation for better debugging and user feedback.
- Updated documentation to reflect the new structure and functionality of the QuickJS skill instance.
15907 lines
497 KiB
JSON
15907 lines
497 KiB
JSON
{
|
|
"v": "4.8.0",
|
|
"meta": { "g": "LottieFiles AE ", "a": "", "k": "", "d": "", "tc": "" },
|
|
"fr": 29.9700012207031,
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"w": 2600,
|
|
"h": 2160,
|
|
"nm": "hand for video",
|
|
"ddd": 0,
|
|
"assets": [
|
|
{
|
|
"id": "comp_0",
|
|
"layers": [
|
|
{
|
|
"ddd": 0,
|
|
"ind": 1,
|
|
"ty": 4,
|
|
"nm": "f4-2 Outlines 2",
|
|
"parent": 12,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.744]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [278.905, 57.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.303, 36.163, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-15.138, 2.691],
|
|
[-17.092, 1.345],
|
|
[-2.664, -4.524],
|
|
[0.964, -5.382],
|
|
[1.928, -2.605],
|
|
[6.661, -1.431],
|
|
[12.897, -3.865],
|
|
[11.509, -1.174],
|
|
[4.875, 7.359],
|
|
[-1.643, 6.47],
|
|
[-2.325, 1.173]
|
|
],
|
|
"o": [
|
|
[15.165, -2.663],
|
|
[17.093, -1.346],
|
|
[2.665, 4.552],
|
|
[-0.964, 5.411],
|
|
[-1.956, 2.634],
|
|
[-6.661, 1.461],
|
|
[-12.926, 3.864],
|
|
[-11.537, 1.202],
|
|
[-4.876, -7.357],
|
|
[1.616, -6.499],
|
|
[2.325, -1.203]
|
|
],
|
|
"v": [
|
|
[-30.912, -19.755],
|
|
[30.826, -28.716],
|
|
[55.346, -23.248],
|
|
[57.642, -6.527],
|
|
[52.256, 5.468],
|
|
[42.307, 10.793],
|
|
[10.757, 17.751],
|
|
[-27.539, 28.859],
|
|
[-53.164, 18.981],
|
|
[-56.963, -5.841],
|
|
[-49.224, -15.488]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [58.856, 30.312], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 2,
|
|
"ty": 4,
|
|
"nm": "f4-1 Outlines 2",
|
|
"parent": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [8.613]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [100.126, 17.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [13.1, 16.559, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.624, -0.43],
|
|
[0, -0.944],
|
|
[0.623, -1.775],
|
|
[0.907, -1.546],
|
|
[1.219, -0.229],
|
|
[1.701, 0.63],
|
|
[2.381, 1.431],
|
|
[1.077, 2.72],
|
|
[-1.701, 2.004],
|
|
[-3.203, -0.602],
|
|
[-2.41, -1.231]
|
|
],
|
|
"o": [
|
|
[0.623, 0.458],
|
|
[0, 0.974],
|
|
[-0.624, 1.747],
|
|
[-0.935, 1.574],
|
|
[-1.248, 0.258],
|
|
[-1.701, -0.63],
|
|
[-2.382, -1.432],
|
|
[-1.049, -2.72],
|
|
[1.701, -2.004],
|
|
[3.175, 0.601],
|
|
[2.437, 1.203]
|
|
],
|
|
"v": [
|
|
[11.339, -4.051],
|
|
[12.16, -2.219],
|
|
[11.31, 2.018],
|
|
[8.758, 7.344],
|
|
[5.754, 10.264],
|
|
[1.19, 9.291],
|
|
[-4.706, 6.571],
|
|
[-11.112, 0.215],
|
|
[-9.666, -7.773],
|
|
[-2.154, -9.92],
|
|
[7.228, -6.17]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.736, 25.007], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -2.448, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-4.054, 2.062],
|
|
[-7.597, -2.635],
|
|
[-7.966, -3.693],
|
|
[-3.062, -3.55],
|
|
[2.722, -3.865],
|
|
[6.861, -0.859],
|
|
[7.909, 1.661],
|
|
[5.159, 2.634],
|
|
[1.36, 3.865],
|
|
[-1.389, 4.38]
|
|
],
|
|
"o": [
|
|
[4.053, -2.062],
|
|
[7.596, 2.633],
|
|
[7.964, 3.722],
|
|
[3.089, 3.551],
|
|
[-2.749, 3.866],
|
|
[-6.887, 0.83],
|
|
[-7.908, -1.632],
|
|
[-5.187, -2.663],
|
|
[-1.36, -3.893],
|
|
[1.36, -4.352]
|
|
],
|
|
"v": [
|
|
[-26.73, -20.041],
|
|
[-9.383, -19.525],
|
|
[15.704, -7.902],
|
|
[33.166, 1.46],
|
|
[33.25, 13.857],
|
|
[18.424, 21.33],
|
|
[-4.905, 19.469],
|
|
[-25.286, 12.97],
|
|
[-34.895, 3.35],
|
|
[-34.555, -9.562]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.504, 22.41], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 3,
|
|
"ty": 4,
|
|
"nm": "f3-3 Outlines 2",
|
|
"parent": 12,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [2.436]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [266.772, 104.803, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.092, 29.075, 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": [
|
|
[-12.132, 1.718],
|
|
[-10.828, 0.858],
|
|
[-2.437, -1.174],
|
|
[-1.956, -3.751],
|
|
[0.028, -5.611],
|
|
[2.211, -4.381],
|
|
[6.492, -1.603],
|
|
[10.83, -1.03],
|
|
[7.88, 0.601],
|
|
[3.345, 4.352],
|
|
[0.17, 6.099],
|
|
[-3.601, 3.922]
|
|
],
|
|
"o": [
|
|
[12.161, -1.747],
|
|
[10.828, -0.86],
|
|
[2.409, 1.202],
|
|
[1.927, 3.721],
|
|
[-0.029, 5.612],
|
|
[-2.211, 4.38],
|
|
[-6.463, 1.632],
|
|
[-10.828, 1.031],
|
|
[-7.881, -0.63],
|
|
[-3.344, -4.352],
|
|
[-0.198, -6.098],
|
|
[3.628, -3.923]
|
|
],
|
|
"v": [
|
|
[-20.736, -21.545],
|
|
[21.557, -25.782],
|
|
[37.176, -25.523],
|
|
[44.065, -18.108],
|
|
[47.325, -3.766],
|
|
[43.667, 12.468],
|
|
[31.96, 20.942],
|
|
[4.747, 24.32],
|
|
[-25.696, 26.096],
|
|
[-41.004, 18.566],
|
|
[-47.155, 1.96],
|
|
[-41.485, -14.072]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [47.603, 26.948], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 4,
|
|
"ty": 4,
|
|
"nm": "f3-2 Outlines 2",
|
|
"parent": 3,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [3.473]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [69.563, 23.704, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.979, 25.602, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, 0.63],
|
|
[-14.174, -1.003],
|
|
[-10.828, -3.722],
|
|
[-0.085, -6.643],
|
|
[4.252, -4.267],
|
|
[10.885, -0.057],
|
|
[10.828, -0.487],
|
|
[4.195, -0.43],
|
|
[1.473, -0.114],
|
|
[2.239, 0.916],
|
|
[2.637, 4.381],
|
|
[-0.538, 5.927],
|
|
[-2.041, 3.321],
|
|
[-1.616, 1.174],
|
|
[-1.643, 0.372]
|
|
],
|
|
"o": [
|
|
[5.612, -0.63],
|
|
[14.144, 0.972],
|
|
[10.8, 3.722],
|
|
[0.056, 6.642],
|
|
[-4.224, 4.266],
|
|
[-10.886, 0.058],
|
|
[-10.828, 0.486],
|
|
[-4.196, 0.429],
|
|
[-1.503, 0.086],
|
|
[-2.211, -0.916],
|
|
[-2.636, -4.352],
|
|
[0.539, -5.926],
|
|
[2.069, -3.292],
|
|
[1.617, -1.145],
|
|
[1.645, -0.372]
|
|
],
|
|
"v": [
|
|
[-30.968, -23.692],
|
|
[-1.799, -24.349],
|
|
[42.081, -16.648],
|
|
[55.631, -1.818],
|
|
[48.883, 17.938],
|
|
[27.822, 21.973],
|
|
[-9.709, 22.947],
|
|
[-30.544, 24.436],
|
|
[-38.792, 25.266],
|
|
[-42.93, 24.292],
|
|
[-51.804, 17.278],
|
|
[-55.148, -0.044],
|
|
[-50.243, -14.101],
|
|
[-44.773, -20.37],
|
|
[-40.096, -22.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.936, 25.603], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 5,
|
|
"ty": 4,
|
|
"nm": "f3-1 Outlines 2",
|
|
"parent": 4,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [11.44]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [96.219, 26.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.926, 18.333, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.454, -0.687],
|
|
[0.34, -1.116],
|
|
[1.247, -1.489],
|
|
[1.503, -1.204],
|
|
[1.305, 0.2],
|
|
[1.446, 1.26],
|
|
[1.843, 2.319],
|
|
[0.057, 3.092],
|
|
[-2.409, 1.317],
|
|
[-2.92, -1.775],
|
|
[-1.9, -1.919]
|
|
],
|
|
"o": [
|
|
[0.453, 0.659],
|
|
[-0.312, 1.118],
|
|
[-1.276, 1.518],
|
|
[-1.473, 1.173],
|
|
[-1.304, -0.201],
|
|
[-1.446, -1.259],
|
|
[-1.814, -2.29],
|
|
[-0.056, -3.093],
|
|
[2.41, -1.345],
|
|
[2.92, 1.774],
|
|
[1.927, 1.946]
|
|
],
|
|
"v": [
|
|
[11.538, -0.358],
|
|
[11.736, 2.247],
|
|
[9.411, 6.256],
|
|
[4.904, 10.58],
|
|
[0.878, 12.326],
|
|
[-3.232, 9.663],
|
|
[-8.05, 4.767],
|
|
[-12.019, -3.85],
|
|
[-7.711, -11.18],
|
|
[0.482, -10.521],
|
|
[8.335, -3.506]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.189, 35.657], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0.742, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.216, 1.632],
|
|
[-5.584, -4.123],
|
|
[-4.393, -4.266],
|
|
[-2.834, -2.605],
|
|
[-1.049, -3.264],
|
|
[2.409, -3.15],
|
|
[5.131, -0.43],
|
|
[5.782, 2.032],
|
|
[5.755, 3.751],
|
|
[2.551, 4.753],
|
|
[-2.551, 5.641]
|
|
],
|
|
"o": [
|
|
[5.187, -1.604],
|
|
[5.555, 4.123],
|
|
[4.394, 4.266],
|
|
[2.835, 2.606],
|
|
[1.049, 3.293],
|
|
[-2.381, 3.149],
|
|
[-5.131, 0.4],
|
|
[-5.783, -2.033],
|
|
[-5.754, -3.779],
|
|
[-2.551, -4.782],
|
|
[2.579, -5.611]
|
|
],
|
|
"v": [
|
|
[-17.15, -26.053],
|
|
[-0.595, -20.642],
|
|
[14.711, -6.928],
|
|
[25.398, 3.15],
|
|
[31.521, 10.966],
|
|
[30.019, 21.96],
|
|
[17.886, 27.257],
|
|
[1.361, 24.709],
|
|
[-16.101, 15.747],
|
|
[-30.019, 2.835],
|
|
[-29.537, -12.683]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [32.82, 27.907], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 6,
|
|
"ty": 4,
|
|
"nm": "f2-3 Outlines 2",
|
|
"parent": 12,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.005]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [276.475, 150.645, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.657, 25.16, 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.082, -1.86],
|
|
[-3.033, -4.41],
|
|
[-0.312, -4.953],
|
|
[1.984, -4.208],
|
|
[4.081, -2.09],
|
|
[7.994, 0.086],
|
|
[10.631, 0.201],
|
|
[7.54, 4.036],
|
|
[1.559, 7.988],
|
|
[-4.394, 5.469],
|
|
[-11.905, 0.716],
|
|
[-10.091, -0.945]
|
|
],
|
|
"o": [
|
|
[4.054, 1.833],
|
|
[3.033, 4.409],
|
|
[0.312, 4.981],
|
|
[-1.984, 4.238],
|
|
[-4.082, 2.061],
|
|
[-7.965, -0.057],
|
|
[-10.6, -0.172],
|
|
[-7.569, -4.065],
|
|
[-1.588, -7.988],
|
|
[4.422, -5.439],
|
|
[11.877, -0.716],
|
|
[10.063, 0.945]
|
|
],
|
|
"v": [
|
|
[34.484, -22.432],
|
|
[46.19, -12.869],
|
|
[51.009, 1.99],
|
|
[48.487, 15.589],
|
|
[39.274, 25.925],
|
|
[22.18, 28.015],
|
|
[-7.357, 27.471],
|
|
[-35.843, 23.148],
|
|
[-49.733, 3.078],
|
|
[-45.254, -18.309],
|
|
[-21.784, -27.385],
|
|
[16.795, -25.61]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.571, 28.351], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 7,
|
|
"ty": 4,
|
|
"nm": "f2-2 Outlines 2",
|
|
"parent": 6,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.636]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [73.006, 28.973, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.88, 25.852, 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.211, 5.411],
|
|
[-2.523, 1.517],
|
|
[-0.964, 0.056],
|
|
[-5.159, -0.258],
|
|
[-12.84, -2.434],
|
|
[-9.722, -3.293],
|
|
[-3.005, -4.667],
|
|
[0.596, -6.413],
|
|
[2.182, -3.35],
|
|
[12.189, 1.146],
|
|
[12.756, 1.746],
|
|
[2.635, 0.343],
|
|
[4.082, 3.264],
|
|
[2.013, 6.957]
|
|
],
|
|
"o": [
|
|
[2.239, -5.439],
|
|
[2.494, -1.518],
|
|
[0.964, -0.058],
|
|
[5.131, 0.258],
|
|
[12.87, 2.405],
|
|
[9.751, 3.321],
|
|
[3.033, 4.667],
|
|
[-0.566, 6.384],
|
|
[-2.211, 3.379],
|
|
[-12.16, -1.145],
|
|
[-12.784, -1.719],
|
|
[-2.609, -0.315],
|
|
[-4.054, -3.264],
|
|
[-2.013, -6.957]
|
|
],
|
|
"v": [
|
|
[-52.455, -19.297],
|
|
[-44.036, -29.117],
|
|
[-39.218, -30.863],
|
|
[-32.556, -30.577],
|
|
[-4.89, -27.457],
|
|
[33.661, -17.321],
|
|
[49.904, -7.187],
|
|
[54.864, 11.051],
|
|
[48.43, 26.454],
|
|
[33.35, 29.775],
|
|
[-15.208, 23.506],
|
|
[-32.527, 21.387],
|
|
[-42.562, 17.207],
|
|
[-53.447, 1.059]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.71, 31.171], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 8,
|
|
"ty": 4,
|
|
"nm": "f2-1 Outlines 2",
|
|
"parent": 7,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [10.502]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [89.462, 33.565, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.009, 18.362, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.396, -0.772],
|
|
[0.511, -1.116],
|
|
[1.588, -1.46],
|
|
[1.815, -1.116],
|
|
[1.077, 0.115],
|
|
[1.332, 1.546],
|
|
[1.899, 3.406],
|
|
[-0.425, 3.807],
|
|
[-2.664, 0.774],
|
|
[-2.835, -2.806],
|
|
[-1.898, -2.376]
|
|
],
|
|
"o": [
|
|
[0.369, 0.773],
|
|
[-0.51, 1.118],
|
|
[-1.587, 1.488],
|
|
[-1.786, 1.088],
|
|
[-1.105, -0.143],
|
|
[-1.36, -1.517],
|
|
[-1.871, -3.379],
|
|
[0.425, -3.837],
|
|
[2.693, -0.773],
|
|
[2.835, 2.777],
|
|
[1.9, 2.405]
|
|
],
|
|
"v": [
|
|
[12.43, 2.404],
|
|
[12.26, 5.181],
|
|
[9.17, 9.104],
|
|
[3.585, 13.284],
|
|
[-0.694, 14.887],
|
|
[-3.897, 12.31],
|
|
[-9.028, 5.211],
|
|
[-12.374, -6.585],
|
|
[-6.562, -14.229],
|
|
[1.602, -10.708],
|
|
[9.368, -1.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.711, 44.741], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -1.787, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-6.406, -6.471],
|
|
[-6.01, -6.786],
|
|
[-1.843, -4.294],
|
|
[3.771, -3.522],
|
|
[7.511, 0.858],
|
|
[7.569, 5.239],
|
|
[4.422, 4.552],
|
|
[0.879, 4.408],
|
|
[-1.389, 4.897],
|
|
[-3.657, 2.233],
|
|
[-4.876, -1.116]
|
|
],
|
|
"o": [
|
|
[6.435, 6.47],
|
|
[6.009, 6.785],
|
|
[1.842, 4.294],
|
|
[-3.741, 3.492],
|
|
[-7.512, -0.831],
|
|
[-7.596, -5.241],
|
|
[-4.421, -4.552],
|
|
[-0.879, -4.438],
|
|
[1.388, -4.895],
|
|
[3.628, -2.205],
|
|
[4.847, 1.146]
|
|
],
|
|
"v": [
|
|
[2.226, -22.16],
|
|
[22.409, 0.859],
|
|
[34.597, 15.776],
|
|
[32.045, 28.345],
|
|
[13.904, 33.211],
|
|
[-9.369, 23.191],
|
|
[-28.418, 6.871],
|
|
[-35.56, -4.667],
|
|
[-34.965, -20.299],
|
|
[-27.255, -30.921],
|
|
[-14.159, -32.953]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.689, 34.32], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 9,
|
|
"ty": 4,
|
|
"nm": "f1-3 Outlines 2",
|
|
"parent": 12,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.218]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [240.804, 187.743, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.475, 23.004, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, -4.381],
|
|
[-2.012, -6.327],
|
|
[2.494, -5.727],
|
|
[4.393, -1.946],
|
|
[3.856, 0.544],
|
|
[9.864, 1.26],
|
|
[11.707, 3.006],
|
|
[4.648, 5.926],
|
|
[-1.248, 7.358],
|
|
[-6.01, 4.466],
|
|
[-11.196, -0.773],
|
|
[-10.885, -3.379]
|
|
],
|
|
"o": [
|
|
[5.612, 4.38],
|
|
[2.013, 6.357],
|
|
[-2.467, 5.755],
|
|
[-4.366, 1.947],
|
|
[-3.882, -0.515],
|
|
[-9.894, -1.26],
|
|
[-11.707, -2.978],
|
|
[-4.678, -5.955],
|
|
[1.247, -7.358],
|
|
[6.009, -4.466],
|
|
[11.197, 0.744],
|
|
[10.884, 3.378]
|
|
],
|
|
"v": [
|
|
[42.18, -15.074],
|
|
[53.915, 1.245],
|
|
[53.349, 20.4],
|
|
[41.614, 32.51],
|
|
[29.536, 33.426],
|
|
[11.906, 31.05],
|
|
[-25.568, 24.895],
|
|
[-49.436, 11.896],
|
|
[-54.679, -9.233],
|
|
[-43.142, -27.928],
|
|
[-18.198, -33.683],
|
|
[18.568, -25.981]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.177, 34.706], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 10,
|
|
"ty": 4,
|
|
"nm": "f1-2 Outlines 2",
|
|
"parent": 9,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.964]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [82.072, 35.466, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.037, 21.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": [
|
|
[-11.565, -3.693],
|
|
[-12.217, 0],
|
|
[-4.025, 5.497],
|
|
[3.77, 5.841],
|
|
[13.152, 6.67],
|
|
[9.638, 3.78],
|
|
[2.24, 0.2],
|
|
[4.508, -2.005],
|
|
[2.353, -7.502],
|
|
[-2.721, -6.727],
|
|
[-5.046, -2.004]
|
|
],
|
|
"o": [
|
|
[11.565, 3.693],
|
|
[12.246, 0.028],
|
|
[4.054, -5.469],
|
|
[-3.77, -5.811],
|
|
[-13.125, -6.701],
|
|
[-9.666, -3.778],
|
|
[-2.239, -0.201],
|
|
[-4.507, 2.032],
|
|
[-2.324, 7.529],
|
|
[2.721, 6.729],
|
|
[5.046, 2.004]
|
|
],
|
|
"v": [
|
|
[-15.491, 25.009],
|
|
[25.497, 34.4],
|
|
[49.053, 23.263],
|
|
[50.188, 6.656],
|
|
[24.932, -12.181],
|
|
[-15.719, -29.676],
|
|
[-29.042, -34.227],
|
|
[-38.821, -32.28],
|
|
[-51.634, -18.852],
|
|
[-49.961, 6.542],
|
|
[-37.999, 17.622]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.207, 34.678], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 11,
|
|
"ty": 4,
|
|
"nm": "f1 Outlines 2",
|
|
"parent": 10,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [5.714]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [83.408, 49.621, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.41, 18.643, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.113, -0.858],
|
|
[0.822, -0.888],
|
|
[1.984, -0.887],
|
|
[2.041, -0.487],
|
|
[1.559, 1.804],
|
|
[1.162, 4.265],
|
|
[-1.191, 3.292],
|
|
[-2.665, 0.688],
|
|
[-2.211, -3.35],
|
|
[-1.388, -3.579]
|
|
],
|
|
"o": [
|
|
[0.142, 0.859],
|
|
[-0.822, 0.916],
|
|
[-1.956, 0.888],
|
|
[-2.069, 0.487],
|
|
[-1.559, -1.804],
|
|
[-1.19, -4.267],
|
|
[1.22, -3.321],
|
|
[2.665, -0.687],
|
|
[2.211, 3.349],
|
|
[1.361, 3.578]
|
|
],
|
|
"v": [
|
|
[11.481, 7.028],
|
|
[10.488, 9.605],
|
|
[6.321, 12.382],
|
|
[-0.227, 14.587],
|
|
[-5.386, 13.441],
|
|
[-9.695, 3.622],
|
|
[-10.432, -8.718],
|
|
[-3.43, -14.559],
|
|
[3.628, -11.467],
|
|
[9.467, 1.732]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [49.854, 54.325], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.499, -7.701],
|
|
[-6.776, -3.521],
|
|
[-5.414, 1.431],
|
|
[-0.113, 5.383],
|
|
[3.231, 8.217],
|
|
[3.487, 7.672],
|
|
[5.046, 3.264],
|
|
[5.612, -3.321],
|
|
[2.579, -5.182],
|
|
[-2.211, -6.155]
|
|
],
|
|
"o": [
|
|
[5.471, 7.702],
|
|
[6.802, 3.522],
|
|
[5.414, -1.431],
|
|
[0.113, -5.353],
|
|
[-3.232, -8.189],
|
|
[-3.515, -7.645],
|
|
[-5.073, -3.292],
|
|
[-5.613, 3.322],
|
|
[-2.608, 5.21],
|
|
[2.212, 6.156]
|
|
],
|
|
"v": [
|
|
[-16.554, 17.321],
|
|
[2.212, 34.986],
|
|
[21.515, 37.706],
|
|
[30.813, 27.399],
|
|
[24.123, 6.615],
|
|
[14.485, -18.408],
|
|
[1.842, -35.445],
|
|
[-14.881, -35.817],
|
|
[-28.261, -20.269],
|
|
[-28.715, -5.525]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [31.176, 39.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 12,
|
|
"ty": 4,
|
|
"nm": "gesture Outlines 2",
|
|
"parent": 13,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [4.953]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [247.261, 292.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [95.522, 91.304, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-13.096, -15.402],
|
|
[-8.391, -8.361],
|
|
[-5.159, -2.462],
|
|
[-8.673, -0.172],
|
|
[-7.286, 2.347],
|
|
[-3.856, 3.607],
|
|
[-1.162, 2.978],
|
|
[0.599, 3.58],
|
|
[-1.021, 4.638],
|
|
[-7.116, 4.896],
|
|
[-7.683, 2.462],
|
|
[-3.43, -0.372],
|
|
[-2.749, -0.258],
|
|
[-4.082, 2.348],
|
|
[-3.459, 5.898],
|
|
[-1.021, 28.774],
|
|
[-0.057, 26.139],
|
|
[0.566, 1.03],
|
|
[0.709, 0.2],
|
|
[5.5, 0.429],
|
|
[12.529, 1.173],
|
|
[14.797, 1.718],
|
|
[13.947, 3.264],
|
|
[8.73, 3.694],
|
|
[3.203, 1.203],
|
|
[1.786, -1.288],
|
|
[18.737, -19.497],
|
|
[18.766, -19.297],
|
|
[-0.397, -2.377],
|
|
[-8.306, -11.853],
|
|
[-13.096, -18.58]
|
|
],
|
|
"o": [
|
|
[13.096, 15.403],
|
|
[8.418, 8.36],
|
|
[5.131, 2.433],
|
|
[8.674, 0.2],
|
|
[7.313, -2.348],
|
|
[3.854, -3.608],
|
|
[1.134, -3.007],
|
|
[-0.52, -3.108],
|
|
[1.02, -4.638],
|
|
[7.115, -4.895],
|
|
[7.681, -2.434],
|
|
[3.401, 0.372],
|
|
[2.779, 0.258],
|
|
[4.111, -2.348],
|
|
[3.486, -5.897],
|
|
[1.049, -28.801],
|
|
[0.057, -26.168],
|
|
[-0.568, -1.031],
|
|
[-0.737, -0.201],
|
|
[-5.528, -0.401],
|
|
[-12.529, -1.174],
|
|
[-14.797, -1.747],
|
|
[-13.917, -3.264],
|
|
[-8.73, -3.692],
|
|
[-3.203, -1.173],
|
|
[-1.814, 1.317],
|
|
[-18.737, 19.526],
|
|
[-18.765, 19.297],
|
|
[0.396, 2.347],
|
|
[8.305, 11.853],
|
|
[13.068, 18.553]
|
|
],
|
|
"v": [
|
|
[-64.148, 92.876],
|
|
[-28.544, 131.013],
|
|
[-12.246, 144.183],
|
|
[9.127, 149.365],
|
|
[34.866, 145.013],
|
|
[50.854, 136.51],
|
|
[57.736, 129.057],
|
|
[57.538, 119.97],
|
|
[57.911, 105.303],
|
|
[68.995, 91.33],
|
|
[95.074, 78.59],
|
|
[110.24, 76.986],
|
|
[119.167, 77.874],
|
|
[128.833, 76.042],
|
|
[141.818, 62.9],
|
|
[147.854, 21.357],
|
|
[149.47, -84.317],
|
|
[148.536, -113.09],
|
|
[146.522, -114.807],
|
|
[139.578, -115.351],
|
|
[111.232, -117.814],
|
|
[69.136, -122.166],
|
|
[25.54, -129.151],
|
|
[-10.148, -140.661],
|
|
[-26.56, -148.392],
|
|
[-33.534, -147.848],
|
|
[-55.729, -124.914],
|
|
[-129.062, -49.245],
|
|
[-149.13, -25.852],
|
|
[-137.905, -8.646],
|
|
[-102.416, 42.486]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [149.777, 149.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 13,
|
|
"ty": 4,
|
|
"nm": "arm Outlines 3",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [-4.841]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [1542.272, 728.128, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [64.524, 72.071, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [188, 188, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[30.738, 27.491],
|
|
[-3.778, 6.65],
|
|
[-53.959, 29.452],
|
|
[-4.455, -1.568],
|
|
[-41.565, -17.762],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-26.083, -26.912],
|
|
[-5.703, -5.1],
|
|
[29.565, -52.04],
|
|
[4.145, -2.262],
|
|
[19.723, 6.941],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-12.147, 131.985],
|
|
[-126.959, 24.535],
|
|
[-130.219, 4.622],
|
|
[4.765, -129.365],
|
|
[17.799, -130.417],
|
|
[124.702, -7.623],
|
|
[133.996, -7.828]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [180.868, 214.797], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 2.683, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[19.587, 21.644],
|
|
[41.754, 51.134],
|
|
[0, 0],
|
|
[-25.313, 25.566],
|
|
[-28.828, 13.8],
|
|
[-12.218, -19.211],
|
|
[-17.547, -24.622],
|
|
[-9.61, -5.239],
|
|
[-4.62, -0.916],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-22.195, -22.761],
|
|
[-36.029, -39.939],
|
|
[0, 0],
|
|
[13.861, -33.955],
|
|
[22.365, -22.59],
|
|
[13.663, 21.644],
|
|
[32.882, 51.334],
|
|
[17.546, 24.651],
|
|
[4.79, 2.606],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[24.407, 176.077],
|
|
[-38.608, 109.454],
|
|
[-146.324, -18.925],
|
|
[-132.091, -32.861],
|
|
[-87.118, -95.525],
|
|
[-18.561, -142.417],
|
|
[20.155, -114.493],
|
|
[95.897, 0.83],
|
|
[132.861, 40.597],
|
|
[147.09, 45.437],
|
|
[155.764, 45.265]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [156.014, 176.327], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "comp_1",
|
|
"layers": [
|
|
{
|
|
"ddd": 0,
|
|
"ind": 1,
|
|
"ty": 4,
|
|
"nm": "f4-2 Outlines 2",
|
|
"parent": 14,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.744]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [278.905, 57.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.303, 36.163, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-15.138, 2.691],
|
|
[-17.092, 1.345],
|
|
[-2.664, -4.524],
|
|
[0.964, -5.382],
|
|
[1.928, -2.605],
|
|
[6.661, -1.431],
|
|
[12.897, -3.865],
|
|
[11.509, -1.174],
|
|
[4.875, 7.359],
|
|
[-1.643, 6.47],
|
|
[-2.325, 1.173]
|
|
],
|
|
"o": [
|
|
[15.165, -2.663],
|
|
[17.093, -1.346],
|
|
[2.665, 4.552],
|
|
[-0.964, 5.411],
|
|
[-1.956, 2.634],
|
|
[-6.661, 1.461],
|
|
[-12.926, 3.864],
|
|
[-11.537, 1.202],
|
|
[-4.876, -7.357],
|
|
[1.616, -6.499],
|
|
[2.325, -1.203]
|
|
],
|
|
"v": [
|
|
[-30.912, -19.755],
|
|
[30.826, -28.716],
|
|
[55.346, -23.248],
|
|
[57.642, -6.527],
|
|
[52.256, 5.468],
|
|
[42.307, 10.793],
|
|
[10.757, 17.751],
|
|
[-27.539, 28.859],
|
|
[-53.164, 18.981],
|
|
[-56.963, -5.841],
|
|
[-49.224, -15.488]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [58.856, 30.312], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 2,
|
|
"ty": 4,
|
|
"nm": "f4-1 Outlines 2",
|
|
"parent": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [8.613]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [100.126, 17.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [13.1, 16.559, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.624, -0.43],
|
|
[0, -0.944],
|
|
[0.623, -1.775],
|
|
[0.907, -1.546],
|
|
[1.219, -0.229],
|
|
[1.701, 0.63],
|
|
[2.381, 1.431],
|
|
[1.077, 2.72],
|
|
[-1.701, 2.004],
|
|
[-3.203, -0.602],
|
|
[-2.41, -1.231]
|
|
],
|
|
"o": [
|
|
[0.623, 0.458],
|
|
[0, 0.974],
|
|
[-0.624, 1.747],
|
|
[-0.935, 1.574],
|
|
[-1.248, 0.258],
|
|
[-1.701, -0.63],
|
|
[-2.382, -1.432],
|
|
[-1.049, -2.72],
|
|
[1.701, -2.004],
|
|
[3.175, 0.601],
|
|
[2.437, 1.203]
|
|
],
|
|
"v": [
|
|
[11.339, -4.051],
|
|
[12.16, -2.219],
|
|
[11.31, 2.018],
|
|
[8.758, 7.344],
|
|
[5.754, 10.264],
|
|
[1.19, 9.291],
|
|
[-4.706, 6.571],
|
|
[-11.112, 0.215],
|
|
[-9.666, -7.773],
|
|
[-2.154, -9.92],
|
|
[7.228, -6.17]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.736, 25.007], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -2.448, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-4.054, 2.062],
|
|
[-7.597, -2.635],
|
|
[-7.966, -3.693],
|
|
[-3.062, -3.55],
|
|
[2.722, -3.865],
|
|
[6.861, -0.859],
|
|
[7.909, 1.661],
|
|
[5.159, 2.634],
|
|
[1.36, 3.865],
|
|
[-1.389, 4.38]
|
|
],
|
|
"o": [
|
|
[4.053, -2.062],
|
|
[7.596, 2.633],
|
|
[7.964, 3.722],
|
|
[3.089, 3.551],
|
|
[-2.749, 3.866],
|
|
[-6.887, 0.83],
|
|
[-7.908, -1.632],
|
|
[-5.187, -2.663],
|
|
[-1.36, -3.893],
|
|
[1.36, -4.352]
|
|
],
|
|
"v": [
|
|
[-26.73, -20.041],
|
|
[-9.383, -19.525],
|
|
[15.704, -7.902],
|
|
[33.166, 1.46],
|
|
[33.25, 13.857],
|
|
[18.424, 21.33],
|
|
[-4.905, 19.469],
|
|
[-25.286, 12.97],
|
|
[-34.895, 3.35],
|
|
[-34.555, -9.562]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.504, 22.41], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 3,
|
|
"ty": 4,
|
|
"nm": "f3-3 Outlines 2",
|
|
"parent": 14,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [2.436]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [266.772, 104.803, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.092, 29.075, 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": [
|
|
[-12.132, 1.718],
|
|
[-10.828, 0.858],
|
|
[-2.437, -1.174],
|
|
[-1.956, -3.751],
|
|
[0.028, -5.611],
|
|
[2.211, -4.381],
|
|
[6.492, -1.603],
|
|
[10.83, -1.03],
|
|
[7.88, 0.601],
|
|
[3.345, 4.352],
|
|
[0.17, 6.099],
|
|
[-3.601, 3.922]
|
|
],
|
|
"o": [
|
|
[12.161, -1.747],
|
|
[10.828, -0.86],
|
|
[2.409, 1.202],
|
|
[1.927, 3.721],
|
|
[-0.029, 5.612],
|
|
[-2.211, 4.38],
|
|
[-6.463, 1.632],
|
|
[-10.828, 1.031],
|
|
[-7.881, -0.63],
|
|
[-3.344, -4.352],
|
|
[-0.198, -6.098],
|
|
[3.628, -3.923]
|
|
],
|
|
"v": [
|
|
[-20.736, -21.545],
|
|
[21.557, -25.782],
|
|
[37.176, -25.523],
|
|
[44.065, -18.108],
|
|
[47.325, -3.766],
|
|
[43.667, 12.468],
|
|
[31.96, 20.942],
|
|
[4.747, 24.32],
|
|
[-25.696, 26.096],
|
|
[-41.004, 18.566],
|
|
[-47.155, 1.96],
|
|
[-41.485, -14.072]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [47.603, 26.948], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 4,
|
|
"ty": 4,
|
|
"nm": "f3-2 Outlines 2",
|
|
"parent": 3,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [3.473]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [69.563, 23.704, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.979, 25.602, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, 0.63],
|
|
[-14.174, -1.003],
|
|
[-10.828, -3.722],
|
|
[-0.085, -6.643],
|
|
[4.252, -4.267],
|
|
[10.885, -0.057],
|
|
[10.828, -0.487],
|
|
[4.195, -0.43],
|
|
[1.473, -0.114],
|
|
[2.239, 0.916],
|
|
[2.637, 4.381],
|
|
[-0.538, 5.927],
|
|
[-2.041, 3.321],
|
|
[-1.616, 1.174],
|
|
[-1.643, 0.372]
|
|
],
|
|
"o": [
|
|
[5.612, -0.63],
|
|
[14.144, 0.972],
|
|
[10.8, 3.722],
|
|
[0.056, 6.642],
|
|
[-4.224, 4.266],
|
|
[-10.886, 0.058],
|
|
[-10.828, 0.486],
|
|
[-4.196, 0.429],
|
|
[-1.503, 0.086],
|
|
[-2.211, -0.916],
|
|
[-2.636, -4.352],
|
|
[0.539, -5.926],
|
|
[2.069, -3.292],
|
|
[1.617, -1.145],
|
|
[1.645, -0.372]
|
|
],
|
|
"v": [
|
|
[-30.968, -23.692],
|
|
[-1.799, -24.349],
|
|
[42.081, -16.648],
|
|
[55.631, -1.818],
|
|
[48.883, 17.938],
|
|
[27.822, 21.973],
|
|
[-9.709, 22.947],
|
|
[-30.544, 24.436],
|
|
[-38.792, 25.266],
|
|
[-42.93, 24.292],
|
|
[-51.804, 17.278],
|
|
[-55.148, -0.044],
|
|
[-50.243, -14.101],
|
|
[-44.773, -20.37],
|
|
[-40.096, -22.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.936, 25.603], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 5,
|
|
"ty": 4,
|
|
"nm": "f3-1 Outlines 2",
|
|
"parent": 4,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [11.44]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [96.219, 26.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.926, 18.333, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.454, -0.687],
|
|
[0.34, -1.116],
|
|
[1.247, -1.489],
|
|
[1.503, -1.204],
|
|
[1.305, 0.2],
|
|
[1.446, 1.26],
|
|
[1.843, 2.319],
|
|
[0.057, 3.092],
|
|
[-2.409, 1.317],
|
|
[-2.92, -1.775],
|
|
[-1.9, -1.919]
|
|
],
|
|
"o": [
|
|
[0.453, 0.659],
|
|
[-0.312, 1.118],
|
|
[-1.276, 1.518],
|
|
[-1.473, 1.173],
|
|
[-1.304, -0.201],
|
|
[-1.446, -1.259],
|
|
[-1.814, -2.29],
|
|
[-0.056, -3.093],
|
|
[2.41, -1.345],
|
|
[2.92, 1.774],
|
|
[1.927, 1.946]
|
|
],
|
|
"v": [
|
|
[11.538, -0.358],
|
|
[11.736, 2.247],
|
|
[9.411, 6.256],
|
|
[4.904, 10.58],
|
|
[0.878, 12.326],
|
|
[-3.232, 9.663],
|
|
[-8.05, 4.767],
|
|
[-12.019, -3.85],
|
|
[-7.711, -11.18],
|
|
[0.482, -10.521],
|
|
[8.335, -3.506]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.189, 35.657], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0.742, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.216, 1.632],
|
|
[-5.584, -4.123],
|
|
[-4.393, -4.266],
|
|
[-2.834, -2.605],
|
|
[-1.049, -3.264],
|
|
[2.409, -3.15],
|
|
[5.131, -0.43],
|
|
[5.782, 2.032],
|
|
[5.755, 3.751],
|
|
[2.551, 4.753],
|
|
[-2.551, 5.641]
|
|
],
|
|
"o": [
|
|
[5.187, -1.604],
|
|
[5.555, 4.123],
|
|
[4.394, 4.266],
|
|
[2.835, 2.606],
|
|
[1.049, 3.293],
|
|
[-2.381, 3.149],
|
|
[-5.131, 0.4],
|
|
[-5.783, -2.033],
|
|
[-5.754, -3.779],
|
|
[-2.551, -4.782],
|
|
[2.579, -5.611]
|
|
],
|
|
"v": [
|
|
[-17.15, -26.053],
|
|
[-0.595, -20.642],
|
|
[14.711, -6.928],
|
|
[25.398, 3.15],
|
|
[31.521, 10.966],
|
|
[30.019, 21.96],
|
|
[17.886, 27.257],
|
|
[1.361, 24.709],
|
|
[-16.101, 15.747],
|
|
[-30.019, 2.835],
|
|
[-29.537, -12.683]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [32.82, 27.907], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 6,
|
|
"ty": 4,
|
|
"nm": "f2-3 Outlines 2",
|
|
"parent": 14,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.005]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [276.475, 150.645, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.657, 25.16, 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.082, -1.86],
|
|
[-3.033, -4.41],
|
|
[-0.312, -4.953],
|
|
[1.984, -4.208],
|
|
[4.081, -2.09],
|
|
[7.994, 0.086],
|
|
[10.631, 0.201],
|
|
[7.54, 4.036],
|
|
[1.559, 7.988],
|
|
[-4.394, 5.469],
|
|
[-11.905, 0.716],
|
|
[-10.091, -0.945]
|
|
],
|
|
"o": [
|
|
[4.054, 1.833],
|
|
[3.033, 4.409],
|
|
[0.312, 4.981],
|
|
[-1.984, 4.238],
|
|
[-4.082, 2.061],
|
|
[-7.965, -0.057],
|
|
[-10.6, -0.172],
|
|
[-7.569, -4.065],
|
|
[-1.588, -7.988],
|
|
[4.422, -5.439],
|
|
[11.877, -0.716],
|
|
[10.063, 0.945]
|
|
],
|
|
"v": [
|
|
[34.484, -22.432],
|
|
[46.19, -12.869],
|
|
[51.009, 1.99],
|
|
[48.487, 15.589],
|
|
[39.274, 25.925],
|
|
[22.18, 28.015],
|
|
[-7.357, 27.471],
|
|
[-35.843, 23.148],
|
|
[-49.733, 3.078],
|
|
[-45.254, -18.309],
|
|
[-21.784, -27.385],
|
|
[16.795, -25.61]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.571, 28.351], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 7,
|
|
"ty": 4,
|
|
"nm": "f2-2 Outlines 2",
|
|
"parent": 6,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.636]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [73.006, 28.973, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.88, 25.852, 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.211, 5.411],
|
|
[-2.523, 1.517],
|
|
[-0.964, 0.056],
|
|
[-5.159, -0.258],
|
|
[-12.84, -2.434],
|
|
[-9.722, -3.293],
|
|
[-3.005, -4.667],
|
|
[0.596, -6.413],
|
|
[2.182, -3.35],
|
|
[12.189, 1.146],
|
|
[12.756, 1.746],
|
|
[2.635, 0.343],
|
|
[4.082, 3.264],
|
|
[2.013, 6.957]
|
|
],
|
|
"o": [
|
|
[2.239, -5.439],
|
|
[2.494, -1.518],
|
|
[0.964, -0.058],
|
|
[5.131, 0.258],
|
|
[12.87, 2.405],
|
|
[9.751, 3.321],
|
|
[3.033, 4.667],
|
|
[-0.566, 6.384],
|
|
[-2.211, 3.379],
|
|
[-12.16, -1.145],
|
|
[-12.784, -1.719],
|
|
[-2.609, -0.315],
|
|
[-4.054, -3.264],
|
|
[-2.013, -6.957]
|
|
],
|
|
"v": [
|
|
[-52.455, -19.297],
|
|
[-44.036, -29.117],
|
|
[-39.218, -30.863],
|
|
[-32.556, -30.577],
|
|
[-4.89, -27.457],
|
|
[33.661, -17.321],
|
|
[49.904, -7.187],
|
|
[54.864, 11.051],
|
|
[48.43, 26.454],
|
|
[33.35, 29.775],
|
|
[-15.208, 23.506],
|
|
[-32.527, 21.387],
|
|
[-42.562, 17.207],
|
|
[-53.447, 1.059]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.71, 31.171], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 8,
|
|
"ty": 4,
|
|
"nm": "f2-1 Outlines 2",
|
|
"parent": 7,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [10.502]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [89.462, 33.565, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.009, 18.362, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.396, -0.772],
|
|
[0.511, -1.116],
|
|
[1.588, -1.46],
|
|
[1.815, -1.116],
|
|
[1.077, 0.115],
|
|
[1.332, 1.546],
|
|
[1.899, 3.406],
|
|
[-0.425, 3.807],
|
|
[-2.664, 0.774],
|
|
[-2.835, -2.806],
|
|
[-1.898, -2.376]
|
|
],
|
|
"o": [
|
|
[0.369, 0.773],
|
|
[-0.51, 1.118],
|
|
[-1.587, 1.488],
|
|
[-1.786, 1.088],
|
|
[-1.105, -0.143],
|
|
[-1.36, -1.517],
|
|
[-1.871, -3.379],
|
|
[0.425, -3.837],
|
|
[2.693, -0.773],
|
|
[2.835, 2.777],
|
|
[1.9, 2.405]
|
|
],
|
|
"v": [
|
|
[12.43, 2.404],
|
|
[12.26, 5.181],
|
|
[9.17, 9.104],
|
|
[3.585, 13.284],
|
|
[-0.694, 14.887],
|
|
[-3.897, 12.31],
|
|
[-9.028, 5.211],
|
|
[-12.374, -6.585],
|
|
[-6.562, -14.229],
|
|
[1.602, -10.708],
|
|
[9.368, -1.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.711, 44.741], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -1.787, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-6.406, -6.471],
|
|
[-6.01, -6.786],
|
|
[-1.843, -4.294],
|
|
[3.771, -3.522],
|
|
[7.511, 0.858],
|
|
[7.569, 5.239],
|
|
[4.422, 4.552],
|
|
[0.879, 4.408],
|
|
[-1.389, 4.897],
|
|
[-3.657, 2.233],
|
|
[-4.876, -1.116]
|
|
],
|
|
"o": [
|
|
[6.435, 6.47],
|
|
[6.009, 6.785],
|
|
[1.842, 4.294],
|
|
[-3.741, 3.492],
|
|
[-7.512, -0.831],
|
|
[-7.596, -5.241],
|
|
[-4.421, -4.552],
|
|
[-0.879, -4.438],
|
|
[1.388, -4.895],
|
|
[3.628, -2.205],
|
|
[4.847, 1.146]
|
|
],
|
|
"v": [
|
|
[2.226, -22.16],
|
|
[22.409, 0.859],
|
|
[34.597, 15.776],
|
|
[32.045, 28.345],
|
|
[13.904, 33.211],
|
|
[-9.369, 23.191],
|
|
[-28.418, 6.871],
|
|
[-35.56, -4.667],
|
|
[-34.965, -20.299],
|
|
[-27.255, -30.921],
|
|
[-14.159, -32.953]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.689, 34.32], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 9,
|
|
"ty": 4,
|
|
"nm": "f1-3 Outlines 2",
|
|
"parent": 14,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.218]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [240.804, 187.743, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.475, 23.004, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, -4.381],
|
|
[-2.012, -6.327],
|
|
[2.494, -5.727],
|
|
[4.393, -1.946],
|
|
[3.856, 0.544],
|
|
[9.864, 1.26],
|
|
[11.707, 3.006],
|
|
[4.648, 5.926],
|
|
[-1.248, 7.358],
|
|
[-6.01, 4.466],
|
|
[-11.196, -0.773],
|
|
[-10.885, -3.379]
|
|
],
|
|
"o": [
|
|
[5.612, 4.38],
|
|
[2.013, 6.357],
|
|
[-2.467, 5.755],
|
|
[-4.366, 1.947],
|
|
[-3.882, -0.515],
|
|
[-9.894, -1.26],
|
|
[-11.707, -2.978],
|
|
[-4.678, -5.955],
|
|
[1.247, -7.358],
|
|
[6.009, -4.466],
|
|
[11.197, 0.744],
|
|
[10.884, 3.378]
|
|
],
|
|
"v": [
|
|
[42.18, -15.074],
|
|
[53.915, 1.245],
|
|
[53.349, 20.4],
|
|
[41.614, 32.51],
|
|
[29.536, 33.426],
|
|
[11.906, 31.05],
|
|
[-25.568, 24.895],
|
|
[-49.436, 11.896],
|
|
[-54.679, -9.233],
|
|
[-43.142, -27.928],
|
|
[-18.198, -33.683],
|
|
[18.568, -25.981]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.177, 34.706], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 10,
|
|
"ty": 4,
|
|
"nm": "f1-2 Outlines 2",
|
|
"parent": 9,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.964]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [82.072, 35.466, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.037, 21.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": [
|
|
[-11.565, -3.693],
|
|
[-12.217, 0],
|
|
[-4.025, 5.497],
|
|
[3.77, 5.841],
|
|
[13.152, 6.67],
|
|
[9.638, 3.78],
|
|
[2.24, 0.2],
|
|
[4.508, -2.005],
|
|
[2.353, -7.502],
|
|
[-2.721, -6.727],
|
|
[-5.046, -2.004]
|
|
],
|
|
"o": [
|
|
[11.565, 3.693],
|
|
[12.246, 0.028],
|
|
[4.054, -5.469],
|
|
[-3.77, -5.811],
|
|
[-13.125, -6.701],
|
|
[-9.666, -3.778],
|
|
[-2.239, -0.201],
|
|
[-4.507, 2.032],
|
|
[-2.324, 7.529],
|
|
[2.721, 6.729],
|
|
[5.046, 2.004]
|
|
],
|
|
"v": [
|
|
[-15.491, 25.009],
|
|
[25.497, 34.4],
|
|
[49.053, 23.263],
|
|
[50.188, 6.656],
|
|
[24.932, -12.181],
|
|
[-15.719, -29.676],
|
|
[-29.042, -34.227],
|
|
[-38.821, -32.28],
|
|
[-51.634, -18.852],
|
|
[-49.961, 6.542],
|
|
[-37.999, 17.622]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.207, 34.678], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 11,
|
|
"ty": 4,
|
|
"nm": "f1 Outlines 2",
|
|
"parent": 10,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [5.714]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [83.408, 49.621, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.41, 18.643, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.113, -0.858],
|
|
[0.822, -0.888],
|
|
[1.984, -0.887],
|
|
[2.041, -0.487],
|
|
[1.559, 1.804],
|
|
[1.162, 4.265],
|
|
[-1.191, 3.292],
|
|
[-2.665, 0.688],
|
|
[-2.211, -3.35],
|
|
[-1.388, -3.579]
|
|
],
|
|
"o": [
|
|
[0.142, 0.859],
|
|
[-0.822, 0.916],
|
|
[-1.956, 0.888],
|
|
[-2.069, 0.487],
|
|
[-1.559, -1.804],
|
|
[-1.19, -4.267],
|
|
[1.22, -3.321],
|
|
[2.665, -0.687],
|
|
[2.211, 3.349],
|
|
[1.361, 3.578]
|
|
],
|
|
"v": [
|
|
[11.481, 7.028],
|
|
[10.488, 9.605],
|
|
[6.321, 12.382],
|
|
[-0.227, 14.587],
|
|
[-5.386, 13.441],
|
|
[-9.695, 3.622],
|
|
[-10.432, -8.718],
|
|
[-3.43, -14.559],
|
|
[3.628, -11.467],
|
|
[9.467, 1.732]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [49.854, 54.325], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.499, -7.701],
|
|
[-6.776, -3.521],
|
|
[-5.414, 1.431],
|
|
[-0.113, 5.383],
|
|
[3.231, 8.217],
|
|
[3.487, 7.672],
|
|
[5.046, 3.264],
|
|
[5.612, -3.321],
|
|
[2.579, -5.182],
|
|
[-2.211, -6.155]
|
|
],
|
|
"o": [
|
|
[5.471, 7.702],
|
|
[6.802, 3.522],
|
|
[5.414, -1.431],
|
|
[0.113, -5.353],
|
|
[-3.232, -8.189],
|
|
[-3.515, -7.645],
|
|
[-5.073, -3.292],
|
|
[-5.613, 3.322],
|
|
[-2.608, 5.21],
|
|
[2.212, 6.156]
|
|
],
|
|
"v": [
|
|
[-16.554, 17.321],
|
|
[2.212, 34.986],
|
|
[21.515, 37.706],
|
|
[30.813, 27.399],
|
|
[24.123, 6.615],
|
|
[14.485, -18.408],
|
|
[1.842, -35.445],
|
|
[-14.881, -35.817],
|
|
[-28.261, -20.269],
|
|
[-28.715, -5.525]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [31.176, 39.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 12,
|
|
"ty": 4,
|
|
"nm": "big 2 Outlines 2",
|
|
"parent": 14,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [-3.013]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [155.461, 224.739, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [60.499, 33.03, 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.26, -9.162],
|
|
[-4.62, -8.905],
|
|
[-3.827, -6.413],
|
|
[-0.567, -4.953],
|
|
[2.211, -4.439],
|
|
[5.527, -1.804],
|
|
[5.839, 1.116],
|
|
[9.751, 8.389],
|
|
[11.254, 10.994],
|
|
[7.767, 8.904],
|
|
[4.506, 6.557],
|
|
[0.596, 4.553],
|
|
[-1.673, 7.243],
|
|
[-9.581, 7.157],
|
|
[-13.152, -2.119],
|
|
[-7.342, -8.647],
|
|
[-3.374, -8.445]
|
|
],
|
|
"o": [
|
|
[3.231, 9.133],
|
|
[4.621, 8.932],
|
|
[3.826, 6.413],
|
|
[0.595, 4.981],
|
|
[-2.211, 4.409],
|
|
[-5.499, 1.804],
|
|
[-5.839, -1.117],
|
|
[-9.751, -8.389],
|
|
[-11.282, -10.994],
|
|
[-7.795, -8.875],
|
|
[-4.479, -6.528],
|
|
[-0.566, -4.523],
|
|
[1.672, -7.272],
|
|
[9.61, -7.129],
|
|
[13.125, 2.09],
|
|
[7.341, 8.674],
|
|
[3.373, 8.446]
|
|
],
|
|
"v": [
|
|
[38.906, -9.748],
|
|
[50.329, 17.394],
|
|
[64.446, 41.528],
|
|
[70.824, 56.932],
|
|
[68.386, 72.221],
|
|
[57.048, 81.41],
|
|
[38.339, 82.728],
|
|
[18.468, 70.331],
|
|
[-17.731, 37.033],
|
|
[-44.121, 9.062],
|
|
[-64.615, -16.047],
|
|
[-70.427, -30.506],
|
|
[-69.746, -47.97],
|
|
[-54.695, -71.246],
|
|
[-16.512, -81.725],
|
|
[14.84, -61.311],
|
|
[29.353, -36.547]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [71.669, 84.094], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 13,
|
|
"ty": 4,
|
|
"nm": "big Outlines 2",
|
|
"parent": 12,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [-7.989]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [112.067, 139.444, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [20.422, 21.257, 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.021, 2.233],
|
|
[-3.147, 1.631],
|
|
[-3.543, 0.029],
|
|
[-2.154, -0.23],
|
|
[-0.879, -0.515],
|
|
[-0.085, -1.66],
|
|
[0.455, -2.433],
|
|
[0.651, -1.203],
|
|
[1.644, 0.114],
|
|
[4.678, 0.687],
|
|
[3.373, 0.572],
|
|
[0.057, 0.773]
|
|
],
|
|
"o": [
|
|
[1.021, -2.233],
|
|
[3.146, -1.661],
|
|
[3.544, 0],
|
|
[2.155, 0.2],
|
|
[0.879, 0.516],
|
|
[0.085, 1.66],
|
|
[-0.453, 2.434],
|
|
[-0.681, 1.203],
|
|
[-1.616, -0.144],
|
|
[-4.677, -0.658],
|
|
[-3.346, -0.573],
|
|
[-0.028, -0.773]
|
|
],
|
|
"v": [
|
|
[-15.208, -0.272],
|
|
[-9.028, -7.086],
|
|
[1.97, -9.119],
|
|
[10.445, -8.603],
|
|
[15.038, -7.745],
|
|
[16.2, -4.681],
|
|
[15.774, 1.846],
|
|
[13.791, 7.916],
|
|
[10.984, 8.976],
|
|
[1.885, 7.945],
|
|
[-12.741, 5.569],
|
|
[-16.257, 4.223]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [72.43, 49.88], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0.57, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-8.362, -1.947],
|
|
[-9.354, -4.008],
|
|
[-5.187, -4.809],
|
|
[-1.304, -4.953],
|
|
[2.296, -3.436],
|
|
[6.378, -0.086],
|
|
[10.8, 1.69],
|
|
[9.723, 1.775],
|
|
[4.337, 4.495],
|
|
[0.057, 6.413],
|
|
[-3.856, 4.037],
|
|
[-5.499, 0.86]
|
|
],
|
|
"o": [
|
|
[8.334, 1.947],
|
|
[9.383, 4.037],
|
|
[5.216, 4.839],
|
|
[1.304, 4.981],
|
|
[-2.267, 3.465],
|
|
[-6.378, 0.086],
|
|
[-10.8, -1.717],
|
|
[-9.723, -1.804],
|
|
[-4.337, -4.495],
|
|
[-0.085, -6.442],
|
|
[3.854, -4.037],
|
|
[5.499, -0.858]
|
|
],
|
|
"v": [
|
|
[-10.941, -27.228],
|
|
[18.227, -17.723],
|
|
[40.081, -4.41],
|
|
[49.719, 10.564],
|
|
[48.217, 23.734],
|
|
[35.518, 29.432],
|
|
[9.609, 25.882],
|
|
[-23.81, 20.958],
|
|
[-44.448, 12.482],
|
|
[-50.939, -5.268],
|
|
[-45.184, -21.731],
|
|
[-30.047, -28.66]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.273, 29.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 14,
|
|
"ty": 4,
|
|
"nm": "gesture Outlines 2",
|
|
"parent": 15,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [4.953]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [247.261, 292.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [95.522, 91.304, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-13.096, -15.402],
|
|
[-8.391, -8.361],
|
|
[-5.159, -2.462],
|
|
[-8.673, -0.172],
|
|
[-7.286, 2.347],
|
|
[-3.856, 3.607],
|
|
[-1.162, 2.978],
|
|
[0.599, 3.58],
|
|
[-1.021, 4.638],
|
|
[-7.116, 4.896],
|
|
[-7.683, 2.462],
|
|
[-3.43, -0.372],
|
|
[-2.749, -0.258],
|
|
[-4.082, 2.348],
|
|
[-3.459, 5.898],
|
|
[-1.021, 28.774],
|
|
[-0.057, 26.139],
|
|
[0.566, 1.03],
|
|
[0.709, 0.2],
|
|
[5.5, 0.429],
|
|
[12.529, 1.173],
|
|
[14.797, 1.718],
|
|
[13.947, 3.264],
|
|
[8.73, 3.694],
|
|
[3.203, 1.203],
|
|
[1.786, -1.288],
|
|
[18.737, -19.497],
|
|
[18.766, -19.297],
|
|
[-0.397, -2.377],
|
|
[-8.306, -11.853],
|
|
[-13.096, -18.58]
|
|
],
|
|
"o": [
|
|
[13.096, 15.403],
|
|
[8.418, 8.36],
|
|
[5.131, 2.433],
|
|
[8.674, 0.2],
|
|
[7.313, -2.348],
|
|
[3.854, -3.608],
|
|
[1.134, -3.007],
|
|
[-0.52, -3.108],
|
|
[1.02, -4.638],
|
|
[7.115, -4.895],
|
|
[7.681, -2.434],
|
|
[3.401, 0.372],
|
|
[2.779, 0.258],
|
|
[4.111, -2.348],
|
|
[3.486, -5.897],
|
|
[1.049, -28.801],
|
|
[0.057, -26.168],
|
|
[-0.568, -1.031],
|
|
[-0.737, -0.201],
|
|
[-5.528, -0.401],
|
|
[-12.529, -1.174],
|
|
[-14.797, -1.747],
|
|
[-13.917, -3.264],
|
|
[-8.73, -3.692],
|
|
[-3.203, -1.173],
|
|
[-1.814, 1.317],
|
|
[-18.737, 19.526],
|
|
[-18.765, 19.297],
|
|
[0.396, 2.347],
|
|
[8.305, 11.853],
|
|
[13.068, 18.553]
|
|
],
|
|
"v": [
|
|
[-64.148, 92.876],
|
|
[-28.544, 131.013],
|
|
[-12.246, 144.183],
|
|
[9.127, 149.365],
|
|
[34.866, 145.013],
|
|
[50.854, 136.51],
|
|
[57.736, 129.057],
|
|
[57.538, 119.97],
|
|
[57.911, 105.303],
|
|
[68.995, 91.33],
|
|
[95.074, 78.59],
|
|
[110.24, 76.986],
|
|
[119.167, 77.874],
|
|
[128.833, 76.042],
|
|
[141.818, 62.9],
|
|
[147.854, 21.357],
|
|
[149.47, -84.317],
|
|
[148.536, -113.09],
|
|
[146.522, -114.807],
|
|
[139.578, -115.351],
|
|
[111.232, -117.814],
|
|
[69.136, -122.166],
|
|
[25.54, -129.151],
|
|
[-10.148, -140.661],
|
|
[-26.56, -148.392],
|
|
[-33.534, -147.848],
|
|
[-55.729, -124.914],
|
|
[-129.062, -49.245],
|
|
[-149.13, -25.852],
|
|
[-137.905, -8.646],
|
|
[-102.416, 42.486]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [149.777, 149.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 15,
|
|
"ty": 4,
|
|
"nm": "arm Outlines 3",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [-4.841]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [1542.272, 728.128, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [64.524, 72.071, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [188, 188, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[30.738, 27.491],
|
|
[-3.778, 6.65],
|
|
[-53.959, 29.452],
|
|
[-4.455, -1.568],
|
|
[-41.565, -17.762],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-26.083, -26.912],
|
|
[-5.703, -5.1],
|
|
[29.565, -52.04],
|
|
[4.145, -2.262],
|
|
[19.723, 6.941],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-12.147, 131.985],
|
|
[-126.959, 24.535],
|
|
[-130.219, 4.622],
|
|
[4.765, -129.365],
|
|
[17.799, -130.417],
|
|
[124.702, -7.623],
|
|
[133.996, -7.828]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [180.868, 214.797], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 2.683, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[19.587, 21.644],
|
|
[41.754, 51.134],
|
|
[0, 0],
|
|
[-25.313, 25.566],
|
|
[-28.828, 13.8],
|
|
[-12.218, -19.211],
|
|
[-17.547, -24.622],
|
|
[-9.61, -5.239],
|
|
[-4.62, -0.916],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-22.195, -22.761],
|
|
[-36.029, -39.939],
|
|
[0, 0],
|
|
[13.861, -33.955],
|
|
[22.365, -22.59],
|
|
[13.663, 21.644],
|
|
[32.882, 51.334],
|
|
[17.546, 24.651],
|
|
[4.79, 2.606],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[24.407, 176.077],
|
|
[-38.608, 109.454],
|
|
[-146.324, -18.925],
|
|
[-132.091, -32.861],
|
|
[-87.118, -95.525],
|
|
[-18.561, -142.417],
|
|
[20.155, -114.493],
|
|
[95.897, 0.83],
|
|
[132.861, 40.597],
|
|
[147.09, 45.437],
|
|
[155.764, 45.265]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.788235294118, 0.149019607843, 0.078431372549, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [156.014, 176.327], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 480.000019550801,
|
|
"st": 0,
|
|
"bm": 0
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"layers": [
|
|
{
|
|
"ddd": 0,
|
|
"ind": 1,
|
|
"ty": 4,
|
|
"nm": "f4-2 Outlines",
|
|
"parent": 20,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.744]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.744]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [278.905, 57.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.303, 36.163, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-15.138, 2.691],
|
|
[-17.092, 1.345],
|
|
[-2.664, -4.524],
|
|
[0.964, -5.382],
|
|
[1.928, -2.605],
|
|
[6.661, -1.431],
|
|
[12.897, -3.865],
|
|
[11.509, -1.174],
|
|
[4.875, 7.359],
|
|
[-1.643, 6.47],
|
|
[-2.325, 1.173]
|
|
],
|
|
"o": [
|
|
[15.165, -2.663],
|
|
[17.093, -1.346],
|
|
[2.665, 4.552],
|
|
[-0.964, 5.411],
|
|
[-1.956, 2.634],
|
|
[-6.661, 1.461],
|
|
[-12.926, 3.864],
|
|
[-11.537, 1.202],
|
|
[-4.876, -7.357],
|
|
[1.616, -6.499],
|
|
[2.325, -1.203]
|
|
],
|
|
"v": [
|
|
[-30.912, -19.755],
|
|
[30.826, -28.716],
|
|
[55.346, -23.248],
|
|
[57.642, -6.527],
|
|
[52.256, 5.468],
|
|
[42.307, 10.793],
|
|
[10.757, 17.751],
|
|
[-27.539, 28.859],
|
|
[-53.164, 18.981],
|
|
[-56.963, -5.841],
|
|
[-49.224, -15.488]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [58.856, 30.312], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 2,
|
|
"ty": 4,
|
|
"nm": "f4-1 Outlines",
|
|
"parent": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [8.613]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [8.613]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [100.126, 17.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [13.1, 16.559, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.624, -0.43],
|
|
[0, -0.944],
|
|
[0.623, -1.775],
|
|
[0.907, -1.546],
|
|
[1.219, -0.229],
|
|
[1.701, 0.63],
|
|
[2.381, 1.431],
|
|
[1.077, 2.72],
|
|
[-1.701, 2.004],
|
|
[-3.203, -0.602],
|
|
[-2.41, -1.231]
|
|
],
|
|
"o": [
|
|
[0.623, 0.458],
|
|
[0, 0.974],
|
|
[-0.624, 1.747],
|
|
[-0.935, 1.574],
|
|
[-1.248, 0.258],
|
|
[-1.701, -0.63],
|
|
[-2.382, -1.432],
|
|
[-1.049, -2.72],
|
|
[1.701, -2.004],
|
|
[3.175, 0.601],
|
|
[2.437, 1.203]
|
|
],
|
|
"v": [
|
|
[11.339, -4.051],
|
|
[12.16, -2.219],
|
|
[11.31, 2.018],
|
|
[8.758, 7.344],
|
|
[5.754, 10.264],
|
|
[1.19, 9.291],
|
|
[-4.706, 6.571],
|
|
[-11.112, 0.215],
|
|
[-9.666, -7.773],
|
|
[-2.154, -9.92],
|
|
[7.228, -6.17]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.736, 25.007], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -2.448, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-4.054, 2.062],
|
|
[-7.597, -2.635],
|
|
[-7.966, -3.693],
|
|
[-3.062, -3.55],
|
|
[2.722, -3.865],
|
|
[6.861, -0.859],
|
|
[7.909, 1.661],
|
|
[5.159, 2.634],
|
|
[1.36, 3.865],
|
|
[-1.389, 4.38]
|
|
],
|
|
"o": [
|
|
[4.053, -2.062],
|
|
[7.596, 2.633],
|
|
[7.964, 3.722],
|
|
[3.089, 3.551],
|
|
[-2.749, 3.866],
|
|
[-6.887, 0.83],
|
|
[-7.908, -1.632],
|
|
[-5.187, -2.663],
|
|
[-1.36, -3.893],
|
|
[1.36, -4.352]
|
|
],
|
|
"v": [
|
|
[-26.73, -20.041],
|
|
[-9.383, -19.525],
|
|
[15.704, -7.902],
|
|
[33.166, 1.46],
|
|
[33.25, 13.857],
|
|
[18.424, 21.33],
|
|
[-4.905, 19.469],
|
|
[-25.286, 12.97],
|
|
[-34.895, 3.35],
|
|
[-34.555, -9.562]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.504, 22.41], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 3,
|
|
"ty": 4,
|
|
"nm": "f3-3 Outlines",
|
|
"parent": 20,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [2.436]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [2.436]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [266.772, 104.803, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.092, 29.075, 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": [
|
|
[-12.132, 1.718],
|
|
[-10.828, 0.858],
|
|
[-2.437, -1.174],
|
|
[-1.956, -3.751],
|
|
[0.028, -5.611],
|
|
[2.211, -4.381],
|
|
[6.492, -1.603],
|
|
[10.83, -1.03],
|
|
[7.88, 0.601],
|
|
[3.345, 4.352],
|
|
[0.17, 6.099],
|
|
[-3.601, 3.922]
|
|
],
|
|
"o": [
|
|
[12.161, -1.747],
|
|
[10.828, -0.86],
|
|
[2.409, 1.202],
|
|
[1.927, 3.721],
|
|
[-0.029, 5.612],
|
|
[-2.211, 4.38],
|
|
[-6.463, 1.632],
|
|
[-10.828, 1.031],
|
|
[-7.881, -0.63],
|
|
[-3.344, -4.352],
|
|
[-0.198, -6.098],
|
|
[3.628, -3.923]
|
|
],
|
|
"v": [
|
|
[-20.736, -21.545],
|
|
[21.557, -25.782],
|
|
[37.176, -25.523],
|
|
[44.065, -18.108],
|
|
[47.325, -3.766],
|
|
[43.667, 12.468],
|
|
[31.96, 20.942],
|
|
[4.747, 24.32],
|
|
[-25.696, 26.096],
|
|
[-41.004, 18.566],
|
|
[-47.155, 1.96],
|
|
[-41.485, -14.072]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [47.603, 26.948], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 4,
|
|
"ty": 4,
|
|
"nm": "f3-2 Outlines",
|
|
"parent": 3,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [3.473]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [3.473]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [69.563, 23.704, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [14.979, 25.602, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, 0.63],
|
|
[-14.174, -1.003],
|
|
[-10.828, -3.722],
|
|
[-0.085, -6.643],
|
|
[4.252, -4.267],
|
|
[10.885, -0.057],
|
|
[10.828, -0.487],
|
|
[4.195, -0.43],
|
|
[1.473, -0.114],
|
|
[2.239, 0.916],
|
|
[2.637, 4.381],
|
|
[-0.538, 5.927],
|
|
[-2.041, 3.321],
|
|
[-1.616, 1.174],
|
|
[-1.643, 0.372]
|
|
],
|
|
"o": [
|
|
[5.612, -0.63],
|
|
[14.144, 0.972],
|
|
[10.8, 3.722],
|
|
[0.056, 6.642],
|
|
[-4.224, 4.266],
|
|
[-10.886, 0.058],
|
|
[-10.828, 0.486],
|
|
[-4.196, 0.429],
|
|
[-1.503, 0.086],
|
|
[-2.211, -0.916],
|
|
[-2.636, -4.352],
|
|
[0.539, -5.926],
|
|
[2.069, -3.292],
|
|
[1.617, -1.145],
|
|
[1.645, -0.372]
|
|
],
|
|
"v": [
|
|
[-30.968, -23.692],
|
|
[-1.799, -24.349],
|
|
[42.081, -16.648],
|
|
[55.631, -1.818],
|
|
[48.883, 17.938],
|
|
[27.822, 21.973],
|
|
[-9.709, 22.947],
|
|
[-30.544, 24.436],
|
|
[-38.792, 25.266],
|
|
[-42.93, 24.292],
|
|
[-51.804, 17.278],
|
|
[-55.148, -0.044],
|
|
[-50.243, -14.101],
|
|
[-44.773, -20.37],
|
|
[-40.096, -22.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.936, 25.603], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 5,
|
|
"ty": 4,
|
|
"nm": "f3-1 Outlines",
|
|
"parent": 4,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [11.44]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [11.44]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [96.219, 26.492, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.926, 18.333, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.454, -0.687],
|
|
[0.34, -1.116],
|
|
[1.247, -1.489],
|
|
[1.503, -1.204],
|
|
[1.305, 0.2],
|
|
[1.446, 1.26],
|
|
[1.843, 2.319],
|
|
[0.057, 3.092],
|
|
[-2.409, 1.317],
|
|
[-2.92, -1.775],
|
|
[-1.9, -1.919]
|
|
],
|
|
"o": [
|
|
[0.453, 0.659],
|
|
[-0.312, 1.118],
|
|
[-1.276, 1.518],
|
|
[-1.473, 1.173],
|
|
[-1.304, -0.201],
|
|
[-1.446, -1.259],
|
|
[-1.814, -2.29],
|
|
[-0.056, -3.093],
|
|
[2.41, -1.345],
|
|
[2.92, 1.774],
|
|
[1.927, 1.946]
|
|
],
|
|
"v": [
|
|
[11.538, -0.358],
|
|
[11.736, 2.247],
|
|
[9.411, 6.256],
|
|
[4.904, 10.58],
|
|
[0.878, 12.326],
|
|
[-3.232, 9.663],
|
|
[-8.05, 4.767],
|
|
[-12.019, -3.85],
|
|
[-7.711, -11.18],
|
|
[0.482, -10.521],
|
|
[8.335, -3.506]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.189, 35.657], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0.742, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.216, 1.632],
|
|
[-5.584, -4.123],
|
|
[-4.393, -4.266],
|
|
[-2.834, -2.605],
|
|
[-1.049, -3.264],
|
|
[2.409, -3.15],
|
|
[5.131, -0.43],
|
|
[5.782, 2.032],
|
|
[5.755, 3.751],
|
|
[2.551, 4.753],
|
|
[-2.551, 5.641]
|
|
],
|
|
"o": [
|
|
[5.187, -1.604],
|
|
[5.555, 4.123],
|
|
[4.394, 4.266],
|
|
[2.835, 2.606],
|
|
[1.049, 3.293],
|
|
[-2.381, 3.149],
|
|
[-5.131, 0.4],
|
|
[-5.783, -2.033],
|
|
[-5.754, -3.779],
|
|
[-2.551, -4.782],
|
|
[2.579, -5.611]
|
|
],
|
|
"v": [
|
|
[-17.15, -26.053],
|
|
[-0.595, -20.642],
|
|
[14.711, -6.928],
|
|
[25.398, 3.15],
|
|
[31.521, 10.966],
|
|
[30.019, 21.96],
|
|
[17.886, 27.257],
|
|
[1.361, 24.709],
|
|
[-16.101, 15.747],
|
|
[-30.019, 2.835],
|
|
[-29.537, -12.683]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [32.82, 27.907], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 6,
|
|
"ty": 4,
|
|
"nm": "f2-3 Outlines",
|
|
"parent": 20,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.005]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.005]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [276.475, 150.645, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.657, 25.16, 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.082, -1.86],
|
|
[-3.033, -4.41],
|
|
[-0.312, -4.953],
|
|
[1.984, -4.208],
|
|
[4.081, -2.09],
|
|
[7.994, 0.086],
|
|
[10.631, 0.201],
|
|
[7.54, 4.036],
|
|
[1.559, 7.988],
|
|
[-4.394, 5.469],
|
|
[-11.905, 0.716],
|
|
[-10.091, -0.945]
|
|
],
|
|
"o": [
|
|
[4.054, 1.833],
|
|
[3.033, 4.409],
|
|
[0.312, 4.981],
|
|
[-1.984, 4.238],
|
|
[-4.082, 2.061],
|
|
[-7.965, -0.057],
|
|
[-10.6, -0.172],
|
|
[-7.569, -4.065],
|
|
[-1.588, -7.988],
|
|
[4.422, -5.439],
|
|
[11.877, -0.716],
|
|
[10.063, 0.945]
|
|
],
|
|
"v": [
|
|
[34.484, -22.432],
|
|
[46.19, -12.869],
|
|
[51.009, 1.99],
|
|
[48.487, 15.589],
|
|
[39.274, 25.925],
|
|
[22.18, 28.015],
|
|
[-7.357, 27.471],
|
|
[-35.843, 23.148],
|
|
[-49.733, 3.078],
|
|
[-45.254, -18.309],
|
|
[-21.784, -27.385],
|
|
[16.795, -25.61]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.571, 28.351], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 7,
|
|
"ty": 4,
|
|
"nm": "f2-2 Outlines",
|
|
"parent": 6,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.636]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.636]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [73.006, 28.973, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [16.88, 25.852, 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.211, 5.411],
|
|
[-2.523, 1.517],
|
|
[-0.964, 0.056],
|
|
[-5.159, -0.258],
|
|
[-12.84, -2.434],
|
|
[-9.722, -3.293],
|
|
[-3.005, -4.667],
|
|
[0.596, -6.413],
|
|
[2.182, -3.35],
|
|
[12.189, 1.146],
|
|
[12.756, 1.746],
|
|
[2.635, 0.343],
|
|
[4.082, 3.264],
|
|
[2.013, 6.957]
|
|
],
|
|
"o": [
|
|
[2.239, -5.439],
|
|
[2.494, -1.518],
|
|
[0.964, -0.058],
|
|
[5.131, 0.258],
|
|
[12.87, 2.405],
|
|
[9.751, 3.321],
|
|
[3.033, 4.667],
|
|
[-0.566, 6.384],
|
|
[-2.211, 3.379],
|
|
[-12.16, -1.145],
|
|
[-12.784, -1.719],
|
|
[-2.609, -0.315],
|
|
[-4.054, -3.264],
|
|
[-2.013, -6.957]
|
|
],
|
|
"v": [
|
|
[-52.455, -19.297],
|
|
[-44.036, -29.117],
|
|
[-39.218, -30.863],
|
|
[-32.556, -30.577],
|
|
[-4.89, -27.457],
|
|
[33.661, -17.321],
|
|
[49.904, -7.187],
|
|
[54.864, 11.051],
|
|
[48.43, 26.454],
|
|
[33.35, 29.775],
|
|
[-15.208, 23.506],
|
|
[-32.527, 21.387],
|
|
[-42.562, 17.207],
|
|
[-53.447, 1.059]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [55.71, 31.171], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 8,
|
|
"ty": 4,
|
|
"nm": "f2-1 Outlines",
|
|
"parent": 7,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [10.502]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [10.502]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [89.462, 33.565, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [17.009, 18.362, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.396, -0.772],
|
|
[0.511, -1.116],
|
|
[1.588, -1.46],
|
|
[1.815, -1.116],
|
|
[1.077, 0.115],
|
|
[1.332, 1.546],
|
|
[1.899, 3.406],
|
|
[-0.425, 3.807],
|
|
[-2.664, 0.774],
|
|
[-2.835, -2.806],
|
|
[-1.898, -2.376]
|
|
],
|
|
"o": [
|
|
[0.369, 0.773],
|
|
[-0.51, 1.118],
|
|
[-1.587, 1.488],
|
|
[-1.786, 1.088],
|
|
[-1.105, -0.143],
|
|
[-1.36, -1.517],
|
|
[-1.871, -3.379],
|
|
[0.425, -3.837],
|
|
[2.693, -0.773],
|
|
[2.835, 2.777],
|
|
[1.9, 2.405]
|
|
],
|
|
"v": [
|
|
[12.43, 2.404],
|
|
[12.26, 5.181],
|
|
[9.17, 9.104],
|
|
[3.585, 13.284],
|
|
[-0.694, 14.887],
|
|
[-3.897, 12.31],
|
|
[-9.028, 5.211],
|
|
[-12.374, -6.585],
|
|
[-6.562, -14.229],
|
|
[1.602, -10.708],
|
|
[9.368, -1.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.711, 44.741], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": -1.787, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-6.406, -6.471],
|
|
[-6.01, -6.786],
|
|
[-1.843, -4.294],
|
|
[3.771, -3.522],
|
|
[7.511, 0.858],
|
|
[7.569, 5.239],
|
|
[4.422, 4.552],
|
|
[0.879, 4.408],
|
|
[-1.389, 4.897],
|
|
[-3.657, 2.233],
|
|
[-4.876, -1.116]
|
|
],
|
|
"o": [
|
|
[6.435, 6.47],
|
|
[6.009, 6.785],
|
|
[1.842, 4.294],
|
|
[-3.741, 3.492],
|
|
[-7.512, -0.831],
|
|
[-7.596, -5.241],
|
|
[-4.421, -4.552],
|
|
[-0.879, -4.438],
|
|
[1.388, -4.895],
|
|
[3.628, -2.205],
|
|
[4.847, 1.146]
|
|
],
|
|
"v": [
|
|
[2.226, -22.16],
|
|
[22.409, 0.859],
|
|
[34.597, 15.776],
|
|
[32.045, 28.345],
|
|
[13.904, 33.211],
|
|
[-9.369, 23.191],
|
|
[-28.418, 6.871],
|
|
[-35.56, -4.667],
|
|
[-34.965, -20.299],
|
|
[-27.255, -30.921],
|
|
[-14.159, -32.953]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [36.689, 34.32], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 9,
|
|
"ty": 4,
|
|
"nm": "f1-3 Outlines",
|
|
"parent": 20,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.218]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.218]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [240.804, 187.743, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [19.475, 23.004, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.612, -4.381],
|
|
[-2.012, -6.327],
|
|
[2.494, -5.727],
|
|
[4.393, -1.946],
|
|
[3.856, 0.544],
|
|
[9.864, 1.26],
|
|
[11.707, 3.006],
|
|
[4.648, 5.926],
|
|
[-1.248, 7.358],
|
|
[-6.01, 4.466],
|
|
[-11.196, -0.773],
|
|
[-10.885, -3.379]
|
|
],
|
|
"o": [
|
|
[5.612, 4.38],
|
|
[2.013, 6.357],
|
|
[-2.467, 5.755],
|
|
[-4.366, 1.947],
|
|
[-3.882, -0.515],
|
|
[-9.894, -1.26],
|
|
[-11.707, -2.978],
|
|
[-4.678, -5.955],
|
|
[1.247, -7.358],
|
|
[6.009, -4.466],
|
|
[11.197, 0.744],
|
|
[10.884, 3.378]
|
|
],
|
|
"v": [
|
|
[42.18, -15.074],
|
|
[53.915, 1.245],
|
|
[53.349, 20.4],
|
|
[41.614, 32.51],
|
|
[29.536, 33.426],
|
|
[11.906, 31.05],
|
|
[-25.568, 24.895],
|
|
[-49.436, 11.896],
|
|
[-54.679, -9.233],
|
|
[-43.142, -27.928],
|
|
[-18.198, -33.683],
|
|
[18.568, -25.981]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [56.177, 34.706], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 10,
|
|
"ty": 4,
|
|
"nm": "f1-2 Outlines",
|
|
"parent": 9,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [4.964]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [4.964]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [82.072, 35.466, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.037, 21.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": [
|
|
[-11.565, -3.693],
|
|
[-12.217, 0],
|
|
[-4.025, 5.497],
|
|
[3.77, 5.841],
|
|
[13.152, 6.67],
|
|
[9.638, 3.78],
|
|
[2.24, 0.2],
|
|
[4.508, -2.005],
|
|
[2.353, -7.502],
|
|
[-2.721, -6.727],
|
|
[-5.046, -2.004]
|
|
],
|
|
"o": [
|
|
[11.565, 3.693],
|
|
[12.246, 0.028],
|
|
[4.054, -5.469],
|
|
[-3.77, -5.811],
|
|
[-13.125, -6.701],
|
|
[-9.666, -3.778],
|
|
[-2.239, -0.201],
|
|
[-4.507, 2.032],
|
|
[-2.324, 7.529],
|
|
[2.721, 6.729],
|
|
[5.046, 2.004]
|
|
],
|
|
"v": [
|
|
[-15.491, 25.009],
|
|
[25.497, 34.4],
|
|
[49.053, 23.263],
|
|
[50.188, 6.656],
|
|
[24.932, -12.181],
|
|
[-15.719, -29.676],
|
|
[-29.042, -34.227],
|
|
[-38.821, -32.28],
|
|
[-51.634, -18.852],
|
|
[-49.961, 6.542],
|
|
[-37.999, 17.622]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [54.207, 34.678], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 11,
|
|
"ty": 4,
|
|
"nm": "f1 Outlines",
|
|
"parent": 10,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [5.714]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [5.714]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [83.408, 49.621, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [18.41, 18.643, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.113, -0.858],
|
|
[0.822, -0.888],
|
|
[1.984, -0.887],
|
|
[2.041, -0.487],
|
|
[1.559, 1.804],
|
|
[1.162, 4.265],
|
|
[-1.191, 3.292],
|
|
[-2.665, 0.688],
|
|
[-2.211, -3.35],
|
|
[-1.388, -3.579]
|
|
],
|
|
"o": [
|
|
[0.142, 0.859],
|
|
[-0.822, 0.916],
|
|
[-1.956, 0.888],
|
|
[-2.069, 0.487],
|
|
[-1.559, -1.804],
|
|
[-1.19, -4.267],
|
|
[1.22, -3.321],
|
|
[2.665, -0.687],
|
|
[2.211, 3.349],
|
|
[1.361, 3.578]
|
|
],
|
|
"v": [
|
|
[11.481, 7.028],
|
|
[10.488, 9.605],
|
|
[6.321, 12.382],
|
|
[-0.227, 14.587],
|
|
[-5.386, 13.441],
|
|
[-9.695, 3.622],
|
|
[-10.432, -8.718],
|
|
[-3.43, -14.559],
|
|
[3.628, -11.467],
|
|
[9.467, 1.732]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [49.854, 54.325], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-5.499, -7.701],
|
|
[-6.776, -3.521],
|
|
[-5.414, 1.431],
|
|
[-0.113, 5.383],
|
|
[3.231, 8.217],
|
|
[3.487, 7.672],
|
|
[5.046, 3.264],
|
|
[5.612, -3.321],
|
|
[2.579, -5.182],
|
|
[-2.211, -6.155]
|
|
],
|
|
"o": [
|
|
[5.471, 7.702],
|
|
[6.802, 3.522],
|
|
[5.414, -1.431],
|
|
[0.113, -5.353],
|
|
[-3.232, -8.189],
|
|
[-3.515, -7.645],
|
|
[-5.073, -3.292],
|
|
[-5.613, 3.322],
|
|
[-2.608, 5.21],
|
|
[2.212, 6.156]
|
|
],
|
|
"v": [
|
|
[-16.554, 17.321],
|
|
[2.212, 34.986],
|
|
[21.515, 37.706],
|
|
[30.813, 27.399],
|
|
[24.123, 6.615],
|
|
[14.485, -18.408],
|
|
[1.842, -35.445],
|
|
[-14.881, -35.817],
|
|
[-28.261, -20.269],
|
|
[-28.715, -5.525]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [31.176, 39.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 12,
|
|
"ty": 4,
|
|
"nm": "sign Outlines 2",
|
|
"parent": 19,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": -6.12, "ix": 10 },
|
|
"p": { "a": 0, "k": [648.294, 554.946, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [473.987, 407.751, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [37.177, 37.177, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-23.511, 10.616],
|
|
[-84.181, 38.09],
|
|
[23.486, -10.617],
|
|
[84.179, -38.116]
|
|
],
|
|
"o": [
|
|
[84.154, -38.115],
|
|
[23.485, -10.643],
|
|
[-84.18, 38.116],
|
|
[-23.487, 10.642]
|
|
],
|
|
"v": [
|
|
[-134.285, 39.41],
|
|
[118.231, -74.91],
|
|
[134.31, -39.41],
|
|
[-118.23, 74.911]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.664929019704, 0.603891170726, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [390.182, 662.014], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.789],
|
|
[9.789, -4.428],
|
|
[0, 0],
|
|
[4.427, 9.763]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.761, -4.401],
|
|
[4.402, 9.761],
|
|
[0, 0],
|
|
[-9.788, 4.428],
|
|
[-4.402, -9.787]
|
|
],
|
|
"v": [
|
|
[-134.297, 39.397],
|
|
[-46.828, -0.195],
|
|
[-21.039, 9.542],
|
|
[-30.775, 35.332],
|
|
[-118.218, 74.923],
|
|
[-144.033, 65.212]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 1,
|
|
"ty": "sh",
|
|
"ix": 2,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.401],
|
|
[0, 0],
|
|
[-4.402, -9.762],
|
|
[9.761, -4.428],
|
|
[0, 0],
|
|
[4.428, 9.762]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.761, -4.403],
|
|
[4.427, 9.763],
|
|
[0, 0],
|
|
[-9.762, 4.428],
|
|
[-4.428, -9.762]
|
|
],
|
|
"v": [
|
|
[30.749, -35.306],
|
|
[118.218, -74.923],
|
|
[144.008, -65.188],
|
|
[134.298, -39.398],
|
|
[46.829, 0.194],
|
|
[21.039, -9.516]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 2",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 2,
|
|
"ty": "sh",
|
|
"ix": 3,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.762],
|
|
[9.762, -4.428],
|
|
[0, 0],
|
|
[4.428, 9.763]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.762, -4.428],
|
|
[4.428, 9.761],
|
|
[0, 0],
|
|
[-9.761, 4.429],
|
|
[-4.428, -9.761]
|
|
],
|
|
"v": [
|
|
[195.821, -110.036],
|
|
[283.29, -149.626],
|
|
[309.08, -139.916],
|
|
[299.37, -114.126],
|
|
[211.901, -74.536],
|
|
[186.111, -84.246]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 3",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 3,
|
|
"ty": "sh",
|
|
"ix": 4,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.762],
|
|
[9.761, -4.402],
|
|
[0, 0],
|
|
[4.402, 9.761]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.762, -4.428],
|
|
[4.427, 9.761],
|
|
[0, 0],
|
|
[-9.762, 4.402],
|
|
[-4.428, -9.763]
|
|
],
|
|
"v": [
|
|
[-299.369, 114.126],
|
|
[-211.901, 74.535],
|
|
[-186.111, 84.245],
|
|
[-195.821, 110.035],
|
|
[-283.29, 149.652],
|
|
[-309.08, 139.917]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 4",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "mm",
|
|
"mm": 1,
|
|
"nm": "Merge Paths 1",
|
|
"mn": "ADBE Vector Filter - Merge",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.664929019704, 0.603891170726, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [526.007, 522.668], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 6,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-53.535, -44.395],
|
|
[-28.858, -55.555],
|
|
[-11.82, -17.906],
|
|
[42.375, -42.453],
|
|
[53.535, -17.776],
|
|
[-0.66, 6.771],
|
|
[16.378, 44.394],
|
|
[-8.273, 55.555]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.922743973078, 0.730678842582, 0.197887345856, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [250.006, 517.54], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-7.043, 3.186],
|
|
[0, 0],
|
|
[-3.185, -7.017],
|
|
[0, 0],
|
|
[7.018, -3.185],
|
|
[0, 0],
|
|
[3.184, 7.043],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[7.043, -3.184],
|
|
[0, 0],
|
|
[3.186, 7.018],
|
|
[0, 0],
|
|
[-7.043, 3.185],
|
|
[0, 0],
|
|
[-3.185, -7.043]
|
|
],
|
|
"v": [
|
|
[-76.361, -25.635],
|
|
[31.124, -74.315],
|
|
[49.716, -67.323],
|
|
[83.377, 7.069],
|
|
[76.386, 25.635],
|
|
[-31.125, 74.315],
|
|
[-49.69, 67.298],
|
|
[-83.378, -7.069]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.962551879883, 0.870335358264, 0.310064398074, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [231.428, 517.554], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-30.399, 13.75],
|
|
[0, 0],
|
|
[-13.75, -30.399],
|
|
[0, 0],
|
|
[30.373, -13.749],
|
|
[0, 0],
|
|
[13.775, 30.399],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[30.373, -13.749],
|
|
[0, 0],
|
|
[13.775, 30.373],
|
|
[0, 0],
|
|
[-30.373, 13.75],
|
|
[0, 0],
|
|
[-13.749, -30.374]
|
|
],
|
|
"v": [
|
|
[-429.744, -107.368],
|
|
[202.89, -393.752],
|
|
[283.134, -363.508],
|
|
[459.962, 27.124],
|
|
[429.744, 107.368],
|
|
[-202.916, 393.751],
|
|
[-283.16, 363.508],
|
|
[-459.988, -27.123]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.853431073357, 0.635428754021, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [473.987, 407.751], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 13,
|
|
"ty": 0,
|
|
"nm": "Pre-comp 6",
|
|
"parent": 19,
|
|
"tt": 1,
|
|
"refId": "comp_0",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 20, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [314.747, 336.795, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [1920, 1080, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [53.191, 53.191, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"w": 3840,
|
|
"h": 2160,
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 14,
|
|
"ty": 4,
|
|
"nm": "sign Outlines",
|
|
"parent": 19,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": -6.12, "ix": 10 },
|
|
"p": { "a": 0, "k": [648.294, 554.946, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [473.987, 407.751, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [37.177, 37.177, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-23.511, 10.616],
|
|
[-84.181, 38.09],
|
|
[23.486, -10.617],
|
|
[84.179, -38.116]
|
|
],
|
|
"o": [
|
|
[84.154, -38.115],
|
|
[23.485, -10.643],
|
|
[-84.18, 38.116],
|
|
[-23.487, 10.642]
|
|
],
|
|
"v": [
|
|
[-134.285, 39.41],
|
|
[118.231, -74.91],
|
|
[134.31, -39.41],
|
|
[-118.23, 74.911]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.664929019704, 0.603891170726, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [390.182, 662.014], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.789],
|
|
[9.789, -4.428],
|
|
[0, 0],
|
|
[4.427, 9.763]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.761, -4.401],
|
|
[4.402, 9.761],
|
|
[0, 0],
|
|
[-9.788, 4.428],
|
|
[-4.402, -9.787]
|
|
],
|
|
"v": [
|
|
[-134.297, 39.397],
|
|
[-46.828, -0.195],
|
|
[-21.039, 9.542],
|
|
[-30.775, 35.332],
|
|
[-118.218, 74.923],
|
|
[-144.033, 65.212]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 1,
|
|
"ty": "sh",
|
|
"ix": 2,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.401],
|
|
[0, 0],
|
|
[-4.402, -9.762],
|
|
[9.761, -4.428],
|
|
[0, 0],
|
|
[4.428, 9.762]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.761, -4.403],
|
|
[4.427, 9.763],
|
|
[0, 0],
|
|
[-9.762, 4.428],
|
|
[-4.428, -9.762]
|
|
],
|
|
"v": [
|
|
[30.749, -35.306],
|
|
[118.218, -74.923],
|
|
[144.008, -65.188],
|
|
[134.298, -39.398],
|
|
[46.829, 0.194],
|
|
[21.039, -9.516]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 2",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 2,
|
|
"ty": "sh",
|
|
"ix": 3,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.762],
|
|
[9.762, -4.428],
|
|
[0, 0],
|
|
[4.428, 9.763]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.762, -4.428],
|
|
[4.428, 9.761],
|
|
[0, 0],
|
|
[-9.761, 4.429],
|
|
[-4.428, -9.761]
|
|
],
|
|
"v": [
|
|
[195.821, -110.036],
|
|
[283.29, -149.626],
|
|
[309.08, -139.916],
|
|
[299.37, -114.126],
|
|
[211.901, -74.536],
|
|
[186.111, -84.246]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 3",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 3,
|
|
"ty": "sh",
|
|
"ix": 4,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-9.762, 4.428],
|
|
[0, 0],
|
|
[-4.428, -9.762],
|
|
[9.761, -4.402],
|
|
[0, 0],
|
|
[4.402, 9.761]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[9.762, -4.428],
|
|
[4.427, 9.761],
|
|
[0, 0],
|
|
[-9.762, 4.402],
|
|
[-4.428, -9.763]
|
|
],
|
|
"v": [
|
|
[-299.369, 114.126],
|
|
[-211.901, 74.535],
|
|
[-186.111, 84.245],
|
|
[-195.821, 110.035],
|
|
[-283.29, 149.652],
|
|
[-309.08, 139.917]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 4",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "mm",
|
|
"mm": 1,
|
|
"nm": "Merge Paths 1",
|
|
"mn": "ADBE Vector Filter - Merge",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.664929019704, 0.603891170726, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [526.007, 522.668], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 6,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-53.535, -44.395],
|
|
[-28.858, -55.555],
|
|
[-11.82, -17.906],
|
|
[42.375, -42.453],
|
|
[53.535, -17.776],
|
|
[-0.66, 6.771],
|
|
[16.378, 44.394],
|
|
[-8.273, 55.555]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.922743973078, 0.730678842582, 0.197887345856, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [250.006, 517.54], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-7.043, 3.186],
|
|
[0, 0],
|
|
[-3.185, -7.017],
|
|
[0, 0],
|
|
[7.018, -3.185],
|
|
[0, 0],
|
|
[3.184, 7.043],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[7.043, -3.184],
|
|
[0, 0],
|
|
[3.186, 7.018],
|
|
[0, 0],
|
|
[-7.043, 3.185],
|
|
[0, 0],
|
|
[-3.185, -7.043]
|
|
],
|
|
"v": [
|
|
[-76.361, -25.635],
|
|
[31.124, -74.315],
|
|
[49.716, -67.323],
|
|
[83.377, 7.069],
|
|
[76.386, 25.635],
|
|
[-31.125, 74.315],
|
|
[-49.69, 67.298],
|
|
[-83.378, -7.069]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.962551879883, 0.870335358264, 0.310064398074, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [231.428, 517.554], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-30.399, 13.75],
|
|
[0, 0],
|
|
[-13.75, -30.399],
|
|
[0, 0],
|
|
[30.373, -13.749],
|
|
[0, 0],
|
|
[13.775, 30.399],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[30.373, -13.749],
|
|
[0, 0],
|
|
[13.775, 30.373],
|
|
[0, 0],
|
|
[-30.373, 13.75],
|
|
[0, 0],
|
|
[-13.749, -30.374]
|
|
],
|
|
"v": [
|
|
[-429.744, -107.368],
|
|
[202.89, -393.752],
|
|
[283.134, -363.508],
|
|
[459.962, 27.124],
|
|
[429.744, 107.368],
|
|
[-202.916, 393.751],
|
|
[-283.16, 363.508],
|
|
[-459.988, -27.123]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.853431073357, 0.635428754021, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [473.987, 407.751], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 15,
|
|
"ty": 4,
|
|
"nm": "big 2 Outlines",
|
|
"parent": 20,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [-3.013]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [-3.013]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [155.461, 224.739, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [60.499, 33.03, 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.26, -9.162],
|
|
[-4.62, -8.905],
|
|
[-3.827, -6.413],
|
|
[-0.567, -4.953],
|
|
[2.211, -4.439],
|
|
[5.527, -1.804],
|
|
[5.839, 1.116],
|
|
[9.751, 8.389],
|
|
[11.254, 10.994],
|
|
[7.767, 8.904],
|
|
[4.506, 6.557],
|
|
[0.596, 4.553],
|
|
[-1.673, 7.243],
|
|
[-9.581, 7.157],
|
|
[-13.152, -2.119],
|
|
[-7.342, -8.647],
|
|
[-3.374, -8.445]
|
|
],
|
|
"o": [
|
|
[3.231, 9.133],
|
|
[4.621, 8.932],
|
|
[3.826, 6.413],
|
|
[0.595, 4.981],
|
|
[-2.211, 4.409],
|
|
[-5.499, 1.804],
|
|
[-5.839, -1.117],
|
|
[-9.751, -8.389],
|
|
[-11.282, -10.994],
|
|
[-7.795, -8.875],
|
|
[-4.479, -6.528],
|
|
[-0.566, -4.523],
|
|
[1.672, -7.272],
|
|
[9.61, -7.129],
|
|
[13.125, 2.09],
|
|
[7.341, 8.674],
|
|
[3.373, 8.446]
|
|
],
|
|
"v": [
|
|
[38.906, -9.748],
|
|
[50.329, 17.394],
|
|
[64.446, 41.528],
|
|
[70.824, 56.932],
|
|
[68.386, 72.221],
|
|
[57.048, 81.41],
|
|
[38.339, 82.728],
|
|
[18.468, 70.331],
|
|
[-17.731, 37.033],
|
|
[-44.121, 9.062],
|
|
[-64.615, -16.047],
|
|
[-70.427, -30.506],
|
|
[-69.746, -47.97],
|
|
[-54.695, -71.246],
|
|
[-16.512, -81.725],
|
|
[14.84, -61.311],
|
|
[29.353, -36.547]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [71.669, 84.094], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 16,
|
|
"ty": 4,
|
|
"nm": "big Outlines",
|
|
"parent": 15,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 15.003,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 30.006,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 45.009,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60.011,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 75.014,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 90.018,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 105.02,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120.023,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 134.98,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 149.983,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 164.986,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 179.989,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 194.991,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 209.994,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 224.998,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 255,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 270.004,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 285.006,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300.009,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 315.011,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 330.015,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 345.018,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360.02,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 374.978,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 389.98,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 404.984,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 419.986,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 434.989,
|
|
"s": [-7.989]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 449.991,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 464.995,
|
|
"s": [-7.989]
|
|
},
|
|
{ "t": 479.997519550699, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [112.067, 139.444, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [20.422, 21.257, 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.021, 2.233],
|
|
[-3.147, 1.631],
|
|
[-3.543, 0.029],
|
|
[-2.154, -0.23],
|
|
[-0.879, -0.515],
|
|
[-0.085, -1.66],
|
|
[0.455, -2.433],
|
|
[0.651, -1.203],
|
|
[1.644, 0.114],
|
|
[4.678, 0.687],
|
|
[3.373, 0.572],
|
|
[0.057, 0.773]
|
|
],
|
|
"o": [
|
|
[1.021, -2.233],
|
|
[3.146, -1.661],
|
|
[3.544, 0],
|
|
[2.155, 0.2],
|
|
[0.879, 0.516],
|
|
[0.085, 1.66],
|
|
[-0.453, 2.434],
|
|
[-0.681, 1.203],
|
|
[-1.616, -0.144],
|
|
[-4.677, -0.658],
|
|
[-3.346, -0.573],
|
|
[-0.028, -0.773]
|
|
],
|
|
"v": [
|
|
[-15.208, -0.272],
|
|
[-9.028, -7.086],
|
|
[1.97, -9.119],
|
|
[10.445, -8.603],
|
|
[15.038, -7.745],
|
|
[16.2, -4.681],
|
|
[15.774, 1.846],
|
|
[13.791, 7.916],
|
|
[10.984, 8.976],
|
|
[1.885, 7.945],
|
|
[-12.741, 5.569],
|
|
[-16.257, 4.223]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [72.43, 49.88], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0.57, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-8.362, -1.947],
|
|
[-9.354, -4.008],
|
|
[-5.187, -4.809],
|
|
[-1.304, -4.953],
|
|
[2.296, -3.436],
|
|
[6.378, -0.086],
|
|
[10.8, 1.69],
|
|
[9.723, 1.775],
|
|
[4.337, 4.495],
|
|
[0.057, 6.413],
|
|
[-3.856, 4.037],
|
|
[-5.499, 0.86]
|
|
],
|
|
"o": [
|
|
[8.334, 1.947],
|
|
[9.383, 4.037],
|
|
[5.216, 4.839],
|
|
[1.304, 4.981],
|
|
[-2.267, 3.465],
|
|
[-6.378, 0.086],
|
|
[-10.8, -1.717],
|
|
[-9.723, -1.804],
|
|
[-4.337, -4.495],
|
|
[-0.085, -6.442],
|
|
[3.854, -4.037],
|
|
[5.499, -0.858]
|
|
],
|
|
"v": [
|
|
[-10.941, -27.228],
|
|
[18.227, -17.723],
|
|
[40.081, -4.41],
|
|
[49.719, 10.564],
|
|
[48.217, 23.734],
|
|
[35.518, 29.432],
|
|
[9.609, 25.882],
|
|
[-23.81, 20.958],
|
|
[-44.448, 12.482],
|
|
[-50.939, -5.268],
|
|
[-45.184, -21.731],
|
|
[-30.047, -28.66]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [51.273, 29.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 17,
|
|
"ty": 4,
|
|
"nm": "bg Outlines 2",
|
|
"parent": 19,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [336.44, 341.395, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [336.44, 341.395, 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": [
|
|
[-92.948, 0],
|
|
[-60.775, -61.784],
|
|
[0, -94.079],
|
|
[60.803, -61.755],
|
|
[92.75, 0],
|
|
[61.002, 61.785],
|
|
[0, 94.05],
|
|
[-60.775, 61.784]
|
|
],
|
|
"o": [
|
|
[92.75, 0],
|
|
[60.973, 61.784],
|
|
[0, 94.05],
|
|
[-60.775, 61.785],
|
|
[-92.948, 0],
|
|
[-60.775, -61.755],
|
|
[0, -94.079],
|
|
[61.002, -61.784]
|
|
],
|
|
"v": [
|
|
[0.114, -341.145],
|
|
[237.714, -241.111],
|
|
[336.19, 0.014],
|
|
[237.714, 241.11],
|
|
[0.114, 341.145],
|
|
[-237.713, 241.11],
|
|
[-336.19, 0.014],
|
|
[-237.713, -241.111]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 1,
|
|
"ty": "sh",
|
|
"ix": 2,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[49.522, 50.39],
|
|
[75.742, 0],
|
|
[49.72, -50.189],
|
|
[0, -77.073],
|
|
[-49.521, -50.389],
|
|
[-75.77, 0],
|
|
[-49.52, 50.39],
|
|
[0, 77.073]
|
|
],
|
|
"o": [
|
|
[-49.52, -50.189],
|
|
[-75.77, 0],
|
|
[-49.521, 50.39],
|
|
[0, 77.073],
|
|
[49.72, 50.39],
|
|
[75.742, 0],
|
|
[49.522, -50.389],
|
|
[0, -77.073]
|
|
],
|
|
"v": [
|
|
[193.918, -197.078],
|
|
[0.114, -278.445],
|
|
[-193.918, -197.078],
|
|
[-274.11, 0.014],
|
|
[-193.918, 197.076],
|
|
[0.114, 278.645],
|
|
[193.918, 197.076],
|
|
[274.308, 0.014]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 2",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "mm",
|
|
"mm": 1,
|
|
"nm": "Merge Paths 1",
|
|
"mn": "ADBE Vector Filter - Merge",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.907108262006, 0.286255780388, 0.189552352008, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [336.439, 341.395], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 18,
|
|
"ty": 0,
|
|
"nm": "Pre-comp 5",
|
|
"parent": 19,
|
|
"tt": 1,
|
|
"refId": "comp_1",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [343.471, 353.816, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [1920, 1080, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [53.191, 53.191, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"w": 3840,
|
|
"h": 2160,
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 19,
|
|
"ty": 4,
|
|
"nm": "ZZZ",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [1136.782, 1080.648, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [336.44, 341.395, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [256.006, 256.006, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-244.814, 189.418],
|
|
[186.449, -248.024],
|
|
[244.814, -189.418],
|
|
[-186.42, 248.024]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.907108262006, 0.286255780388, 0.189552352008, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [336.539, 341.409], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-92.948, 0],
|
|
[-60.775, -61.784],
|
|
[0, -94.079],
|
|
[60.803, -61.755],
|
|
[92.75, 0],
|
|
[61.002, 61.785],
|
|
[0, 94.05],
|
|
[-60.775, 61.784]
|
|
],
|
|
"o": [
|
|
[92.75, 0],
|
|
[60.973, 61.784],
|
|
[0, 94.05],
|
|
[-60.775, 61.785],
|
|
[-92.948, 0],
|
|
[-60.775, -61.755],
|
|
[0, -94.079],
|
|
[61.002, -61.784]
|
|
],
|
|
"v": [
|
|
[0.114, -341.145],
|
|
[237.714, -241.111],
|
|
[336.19, 0.014],
|
|
[237.714, 241.11],
|
|
[0.114, 341.145],
|
|
[-237.713, 241.11],
|
|
[-336.19, 0.014],
|
|
[-237.713, -241.111]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 1,
|
|
"ty": "sh",
|
|
"ix": 2,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[49.522, 50.39],
|
|
[75.742, 0],
|
|
[49.72, -50.189],
|
|
[0, -77.073],
|
|
[-49.521, -50.389],
|
|
[-75.77, 0],
|
|
[-49.52, 50.39],
|
|
[0, 77.073]
|
|
],
|
|
"o": [
|
|
[-49.52, -50.189],
|
|
[-75.77, 0],
|
|
[-49.521, 50.39],
|
|
[0, 77.073],
|
|
[49.72, 50.39],
|
|
[75.742, 0],
|
|
[49.522, -50.389],
|
|
[0, -77.073]
|
|
],
|
|
"v": [
|
|
[193.918, -197.078],
|
|
[0.114, -278.445],
|
|
[-193.918, -197.078],
|
|
[-274.11, 0.014],
|
|
[-193.918, 197.076],
|
|
[0.114, 278.645],
|
|
[193.918, 197.076],
|
|
[274.308, 0.014]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 2",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "mm",
|
|
"mm": 1,
|
|
"nm": "Merge Paths 1",
|
|
"mn": "ADBE Vector Filter - Merge",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.907108262006, 0.286255780388, 0.189552352008, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [336.439, 341.395], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 20,
|
|
"ty": 4,
|
|
"nm": "gesture Outlines",
|
|
"parent": 23,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [4.953]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [4.953]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [247.261, 292.29, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [95.522, 91.304, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-13.096, -15.402],
|
|
[-8.391, -8.361],
|
|
[-5.159, -2.462],
|
|
[-8.673, -0.172],
|
|
[-7.286, 2.347],
|
|
[-3.856, 3.607],
|
|
[-1.162, 2.978],
|
|
[0.599, 3.58],
|
|
[-1.021, 4.638],
|
|
[-7.116, 4.896],
|
|
[-7.683, 2.462],
|
|
[-3.43, -0.372],
|
|
[-2.749, -0.258],
|
|
[-4.082, 2.348],
|
|
[-3.459, 5.898],
|
|
[-1.021, 28.774],
|
|
[-0.057, 26.139],
|
|
[0.566, 1.03],
|
|
[0.709, 0.2],
|
|
[5.5, 0.429],
|
|
[12.529, 1.173],
|
|
[14.797, 1.718],
|
|
[13.947, 3.264],
|
|
[8.73, 3.694],
|
|
[3.203, 1.203],
|
|
[1.786, -1.288],
|
|
[18.737, -19.497],
|
|
[18.766, -19.297],
|
|
[-0.397, -2.377],
|
|
[-8.306, -11.853],
|
|
[-13.096, -18.58]
|
|
],
|
|
"o": [
|
|
[13.096, 15.403],
|
|
[8.418, 8.36],
|
|
[5.131, 2.433],
|
|
[8.674, 0.2],
|
|
[7.313, -2.348],
|
|
[3.854, -3.608],
|
|
[1.134, -3.007],
|
|
[-0.52, -3.108],
|
|
[1.02, -4.638],
|
|
[7.115, -4.895],
|
|
[7.681, -2.434],
|
|
[3.401, 0.372],
|
|
[2.779, 0.258],
|
|
[4.111, -2.348],
|
|
[3.486, -5.897],
|
|
[1.049, -28.801],
|
|
[0.057, -26.168],
|
|
[-0.568, -1.031],
|
|
[-0.737, -0.201],
|
|
[-5.528, -0.401],
|
|
[-12.529, -1.174],
|
|
[-14.797, -1.747],
|
|
[-13.917, -3.264],
|
|
[-8.73, -3.692],
|
|
[-3.203, -1.173],
|
|
[-1.814, 1.317],
|
|
[-18.737, 19.526],
|
|
[-18.765, 19.297],
|
|
[0.396, 2.347],
|
|
[8.305, 11.853],
|
|
[13.068, 18.553]
|
|
],
|
|
"v": [
|
|
[-64.148, 92.876],
|
|
[-28.544, 131.013],
|
|
[-12.246, 144.183],
|
|
[9.127, 149.365],
|
|
[34.866, 145.013],
|
|
[50.854, 136.51],
|
|
[57.736, 129.057],
|
|
[57.538, 119.97],
|
|
[57.911, 105.303],
|
|
[68.995, 91.33],
|
|
[95.074, 78.59],
|
|
[110.24, 76.986],
|
|
[119.167, 77.874],
|
|
[128.833, 76.042],
|
|
[141.818, 62.9],
|
|
[147.854, 21.357],
|
|
[149.47, -84.317],
|
|
[148.536, -113.09],
|
|
[146.522, -114.807],
|
|
[139.578, -115.351],
|
|
[111.232, -117.814],
|
|
[69.136, -122.166],
|
|
[25.54, -129.151],
|
|
[-10.148, -140.661],
|
|
[-26.56, -148.392],
|
|
[-33.534, -147.848],
|
|
[-55.729, -124.914],
|
|
[-129.062, -49.245],
|
|
[-149.13, -25.852],
|
|
[-137.905, -8.646],
|
|
[-102.416, 42.486]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [149.777, 149.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"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 21,
|
|
"ty": 4,
|
|
"nm": "arm Outlines 3",
|
|
"parent": 19,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [-4.841]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [142.551, 153.884, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [64.524, 72.071, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[30.738, 27.491],
|
|
[-3.778, 6.65],
|
|
[-53.959, 29.452],
|
|
[-4.455, -1.568],
|
|
[-41.565, -17.762],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-26.083, -26.912],
|
|
[-5.703, -5.1],
|
|
[29.565, -52.04],
|
|
[4.145, -2.262],
|
|
[19.723, 6.941],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-12.147, 131.985],
|
|
[-126.959, 24.535],
|
|
[-130.219, 4.622],
|
|
[4.765, -129.365],
|
|
[17.799, -130.417],
|
|
[124.702, -7.623],
|
|
[133.996, -7.828]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [180.868, 214.797], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 2.683, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[19.587, 21.644],
|
|
[41.754, 51.134],
|
|
[0, 0],
|
|
[-25.313, 25.566],
|
|
[-28.828, 13.8],
|
|
[-12.218, -19.211],
|
|
[-17.547, -24.622],
|
|
[-9.61, -5.239],
|
|
[-4.62, -0.916],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-22.195, -22.761],
|
|
[-36.029, -39.939],
|
|
[0, 0],
|
|
[13.861, -33.955],
|
|
[22.365, -22.59],
|
|
[13.663, 21.644],
|
|
[32.882, 51.334],
|
|
[17.546, 24.651],
|
|
[4.79, 2.606],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[24.407, 176.076],
|
|
[-38.608, 109.454],
|
|
[-146.324, -18.925],
|
|
[-155.764, -30.52],
|
|
[-96.264, -120.819],
|
|
[-19.02, -176.076],
|
|
[20.154, -114.493],
|
|
[95.896, 0.83],
|
|
[132.861, 40.598],
|
|
[147.09, 45.437],
|
|
[155.764, 45.265]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.788235353956, 0.6, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [156.014, 176.327], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 22,
|
|
"ty": 4,
|
|
"nm": "shadow Outlines",
|
|
"parent": 23,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 4.173, "ix": 10 },
|
|
"p": { "a": 0, "k": [206.203, 223.038, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [251.68, 250.34, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.89, 0.9],
|
|
[80.84, 0],
|
|
[53.17, -53.85],
|
|
[0, -82],
|
|
[-48.88, -53.15],
|
|
[0, 0],
|
|
[0, 63.871],
|
|
[-43.16, 43.92],
|
|
[-66.04, 0],
|
|
[-43.16, -43.74],
|
|
[-0.631, -0.66],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-52.971, -53.85],
|
|
[-81.02, 0],
|
|
[-52.98, 53.85],
|
|
[0, 78.32],
|
|
[0, 0],
|
|
[-39.49, -43.299],
|
|
[0, -67.18],
|
|
[43.33, -43.74],
|
|
[66.01, 0],
|
|
[0.64, 0.65],
|
|
[0, 0],
|
|
[-0.87, -0.91]
|
|
],
|
|
"v": [
|
|
[248.79, -162.9],
|
|
[41.7, -250.09],
|
|
[-165.59, -162.9],
|
|
[-251.43, 47.27],
|
|
[-172.55, 250.09],
|
|
[-133.65, 212.44],
|
|
[-197.32, 47.27],
|
|
[-127.42, -124.52],
|
|
[41.7, -195.44],
|
|
[210.62, -124.52],
|
|
[212.53, -122.55],
|
|
[251.43, -160.19]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.964705882353, 0.702332679898, 0.469111872654, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [251.68, 250.34], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 23,
|
|
"ty": 4,
|
|
"nm": "arm Outlines",
|
|
"parent": 19,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 60,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 120,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 180,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 240,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 300,
|
|
"s": [-4.841]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 360,
|
|
"s": [0]
|
|
},
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 420,
|
|
"s": [-4.841]
|
|
},
|
|
{ "t": 480.000019550801, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [142.551, 153.884, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [64.524, 72.071, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[30.738, 27.491],
|
|
[-3.778, 6.65],
|
|
[-53.959, 29.452],
|
|
[-4.455, -1.568],
|
|
[-41.565, -17.762],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-26.083, -26.912],
|
|
[-5.703, -5.1],
|
|
[29.565, -52.04],
|
|
[4.145, -2.262],
|
|
[19.723, 6.941],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-12.147, 131.985],
|
|
[-126.959, 24.535],
|
|
[-130.219, 4.622],
|
|
[4.765, -129.365],
|
|
[17.799, -130.417],
|
|
[124.702, -7.623],
|
|
[133.996, -7.828]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.313725490196, 0.313725490196, 0.313725490196, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [180.868, 214.797], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 2.683, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[19.587, 21.644],
|
|
[41.754, 51.134],
|
|
[0, 0],
|
|
[-25.313, 25.566],
|
|
[-28.828, 13.8],
|
|
[-12.218, -19.211],
|
|
[-17.547, -24.622],
|
|
[-9.61, -5.239],
|
|
[-4.62, -0.916],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-22.195, -22.761],
|
|
[-36.029, -39.939],
|
|
[0, 0],
|
|
[13.861, -33.955],
|
|
[22.365, -22.59],
|
|
[13.663, 21.644],
|
|
[32.882, 51.334],
|
|
[17.546, 24.651],
|
|
[4.79, 2.606],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[24.407, 176.076],
|
|
[-38.608, 109.454],
|
|
[-146.324, -18.925],
|
|
[-155.764, -30.52],
|
|
[-96.264, -120.819],
|
|
[-19.02, -176.076],
|
|
[20.154, -114.493],
|
|
[95.896, 0.83],
|
|
[132.861, 40.598],
|
|
[147.09, 45.437],
|
|
[155.764, 45.265]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.788235353956, 0.6, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [156.014, 176.327], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 120.0000048877,
|
|
"st": 0,
|
|
"bm": 0
|
|
}
|
|
],
|
|
"markers": []
|
|
}
|