From 9fcef12d559720c81d76320adc0ffd5a0f70d81e Mon Sep 17 00:00:00 2001
From: Isaac <>
Date: Wed, 8 May 2024 22:43:27 +0400
Subject: [PATCH] Lottie tests [skip ci]
---
.bazelrc | 2 +
Tests/LottieMesh/Resources/Cat.json | 1 -
Tests/LottieMesh/Resources/Fireworks.json | 1 -
Tests/LottieMesh/Resources/SUPER Fire.json | 1 -
Tests/LottieMesh/Sources/ViewController.swift | 37 -
Tests/LottieMetalTest/.gitignore | 2 +
Tests/{LottieMesh => LottieMetalTest}/BUILD | 97 +-
Tests/LottieMetalTest/LottieSwift/BUILD | 14 +
.../CAAnimation+TimingConfiguration.swift | 76 +
.../Animations/CALayer+addAnimation.swift | 315 ++++
.../Animations/CombinedShapeAnimation.swift | 52 +
.../Animations/CustomPathAnimation.swift | 22 +
.../Animations/EllipseAnimation.swift | 26 +
.../Animations/GradientAnimations.swift | 146 ++
.../Animations/LayerProperty.swift | 229 +++
.../Animations/OpacityAnimation.swift | 52 +
.../Animations/RectangleAnimation.swift | 29 +
.../Animations/ShapeAnimation.swift | 123 ++
.../Animations/StarAnimation.swift | 90 ++
.../Animations/StrokeAnimation.swift | 70 +
.../Animations/TransformAnimations.swift | 205 +++
.../Animations/VisibilityAnimation.swift | 37 +
.../CoreAnimation/CompatibilityTracker.swift | 128 ++
.../CoreAnimation/CoreAnimationLayer.swift | 456 ++++++
.../Extensions/CALayer+fillBounds.swift | 35 +
.../KeyframeGroup+exactlyOneKeyframe.swift | 37 +
.../Keyframes+combinedIfPossible.swift | 61 +
.../CoreAnimation/Layers/AnimationLayer.swift | 70 +
.../Layers/BaseAnimationLayer.swift | 33 +
.../Layers/BaseCompositionLayer.swift | 87 ++
.../Layers/CALayer+setupLayerHierarchy.swift | 131 ++
.../Layers/GradientRenderLayer.swift | 87 ++
.../CoreAnimation/Layers/ImageLayer.swift | 79 +
.../LayerModel+makeAnimationLayer.swift | 60 +
.../Layers/MaskCompositionLayer.swift | 104 ++
.../CoreAnimation/Layers/PreCompLayer.swift | 140 ++
.../CoreAnimation/Layers/ShapeItemLayer.swift | 257 ++++
.../CoreAnimation/Layers/ShapeLayer.swift | 305 ++++
.../CoreAnimation/Layers/SolidLayer.swift | 47 +
.../CoreAnimation/Layers/TextLayer.swift | 91 ++
.../CoreAnimation/Layers/TransformLayer.swift | 11 +
.../CoreAnimation/ValueProviderStore.swift | 127 ++
.../CompLayers/CompositionLayer.cpp | 29 +
.../CompLayers/CompositionLayer.hpp | 217 +++
.../CompLayers/CompositionLayer.swift | 164 ++
.../CompLayers/CompositionLayerDelegate.hpp | 13 +
.../CompLayers/ImageCompositionLayer.cpp | 5 +
.../CompLayers/ImageCompositionLayer.hpp | 42 +
.../CompLayers/ImageCompositionLayer.swift | 50 +
.../CompLayers/MaskContainerLayer.cpp | 5 +
.../CompLayers/MaskContainerLayer.hpp | 176 +++
.../CompLayers/MaskContainerLayer.swift | 191 +++
.../CompLayers/NullCompositionLayer.cpp | 5 +
.../CompLayers/NullCompositionLayer.hpp | 17 +
.../CompLayers/NullCompositionLayer.swift | 28 +
.../CompLayers/PreCompositionLayer.cpp | 5 +
.../CompLayers/PreCompositionLayer.hpp | 200 +++
.../CompLayers/PreCompositionLayer.swift | 121 ++
.../CompLayers/ShapeCompositionLayer.cpp | 1354 +++++++++++++++++
.../CompLayers/ShapeCompositionLayer.hpp | 31 +
.../CompLayers/ShapeCompositionLayer.swift | 57 +
.../CompLayers/ShapeUtils/BezierPathUtils.cpp | 487 ++++++
.../CompLayers/ShapeUtils/BezierPathUtils.hpp | 39 +
.../CompLayers/SolidCompositionLayer.swift | 60 +
.../CompLayers/TextCompositionLayer.cpp | 5 +
.../CompLayers/TextCompositionLayer.hpp | 124 ++
.../CompLayers/TextCompositionLayer.swift | 149 ++
.../MainThreadAnimationLayer.cpp | 5 +
.../MainThreadAnimationLayer.hpp | 272 ++++
.../MainThreadAnimationLayer.swift | 279 ++++
.../Utility/CachedImageProvider.swift | 47 +
.../Utility/CompositionLayersInitializer.cpp | 112 ++
.../Utility/CompositionLayersInitializer.hpp | 23 +
.../CompositionLayersInitializer.swift | 90 ++
.../Utility/CoreTextRenderLayer.swift | 320 ++++
.../Utility/InvertedMatteLayer.swift | 59 +
.../Utility/LayerFontProvider.cpp | 5 +
.../Utility/LayerFontProvider.hpp | 45 +
.../Utility/LayerFontProvider.swift | 41 +
.../Utility/LayerImageProvider.cpp | 5 +
.../Utility/LayerImageProvider.hpp | 58 +
.../Utility/LayerImageProvider.swift | 53 +
.../Utility/LayerTextProvider.cpp | 5 +
.../Utility/LayerTextProvider.hpp | 45 +
.../Utility/LayerTextProvider.swift | 40 +
.../Utility/LayerTransformNode.cpp | 5 +
.../Utility/LayerTransformNode.hpp | 201 +++
.../Utility/LayerTransformNode.swift | 144 ++
.../Extensions/ItemsExtension.swift | 97 ++
.../NodeProperties/NodeProperty.cpp | 5 +
.../NodeProperties/NodeProperty.hpp | 55 +
.../NodeProperties/NodeProperty.swift | 55 +
.../Protocols/AnyNodeProperty.cpp | 5 +
.../Protocols/AnyNodeProperty.hpp | 33 +
.../Protocols/AnyNodeProperty.swift | 50 +
.../Protocols/AnyValueContainer.cpp | 5 +
.../Protocols/AnyValueContainer.hpp | 25 +
.../Protocols/AnyValueContainer.swift | 26 +
.../Protocols/HasRenderUpdates.hpp | 13 +
.../NodeProperties/Protocols/HasUpdate.hpp | 14 +
.../Protocols/KeypathSearchable.cpp | 5 +
.../Protocols/KeypathSearchable.hpp | 36 +
.../Protocols/KeypathSearchable.swift | 24 +
.../Protocols/NodePropertyMap.cpp | 5 +
.../Protocols/NodePropertyMap.hpp | 41 +
.../Protocols/NodePropertyMap.swift | 44 +
.../NodeProperties/ValueContainer.cpp | 5 +
.../NodeProperties/ValueContainer.hpp | 58 +
.../NodeProperties/ValueContainer.swift | 47 +
.../DashPatternInterpolator.cpp | 5 +
.../DashPatternInterpolator.hpp | 46 +
.../ValueProviders/GroupInterpolator.swift | 39 +
.../ValueProviders/KeyframeInterpolator.cpp | 5 +
.../ValueProviders/KeyframeInterpolator.hpp | 449 ++++++
.../ValueProviders/KeyframeInterpolator.swift | 253 +++
.../ValueProviders/SingleValueProvider.cpp | 5 +
.../ValueProviders/SingleValueProvider.hpp | 40 +
.../ValueProviders/SingleValueProvider.swift | 43 +
.../Nodes/ModifierNodes/TrimPathNode.swift | 281 ++++
.../Nodes/OutputNodes/GroupOutputNode.swift | 77 +
.../OutputNodes/PassThroughOutputNode.hpp | 70 +
.../OutputNodes/PassThroughOutputNode.swift | 47 +
.../Nodes/OutputNodes/PathOutputNode.swift | 90 ++
.../Renderables/FillRenderer.swift | 71 +
.../Renderables/GradientFillRenderer.swift | 311 ++++
.../Renderables/GradientStrokeRenderer.swift | 66 +
.../LegacyGradientFillRenderer.swift | 153 ++
.../Renderables/StrokeRenderer.swift | 166 ++
.../Nodes/PathNodes/EllipseNode.swift | 139 ++
.../Nodes/PathNodes/PolygonNode.swift | 170 +++
.../Nodes/PathNodes/RectNode.swift | 225 +++
.../Nodes/PathNodes/ShapeNode.swift | 74 +
.../Nodes/PathNodes/StarNode.swift | 222 +++
.../Nodes/RenderContainers/GroupNode.swift | 156 ++
.../Nodes/RenderNodes/FillNode.swift | 90 ++
.../Nodes/RenderNodes/GradientFillNode.swift | 102 ++
.../RenderNodes/GradientStrokeNode.swift | 151 ++
.../Nodes/RenderNodes/StrokeNode.hpp | 36 +
.../Nodes/RenderNodes/StrokeNode.swift | 153 ++
.../Nodes/Text/TextAnimatorNode.hpp | 361 +++++
.../Nodes/Text/TextAnimatorNode.swift | 270 ++++
.../Protocols/AnimatorNode.hpp | 235 +++
.../Protocols/AnimatorNode.swift | 198 +++
.../NodeRenderSystem/Protocols/NodeOutput.hpp | 28 +
.../NodeRenderSystem/Protocols/PathNode.swift | 22 +
.../NodeRenderSystem/Protocols/RenderNode.hpp | 73 +
.../Protocols/RenderNode.swift | 62 +
.../RenderLayers/GetGradientParameters.cpp | 99 ++
.../RenderLayers/GetGradientParameters.hpp | 13 +
.../RenderLayers/ShapeContainerLayer.swift | 74 +
.../RenderLayers/ShapeRenderLayer.swift | 100 ++
.../Sources/Private/Model/Animation.cpp | 5 +
.../Sources/Private/Model/Animation.hpp | 314 ++++
.../Sources/Private/Model/Animation.swift | 160 ++
.../Sources/Private/Model/Assets/Asset.cpp | 5 +
.../Sources/Private/Model/Assets/Asset.hpp | 50 +
.../Sources/Private/Model/Assets/Asset.swift | 43 +
.../Private/Model/Assets/AssetLibrary.cpp | 5 +
.../Private/Model/Assets/AssetLibrary.hpp | 71 +
.../Private/Model/Assets/AssetLibrary.swift | 75 +
.../Private/Model/Assets/ImageAsset.cpp | 5 +
.../Private/Model/Assets/ImageAsset.hpp | 117 ++
.../Private/Model/Assets/ImageAsset.swift | 112 ++
.../Private/Model/Assets/PrecompAsset.cpp | 5 +
.../Private/Model/Assets/PrecompAsset.hpp | 62 +
.../Private/Model/Assets/PrecompAsset.swift | 40 +
.../Model/DictionaryInitializable.swift | 67 +
.../Private/Model/Extensions/Bundle.swift | 34 +
.../KeyedDecodingContainerExtensions.swift | 44 +
.../Model/Keyframes/KeyframeData.swift | 113 ++
.../Private/Model/Keyframes/KeyframeGroup.cpp | 5 +
.../Private/Model/Keyframes/KeyframeGroup.hpp | 150 ++
.../Model/Keyframes/KeyframeGroup.swift | 197 +++
.../Private/Model/Layers/ImageLayerModel.cpp | 5 +
.../Private/Model/Layers/ImageLayerModel.hpp | 38 +
.../Model/Layers/ImageLayerModel.swift | 42 +
.../Private/Model/Layers/LayerModel.cpp | 45 +
.../Private/Model/Layers/LayerModel.hpp | 316 ++++
.../Private/Model/Layers/LayerModel.swift | 228 +++
.../Model/Layers/LayerModelSerialization.cpp | 34 +
.../Model/Layers/LayerModelSerialization.hpp | 14 +
.../Model/Layers/PreCompLayerModel.cpp | 5 +
.../Model/Layers/PreCompLayerModel.hpp | 55 +
.../Model/Layers/PreCompLayerModel.swift | 67 +
.../Private/Model/Layers/ShapeLayerModel.cpp | 5 +
.../Private/Model/Layers/ShapeLayerModel.hpp | 43 +
.../Model/Layers/ShapeLayerModel.swift | 43 +
.../Private/Model/Layers/SolidLayerModel.cpp | 5 +
.../Private/Model/Layers/SolidLayerModel.hpp | 40 +
.../Model/Layers/SolidLayerModel.swift | 56 +
.../Private/Model/Layers/TextLayerModel.cpp | 5 +
.../Private/Model/Layers/TextLayerModel.hpp | 81 +
.../Private/Model/Layers/TextLayerModel.swift | 58 +
.../Private/Model/Objects/DashElement.cpp | 5 +
.../Private/Model/Objects/DashElement.hpp | 78 +
.../Private/Model/Objects/DashPattern.swift | 44 +
.../Private/Model/Objects/FitzModifier.cpp | 5 +
.../Private/Model/Objects/FitzModifier.hpp | 53 +
.../Sources/Private/Model/Objects/Marker.cpp | 5 +
.../Sources/Private/Model/Objects/Marker.hpp | 52 +
.../Private/Model/Objects/Marker.swift | 33 +
.../Sources/Private/Model/Objects/Mask.cpp | 5 +
.../Sources/Private/Model/Objects/Mask.hpp | 139 ++
.../Sources/Private/Model/Objects/Mask.swift | 80 +
.../Private/Model/Objects/Transform.cpp | 5 +
.../Private/Model/Objects/Transform.hpp | 267 ++++
.../Private/Model/Objects/Transform.swift | 179 +++
.../Private/Model/ShapeItems/Ellipse.cpp | 5 +
.../Private/Model/ShapeItems/Ellipse.hpp | 62 +
.../Private/Model/ShapeItems/Ellipse.swift | 75 +
.../Sources/Private/Model/ShapeItems/Fill.cpp | 6 +
.../Sources/Private/Model/ShapeItems/Fill.hpp | 74 +
.../Private/Model/ShapeItems/Fill.swift | 74 +
.../Private/Model/ShapeItems/GradientFill.cpp | 5 +
.../Private/Model/ShapeItems/GradientFill.hpp | 116 ++
.../Model/ShapeItems/GradientFill.swift | 124 ++
.../Model/ShapeItems/GradientStroke.cpp | 5 +
.../Model/ShapeItems/GradientStroke.hpp | 191 +++
.../Model/ShapeItems/GradientStroke.swift | 186 +++
.../Private/Model/ShapeItems/Group.cpp | 5 +
.../Private/Model/ShapeItems/Group.hpp | 51 +
.../Private/Model/ShapeItems/Group.swift | 43 +
.../Private/Model/ShapeItems/Merge.cpp | 5 +
.../Private/Model/ShapeItems/Merge.hpp | 62 +
.../Private/Model/ShapeItems/Merge.swift | 59 +
.../Private/Model/ShapeItems/Rectangle.cpp | 5 +
.../Private/Model/ShapeItems/Rectangle.hpp | 99 ++
.../Private/Model/ShapeItems/Rectangle.swift | 73 +
.../Private/Model/ShapeItems/Repeater.cpp | 5 +
.../Private/Model/ShapeItems/Repeater.hpp | 98 ++
.../Private/Model/ShapeItems/Repeater.swift | 136 ++
.../Model/ShapeItems/RoundedRectangle.cpp | 5 +
.../Model/ShapeItems/RoundedRectangle.hpp | 75 +
.../Private/Model/ShapeItems/Shape.cpp | 5 +
.../Private/Model/ShapeItems/Shape.hpp | 53 +
.../Private/Model/ShapeItems/Shape.swift | 56 +
.../Private/Model/ShapeItems/ShapeItem.cpp | 55 +
.../Private/Model/ShapeItems/ShapeItem.hpp | 209 +++
.../Private/Model/ShapeItems/ShapeItem.swift | 163 ++
.../Model/ShapeItems/ShapeTransform.cpp | 5 +
.../Model/ShapeItems/ShapeTransform.hpp | 89 ++
.../Model/ShapeItems/ShapeTransform.swift | 136 ++
.../Sources/Private/Model/ShapeItems/Star.cpp | 5 +
.../Sources/Private/Model/ShapeItems/Star.hpp | 131 ++
.../Private/Model/ShapeItems/Star.swift | 132 ++
.../Private/Model/ShapeItems/Stroke.cpp | 5 +
.../Private/Model/ShapeItems/Stroke.hpp | 140 ++
.../Private/Model/ShapeItems/Stroke.swift | 102 ++
.../Sources/Private/Model/ShapeItems/Trim.cpp | 5 +
.../Sources/Private/Model/ShapeItems/Trim.hpp | 60 +
.../Private/Model/ShapeItems/Trim.swift | 78 +
.../Sources/Private/Model/Text/Font.cpp | 5 +
.../Sources/Private/Model/Text/Font.hpp | 103 ++
.../Sources/Private/Model/Text/Font.swift | 61 +
.../Sources/Private/Model/Text/Glyph.cpp | 5 +
.../Sources/Private/Model/Text/Glyph.hpp | 108 ++
.../Sources/Private/Model/Text/Glyph.swift | 96 ++
.../Private/Model/Text/TextAnimator.cpp | 5 +
.../Private/Model/Text/TextAnimator.hpp | 183 +++
.../Private/Model/Text/TextAnimator.swift | 165 ++
.../Private/Model/Text/TextDocument.cpp | 5 +
.../Private/Model/Text/TextDocument.hpp | 184 +++
.../Private/Model/Text/TextDocument.swift | 123 ++
.../Sources/Private/Parsing/JsonParsing.cpp | 219 +++
.../Sources/Private/Parsing/JsonParsing.hpp | 52 +
.../Sources/Private/RootAnimationLayer.swift | 51 +
.../Debugging/AnimatorNodeDebugging.swift | 25 +
.../Utility/Debugging/LayerDebugging.swift | 228 +++
.../Utility/Debugging/TestHelpers.swift | 10 +
.../AnimationKeypathExtension.swift | 266 ++++
.../Utility/Extensions/BlendMode+Filter.swift | 31 +
.../Utility/Extensions/CGColor+RGB.swift | 22 +
.../Extensions/CGFloatExtensions.swift | 152 ++
.../Utility/Extensions/DataExtension.swift | 27 +
.../Private/Utility/Extensions/MathKit.swift | 451 ++++++
.../Utility/Extensions/StringExtensions.swift | 39 +
.../Utility/Helpers/AnimationContext.swift | 91 ++
.../InterpolatableExtensions.swift | 135 ++
.../Interpolatable/KeyframeExtensions.swift | 46 +
.../Private/Utility/Primitives/BezierPath.cpp | 134 ++
.../Private/Utility/Primitives/BezierPath.hpp | 594 ++++++++
.../Utility/Primitives/BezierPath.swift | 488 ++++++
.../Utility/Primitives/CGPointExtension.swift | 35 +
.../Utility/Primitives/ColorExtension.swift | 112 ++
.../Utility/Primitives/CompoundBezierPath.cpp | 5 +
.../Utility/Primitives/CompoundBezierPath.hpp | 176 +++
.../Primitives/CompoundBezierPath.swift | 172 +++
.../Utility/Primitives/CoordinateSpace.cpp | 5 +
.../Utility/Primitives/CoordinateSpace.hpp | 13 +
.../Utility/Primitives/CurveVertex.cpp | 5 +
.../Utility/Primitives/CurveVertex.hpp | 197 +++
.../Utility/Primitives/CurveVertex.swift | 186 +++
.../Utility/Primitives/PathElement.cpp | 5 +
.../Utility/Primitives/PathElement.hpp | 90 ++
.../Utility/Primitives/PathElement.swift | 75 +
.../Primitives/VectorsExtensions.swift | 345 +++++
.../Public/Animation/AnimationPublic.swift | 269 ++++
.../Public/Animation/AnimationView.swift | 1302 ++++++++++++++++
.../Animation/AnimationViewInitializers.swift | 107 ++
.../AnimationCacheProvider.swift | 22 +
.../AnimationCache/LRUAnimationCache.swift | 61 +
.../DynamicProperties/AnimationKeypath.cpp | 5 +
.../DynamicProperties/AnimationKeypath.hpp | 51 +
.../DynamicProperties/AnimationKeypath.swift | 49 +
.../DynamicProperties/AnyValueProvider.cpp | 5 +
.../DynamicProperties/AnyValueProvider.hpp | 38 +
.../DynamicProperties/AnyValueProvider.swift | 132 ++
.../ValueProviders/ColorValueProvider.swift | 84 +
.../ValueProviders/FloatValueProvider.swift | 70 +
.../GradientValueProvider.swift | 125 ++
.../ValueProviders/PointValueProvider.swift | 69 +
.../ValueProviders/SizeValueProvider.swift | 70 +
.../FontProvider/AnimationFontProvider.cpp | 5 +
.../FontProvider/AnimationFontProvider.hpp | 31 +
.../FontProvider/AnimationFontProvider.swift | 35 +
.../ImageProvider/AnimationImageProvider.hpp | 16 +
.../AnimationImageProvider.swift | 21 +
.../Public/Keyframes/Interpolatable.cpp | 15 +
.../Public/Keyframes/Interpolatable.hpp | 14 +
.../Public/Keyframes/Interpolatable.swift | 253 +++
.../Sources/Public/Keyframes/Keyframe.cpp | 5 +
.../Sources/Public/Keyframes/Keyframe.hpp | 256 ++++
.../Sources/Public/Keyframes/Keyframe.swift | 92 ++
.../Public/Keyframes/ValueInterpolators.cpp | 5 +
.../Public/Keyframes/ValueInterpolators.hpp | 231 +++
.../Sources/Public/Logging/LottieLogger.swift | 108 ++
.../Sources/Public/LottieConfiguration.swift | 143 ++
.../Public/Primitives/AnimationTime.cpp | 5 +
.../Public/Primitives/AnimationTime.hpp | 14 +
.../Public/Primitives/AnimationTime.swift | 15 +
.../Sources/Public/Primitives/AnyValue.cpp | 5 +
.../Sources/Public/Primitives/AnyValue.hpp | 245 +++
.../Sources/Public/Primitives/CALayer.hpp | 760 +++++++++
.../Sources}/Public/Primitives/CALayer.mm | 0
.../Sources}/Public/Primitives/CALayerCocoa.h | 0
.../Public/Primitives/CGContextSkiaImpl.h | 51 +
.../Public/Primitives/CGContextSkiaImpl.mm | 286 ++++
.../Public/Primitives/CGContextTVGImpl.h | 65 +
.../Public/Primitives/CGContextTVGImpl.mm | 293 ++++
.../Sources/Public/Primitives/CGPath.cpp | 194 +++
.../Sources}/Public/Primitives/CGPath.hpp | 0
.../Sources/Public/Primitives/CGPath.mm | 240 +++
.../Sources}/Public/Primitives/CGPathCocoa.h | 0
.../Sources/Public/Primitives/CTFont.cpp | 5 +
.../Sources/Public/Primitives/CTFont.hpp | 12 +
.../Sources/Public/Primitives/Color.cpp | 29 +
.../Sources/Public/Primitives/Color.hpp | 144 ++
.../Sources/Public/Primitives/Color.swift | 45 +
.../Sources/Public/Primitives/DashPattern.cpp | 5 +
.../Sources/Public/Primitives/DashPattern.hpp | 18 +
.../Public/Primitives/DrawingAttributes.hpp | 22 +
.../Public/Primitives/GradientColorSet.cpp | 5 +
.../Public/Primitives/GradientColorSet.hpp | 42 +
.../Sources/Public/Primitives/RenderTree.cpp | 140 ++
.../Sources/Public/Primitives/RenderTree.hpp | 172 +++
.../Sources}/Public/Primitives/Vectors.hpp | 28 +-
.../Sources/Public/Primitives/Vectors.mm | 518 +++++++
.../Sources/Public/Primitives/Vectors.swift | 38 +
.../Sources}/Public/Primitives/VectorsCocoa.h | 0
.../TextProvider/AnimationTextProvider.cpp | 5 +
.../TextProvider/AnimationTextProvider.hpp | 48 +
.../TextProvider/AnimationTextProvider.swift | 53 +
.../Sources/Public/iOS/AnimatedButton.swift | 78 +
.../Sources/Public/iOS/AnimatedControl.swift | 177 +++
.../Sources/Public/iOS/AnimatedSwitch.swift | 225 +++
.../Sources/Public/iOS/AnimationSubview.swift | 20 +
.../Public/iOS/AnimationViewBase.swift | 78 +
.../Public/iOS/BundleImageProvider.swift | 90 ++
.../CompatibleAnimationKeypath.swift | 33 +
.../CompatibleAnimationView.swift | 323 ++++
.../Public/iOS/FilepathImageProvider.swift | 60 +
.../Sources/Public/iOS/UIColorExtension.swift | 21 +
Tests/LottieMetalTest/QOILoader/BUILD | 33 +
.../PublicHeaders/QOILoader/QOILoader.h | 10 +
.../QOILoader/Sources/QOILoader.m | 64 +
Tests/LottieMetalTest/QOILoader/Sources/qoi.h | 649 ++++++++
.../SoftwareLottieRenderer/BUILD | 34 +
.../SoftwareLottieRenderer.h | 20 +
.../SoftwareLottieRenderer/Sources/Canvas.h | 128 ++
.../Sources/CoreGraphicsCanvasImpl.h | 72 +
.../Sources/CoreGraphicsCanvasImpl.mm | 462 ++++++
.../Sources/SoftwareLottieRenderer.mm | 261 ++++
.../Sources/AppDelegate.swift | 0
.../Sources/CompareToReferenceRendering.swift | 317 ++++
.../LottieMetalTest/Sources/ImageUtils.swift | 41 +
.../Sources/ViewController.swift | 205 +++
.../Sources/LegacyReachability.m | 5 +-
.../PublicHeaders/LottieCpp/CGPath.h | 80 +
.../PublicHeaders/LottieCpp/CGPathCocoa.h | 47 +
.../LottieCpp/LottieAnimationContainer.h | 2 +-
.../PublicHeaders/LottieCpp/LottieCpp.h | 14 +-
.../PublicHeaders/LottieCpp/Vectors.h | 379 +++++
.../PublicHeaders/LottieCpp/VectorsCocoa.h | 17 +
.../LottieCpp}/lottiejson11.hpp | 0
.../CompLayers/CompositionLayer.hpp | 6 +-
.../CompLayers/ImageCompositionLayer.hpp | 9 +-
.../CompLayers/ShapeCompositionLayer.cpp | 16 -
.../MainThreadAnimationLayer.hpp | 2 +-
.../NodeRenderSystem/Protocols/NodeOutput.hpp | 2 +-
.../Lottie/Private/Model/Animation.hpp | 2 +-
.../Private/Model/Assets/ImageAsset.hpp | 6 +
.../Model/Layers/LayerModelSerialization.hpp | 2 +-
.../Model/Layers/PreCompLayerModel.hpp | 2 +-
.../Private/Model/ShapeItems/Ellipse.hpp | 2 +-
.../Lottie/Private/Model/ShapeItems/Fill.hpp | 2 +-
.../Lottie/Private/Model/ShapeItems/Trim.hpp | 2 +-
.../Private/Model/Text/TextAnimator.hpp | 2 +-
.../Private/Model/Text/TextDocument.hpp | 2 +-
.../Lottie/Private/Parsing/JsonParsing.hpp | 2 +-
.../Private/Utility/Primitives/BezierPath.hpp | 14 +-
.../Utility/Primitives/CurveVertex.hpp | 4 +-
.../ImageProvider/AnimationImageProvider.hpp | 2 +-
.../Lottie/Public/Keyframes/Keyframe.hpp | 2 +-
.../Public/Keyframes/ValueInterpolators.hpp | 2 +-
.../Lottie/Public/Primitives/AnyValue.hpp | 2 +-
.../Lottie/Public/Primitives/CALayer.cpp | 37 +
.../Lottie/Public/Primitives/CALayer.hpp | 83 +-
.../Lottie/Public/Primitives/CGPath.cpp | 2 +-
.../Lottie/Public/Primitives/CGPath.mm | 4 +-
.../Lottie/Public/Primitives/RenderTree.hpp | 2 +-
.../Lottie/Public/Primitives/Vectors.mm | 134 +-
.../Sources/LottieAnimationContainer.mm | 417 +++--
.../LottieCpp/Sources/LottieRenderTree.mm | 6 +-
.../Sources/lottiejson11/lottiejson11.cpp | 2 +-
.../LottieMetalAnimatedStickerNode.swift | 28 +-
submodules/sqlcipher/BUILD | 1 +
426 files changed, 39240 insertions(+), 428 deletions(-)
delete mode 100644 Tests/LottieMesh/Resources/Cat.json
delete mode 100644 Tests/LottieMesh/Resources/Fireworks.json
delete mode 100644 Tests/LottieMesh/Resources/SUPER Fire.json
delete mode 100644 Tests/LottieMesh/Sources/ViewController.swift
create mode 100644 Tests/LottieMetalTest/.gitignore
rename Tests/{LottieMesh => LottieMetalTest}/BUILD (58%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/BUILD
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/LayerProperty.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StarAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CompatibilityTracker.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CoreAnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ImageLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/SolidLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TextLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TransformLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/ValueProviderStore.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayerDelegate.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeUtils/BezierPathUtils.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeUtils/BezierPathUtils.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/HasRenderUpdates.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/HasUpdate.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/DashPatternInterpolator.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/DashPatternInterpolator.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/NodeOutput.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/GetGradientParameters.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/GetGradientParameters.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Animation.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Animation.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Animation.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/Asset.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/Asset.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/Asset.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/AssetLibrary.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/AssetLibrary.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/AssetLibrary.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/ImageAsset.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/ImageAsset.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/ImageAsset.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/PrecompAsset.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/PrecompAsset.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Assets/PrecompAsset.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/DictionaryInitializable.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Extensions/Bundle.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Keyframes/KeyframeData.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Keyframes/KeyframeGroup.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Keyframes/KeyframeGroup.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Keyframes/KeyframeGroup.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ImageLayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ImageLayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ImageLayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/LayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/LayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/LayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/LayerModelSerialization.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/LayerModelSerialization.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/PreCompLayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/PreCompLayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/PreCompLayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ShapeLayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ShapeLayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/ShapeLayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/SolidLayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/SolidLayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/SolidLayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/TextLayerModel.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/TextLayerModel.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Layers/TextLayerModel.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/DashElement.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/DashElement.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/DashPattern.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/FitzModifier.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/FitzModifier.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Marker.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Marker.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Marker.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Mask.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Mask.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Mask.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Transform.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Transform.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Objects/Transform.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Ellipse.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Ellipse.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Ellipse.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Fill.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Fill.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Fill.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientFill.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientFill.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientFill.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientStroke.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientStroke.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/GradientStroke.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Group.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Group.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Group.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Merge.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Merge.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Merge.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Rectangle.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Rectangle.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Rectangle.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Repeater.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Repeater.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Repeater.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/RoundedRectangle.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/RoundedRectangle.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Shape.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Shape.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Shape.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeItem.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeItem.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeItem.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeTransform.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeTransform.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/ShapeTransform.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Star.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Star.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Star.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Stroke.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Stroke.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Stroke.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Trim.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Trim.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/ShapeItems/Trim.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Font.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Font.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Font.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Glyph.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Glyph.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/Glyph.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextAnimator.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextAnimator.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextAnimator.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextDocument.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextDocument.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Model/Text/TextDocument.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Parsing/JsonParsing.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Parsing/JsonParsing.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/RootAnimationLayer.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Debugging/LayerDebugging.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Debugging/TestHelpers.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/BlendMode+Filter.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/CGColor+RGB.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/CGFloatExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/DataExtension.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/MathKit.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Extensions/StringExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Helpers/AnimationContext.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/BezierPath.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/BezierPath.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/BezierPath.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CGPointExtension.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/ColorExtension.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CompoundBezierPath.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CompoundBezierPath.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CompoundBezierPath.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CoordinateSpace.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CoordinateSpace.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CurveVertex.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CurveVertex.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/CurveVertex.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/PathElement.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/PathElement.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/PathElement.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Private/Utility/Primitives/VectorsExtensions.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Animation/AnimationPublic.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Animation/AnimationView.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Animation/AnimationViewInitializers.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/AnimationCache/AnimationCacheProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/AnimationCache/LRUAnimationCache.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnimationKeypath.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnimationKeypath.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnimationKeypath.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnyValueProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnyValueProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/AnyValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/FontProvider/AnimationFontProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/FontProvider/AnimationFontProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/FontProvider/AnimationFontProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/ImageProvider/AnimationImageProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/ImageProvider/AnimationImageProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Interpolatable.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Interpolatable.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Interpolatable.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Keyframe.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Keyframe.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/Keyframe.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/ValueInterpolators.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Keyframes/ValueInterpolators.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Logging/LottieLogger.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/LottieConfiguration.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/AnimationTime.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/AnimationTime.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/AnimationTime.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/AnyValue.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/AnyValue.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CALayer.hpp
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/CALayer.mm (100%)
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/CALayerCocoa.h (100%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGContextSkiaImpl.h
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGContextSkiaImpl.mm
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGContextTVGImpl.h
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGContextTVGImpl.mm
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGPath.cpp
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/CGPath.hpp (100%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CGPath.mm
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/CGPathCocoa.h (100%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CTFont.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/CTFont.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/Color.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/Color.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/Color.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/DashPattern.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/DashPattern.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/DrawingAttributes.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/GradientColorSet.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/GradientColorSet.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/RenderTree.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/RenderTree.hpp
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/Vectors.hpp (94%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/Vectors.mm
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/Primitives/Vectors.swift
rename {submodules/TelegramUI/Components/LottieCpp/Sources/Lottie => Tests/LottieMetalTest/LottieSwift/Sources}/Public/Primitives/VectorsCocoa.h (100%)
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/TextProvider/AnimationTextProvider.cpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/TextProvider/AnimationTextProvider.hpp
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/TextProvider/AnimationTextProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/AnimatedButton.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/AnimatedControl.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/AnimatedSwitch.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/AnimationSubview.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/AnimationViewBase.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/BundleImageProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/FilepathImageProvider.swift
create mode 100644 Tests/LottieMetalTest/LottieSwift/Sources/Public/iOS/UIColorExtension.swift
create mode 100644 Tests/LottieMetalTest/QOILoader/BUILD
create mode 100644 Tests/LottieMetalTest/QOILoader/PublicHeaders/QOILoader/QOILoader.h
create mode 100644 Tests/LottieMetalTest/QOILoader/Sources/QOILoader.m
create mode 100644 Tests/LottieMetalTest/QOILoader/Sources/qoi.h
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/BUILD
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/PublicHeaders/SoftwareLottieRenderer/SoftwareLottieRenderer.h
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/Canvas.h
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/CoreGraphicsCanvasImpl.h
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/CoreGraphicsCanvasImpl.mm
create mode 100644 Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/SoftwareLottieRenderer.mm
rename Tests/{LottieMesh => LottieMetalTest}/Sources/AppDelegate.swift (100%)
create mode 100644 Tests/LottieMetalTest/Sources/CompareToReferenceRendering.swift
create mode 100644 Tests/LottieMetalTest/Sources/ImageUtils.swift
create mode 100644 Tests/LottieMetalTest/Sources/ViewController.swift
create mode 100644 submodules/TelegramUI/Components/LottieCpp/PublicHeaders/LottieCpp/CGPath.h
create mode 100644 submodules/TelegramUI/Components/LottieCpp/PublicHeaders/LottieCpp/CGPathCocoa.h
create mode 100644 submodules/TelegramUI/Components/LottieCpp/PublicHeaders/LottieCpp/Vectors.h
create mode 100644 submodules/TelegramUI/Components/LottieCpp/PublicHeaders/LottieCpp/VectorsCocoa.h
rename submodules/TelegramUI/Components/LottieCpp/{Sources/lottiejson11 => PublicHeaders/LottieCpp}/lottiejson11.hpp (100%)
create mode 100644 submodules/TelegramUI/Components/LottieCpp/Sources/Lottie/Public/Primitives/CALayer.cpp
diff --git a/.bazelrc b/.bazelrc
index 7e6c513edb..5325dfd50d 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -13,6 +13,8 @@ build --per_file_copt="third-party/webrtc/.*\.mm$","@-std=c++17"
build --per_file_copt="submodules/LottieMeshSwift/LottieMeshBinding/Sources/.*\.mm$","@-std=c++17"
build --per_file_copt="submodules/TelegramUI/Components/LottieCpp/Sources/.*\.mm$","@-std=c++17"
build --per_file_copt="submodules/TelegramUI/Components/LottieCpp/Sources/.*\.cpp$","@-std=c++17"
+build --per_file_copt="Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/.*\.cpp$","@-std=c++17"
+build --per_file_copt="Tests/LottieMetalTest/SoftwareLottieRenderer/Sources/.*\.mm$","@-std=c++17"
build --swiftcopt=-whole-module-optimization
diff --git a/Tests/LottieMesh/Resources/Cat.json b/Tests/LottieMesh/Resources/Cat.json
deleted file mode 100644
index 9ed36bd9be..0000000000
--- a/Tests/LottieMesh/Resources/Cat.json
+++ /dev/null
@@ -1 +0,0 @@
-{"tgs":1,"v":"5.5.2","fr":60,"ip":0,"op":120,"w":512,"h":512,"nm":"Cat Kissing heart","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 1","parent":28,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[144.75,81.342,0]},"a":{"a":0,"k":[50,50,0]}},"ao":0,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"f1","parent":4,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[16.902,56.403,0],"to":[-10.812,-9.286,0],"ti":[-4.15,9.939,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[7.578,18.211,0],"to":[-3.682,8.922,0],"ti":[-11.474,-9.33,0]},{"t":100,"s":[16.902,56.403,0]}]},"a":{"a":0,"k":[41.268,20.785,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0.651,-0.673],[8.733,-1.767],[-19.861,3.406],[-2.625,-8.662],[-1,0.306],[12.5,-2.186],[-32.67,3.532],[-9.545,2.662]],"o":[[-7.894,8.108],[-18.845,2.227],[9.22,-1.644],[0.979,3.228],[-9.903,3.028],[-27.269,4.551],[11.584,-0.098],[1.044,-0.292]],"v":[[22.717,-18.677],[-4.571,-15.821],[6.137,12.114],[33.53,0.445],[31.529,4.186],[7.089,18.038],[-1.84,-22.491],[21.727,-20.236]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":30,"s":[{"i":[[0.793,-0.267],[8.733,-1.767],[-21.574,0.524],[-8.505,-5.453],[1.254,0.321],[7.891,-1.169],[-32.67,3.532],[-9.454,0.339]],"o":[[-10.484,3.106],[-19.463,2.918],[10.711,-0.207],[2.701,1.732],[-6.741,1.29],[-27.325,3.017],[11.584,-0.098],[1.054,-0.034]],"v":[[26.863,-13.654],[-3.731,-17.014],[2.892,8.287],[24.973,7.108],[20.51,8.322],[3.334,13.632],[-1.853,-22.754],[27.297,-16.351]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0.929,0.119],[8.733,-1.767],[-23.207,-2.223],[-1.817,-2.005],[3.403,0.335],[3.497,-0.198],[-32.67,3.532],[-9.368,-1.877]],"o":[[-12.954,-1.662],[-20.051,3.577],[12.132,1.162],[2.265,2.499],[-3.727,-0.367],[-27.379,1.554],[11.584,-0.098],[1.063,0.213]],"v":[[30.815,-8.865],[-2.93,-18.152],[-0.201,4.64],[15.987,10.187],[9.335,9.402],[-0.247,9.432],[-1.866,-23.005],[32.608,-12.648]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[0.871,-0.045],[8.733,-1.767],[-22.513,-1.055],[-4.661,-3.471],[2.489,0.329],[5.366,-0.611],[-32.67,3.532],[-9.405,-0.935]],"o":[[-11.903,0.366],[-19.801,3.296],[11.528,0.58],[2.451,2.173],[-5.009,0.337],[-27.356,2.176],[11.584,-0.098],[1.059,0.108]],"v":[[29.134,-10.902],[-3.271,-17.668],[1.115,6.191],[19.808,8.877],[14.087,8.943],[1.276,11.218],[-1.861,-22.898],[36.162,-12.839]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":65,"s":[{"i":[[0.793,-0.267],[8.733,-1.767],[-21.574,0.524],[-8.505,-5.453],[1.254,0.321],[7.891,-1.169],[-32.67,3.532],[-9.454,0.339]],"o":[[-10.484,3.106],[-19.463,2.918],[10.711,-0.207],[2.701,1.732],[-6.741,1.29],[-27.325,3.017],[11.584,-0.098],[1.054,-0.034]],"v":[[26.863,-13.654],[-3.731,-17.014],[2.892,8.287],[24.973,7.108],[20.51,8.322],[3.334,13.632],[-1.853,-22.754],[27.297,-16.351]],"c":true}]},{"t":100,"s":[{"i":[[0.651,-0.673],[8.733,-1.767],[-19.861,3.406],[-2.625,-8.662],[-1,0.306],[12.5,-2.186],[-32.67,3.532],[-9.545,2.662]],"o":[[-7.894,8.108],[-18.845,2.227],[9.22,-1.644],[0.979,3.228],[-9.903,3.028],[-27.269,4.551],[11.584,-0.098],[1.044,-0.292]],"v":[[22.717,-18.677],[-4.571,-15.821],[6.137,12.114],[33.53,0.445],[31.529,4.186],[7.089,18.038],[-1.84,-22.491],[21.727,-20.236]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[34.759,22.839]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[-9.375,0.938],[6.562,4.312]],"o":[[-12.188,3.938],[9.375,-0.937],[-6.562,-4.313]],"v":[[-6.437,-5],[-0.687,8],[12.063,-4.625]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[-9.375,0.938],[6.562,4.312]],"o":[[-12.188,3.938],[9.375,-0.937],[-6.562,-4.313]],"v":[[-7.605,-7.323],[-3.029,-8.211],[10.895,-6.948]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[-9.375,0.938],[6.562,4.312]],"o":[[-12.188,3.938],[9.375,-0.937],[-6.562,-4.313]],"v":[[-6.437,-5],[-0.687,8],[12.063,-4.625]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[35.293,11.008]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[5,-3],[-7,-9],[-8,2],[-7.143,4.495]],"o":[[-4,-5],[-5,3],[7,9],[8,-2],[7.417,-4.666]],"v":[[3.042,-13],[-18.958,-15],[-20.958,8],[2.042,16],[20.542,0.916]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[{"i":[[1.874,0.695],[6.475,-3.732],[-7,-9],[-9.105,4.499],[-7.143,4.495]],"o":[[-4.562,-4.055],[-5.035,2.939],[7,9],[8.308,-3.769],[2.475,-4.597]],"v":[[3.873,-14.069],[-19.066,-15.353],[-22.312,6.098],[3.572,11.589],[22.755,-0.962]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[5.712,2.12],[9.496,-5.232],[-7,-9],[-9.131,-6.24],[-7.143,4.495]],"o":[[-5.712,-2.12],[-5.107,2.814],[7,9],[8,-2],[-7.646,-4.456]],"v":[[5.575,-16.258],[-19.287,-16.076],[-25.084,2.203],[8.536,12.446],[27.288,-4.807]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":75,"s":[{"i":[[1.874,0.695],[6.475,-3.732],[-7,-9],[-9.105,4.499],[-7.143,4.495]],"o":[[-4.562,-4.055],[-5.035,2.939],[7,9],[8.308,-3.769],[2.475,-4.597]],"v":[[3.873,-14.069],[-19.066,-15.353],[-22.312,6.098],[3.572,11.589],[22.755,-0.962]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[5,-3],[-7,-9],[-8,2],[-7.143,4.495]],"o":[[-4,-5],[-5,3],[7,9],[8,-2],[7.417,-4.666]],"v":[[3.042,-13],[-18.958,-15],[-20.958,8],[2.042,16],[20.542,0.916]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[41.94,21.383]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"f2","parent":4,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[-2.767,39.504,0],"to":[-1.188,-2.175,0],"ti":[-1.923,2.047,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[-2.018,31.694,0],"to":[-1.855,1.914,0],"ti":[-1.109,-2.178,0]},{"t":100,"s":[-2.767,39.504,0]}]},"a":{"a":0,"k":[26.122,23.263,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0.756,-0.2],[10.97,-6.857],[-1.658,-5.764],[-8.699,0.471],[3.793,-0.425],[4.467,6.13],[-13.35,2.744],[-1.28,-0.875]],"o":[[-7.171,1.887],[-4.457,2.666],[2.673,8.425],[4.046,-0.22],[-12.093,1.336],[-8.359,-11.275],[12.733,-2.744],[1.179,0.806]],"v":[[22.538,-7.906],[-5.818,-11.696],[-11.643,3.163],[11.24,15.109],[11.836,21.079],[-15.357,10.918],[-3.292,-19.671],[22.538,-9.906]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0.756,-0.2],[9.396,-1.276],[-0.159,-8.296],[-6.871,-2.834],[3.795,-0.409],[4.224,10.934],[-13.35,2.744],[-1.28,-0.875]],"o":[[-7.171,1.887],[-5.267,0.715],[0.25,13.056],[3.746,1.545],[-13.734,1.479],[-3.273,-8.473],[12.733,-2.744],[1.179,0.806]],"v":[[22.538,-7.906],[-2.349,-14.456],[-15.161,-3.212],[14.168,11.861],[8.431,13.362],[-20.118,0.478],[-3.292,-19.671],[22.538,-9.906]],"c":true}]},{"t":100,"s":[{"i":[[0.756,-0.2],[10.97,-6.857],[-1.658,-5.764],[-8.699,0.471],[3.793,-0.425],[4.467,6.13],[-13.35,2.744],[-1.28,-0.875]],"o":[[-7.171,1.887],[-4.457,2.666],[2.673,8.425],[4.046,-0.22],[-12.093,1.336],[-8.359,-11.275],[12.733,-2.744],[1.179,0.806]],"v":[[22.538,-7.906],[-5.818,-11.696],[-11.643,3.163],[11.24,15.109],[11.836,21.079],[-15.357,10.918],[-3.292,-19.671],[22.538,-9.906]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[23.966,22.665]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[-8.188,-1.187],[4.5,6.375]],"o":[[-7.125,0.75],[8.187,1.188],[-4.5,-6.375]],"v":[[-5.969,-7.063],[-7.469,5.188],[11.156,0.688]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[-8.231,-0.842],[4.5,6.375]],"o":[[-7.125,0.75],[14.536,1.487],[-4.5,-6.375]],"v":[[-5.969,-7.063],[-7.165,-5.362],[11.157,0.688]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[-8.188,-1.187],[4.5,6.375]],"o":[[-7.125,0.75],[8.187,1.188],[-4.5,-6.375]],"v":[[-5.969,-7.063],[-7.469,5.188],[11.156,0.688]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[30.347,13.072]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[4.666,-6.333],[-3,-6],[-10,1]],"o":[[-7,-8],[-4.667,6.334],[3,6],[10,-1]],"v":[[15,-8.667],[-12.333,-13.001],[-16,10.333],[9,18.333]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[6.92,-3.741],[-1.692,-6.098],[-17.478,-1.491]],"o":[[-7,-8],[-4.634,2.506],[3.335,12.017],[10.014,0.854]],"v":[[15,-8.667],[-12.625,-13.957],[-19.628,-1.106],[11.685,12.153]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[4.666,-6.333],[-3,-6],[-10,1]],"o":[[-7,-8],[-4.667,6.334],[3,6],[10,-1]],"v":[[15,-8.667],[-12.333,-13.001],[-16,10.333],[9,18.333]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[26.504,22.426]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"paw","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":10,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[107]},{"t":100,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[111.441,291.275,0],"to":[15.458,-25.875,0],"ti":[-18.418,-3.424,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[183.941,262.775,0],"to":[-17.832,-3.201,0],"ti":[15.224,-27.332,0]},{"t":100,"s":[111.441,291.275,0]}]},"a":{"a":0,"k":[58.556,54.608,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[6.209,-5.835],[-7.703,-6.298],[-12.093,-4.587],[0.908,-0.236],[0,0],[13.005,13.809],[-5.857,11.364],[-0.037,-3.497]],"o":[[-11.16,10.306],[7.74,6.78],[0.881,0.334],[0,0],[-14.998,3.791],[-8.334,-8.919],[6.873,-13.117],[0.031,2.937]],"v":[[-12.669,-16.371],[-7.044,17.83],[26.777,14.898],[26.678,16.739],[26.635,16.75],[-13.581,19.769],[-21.801,-14.878],[10.484,-30.081]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[{"i":[[17.681,-13.462],[-5.195,-3.752],[-4.316,-1.138],[0.908,-0.236],[0,0],[7.616,6.279],[-5.857,11.364],[-1.898,-5.319]],"o":[[-11.16,10.306],[5.195,3.752],[4.245,-0.016],[0,0],[-4.356,0.822],[-8.14,-7.079],[12.606,-17.343],[0.987,2.766]],"v":[[-13.1,-16.985],[-9.293,9.312],[11.728,15.879],[14.154,19.355],[11.429,19.77],[-13.505,12.501],[-21.801,-14.878],[21.891,-30.155]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[6.209,-5.835],[-8.027,-3.588],[-2.125,-0.389],[-12.491,-10.035],[1.162,1.384],[8.488,4.463],[-5.857,11.364],[-0.037,-3.497]],"o":[[-11.16,10.306],[1.656,0.74],[13.201,2.417],[1.388,1.115],[-2.312,-2.754],[-7.453,-3.919],[6.873,-13.117],[0.031,2.937]],"v":[[-12.669,-16.371],[-7.853,13.045],[1.242,15.385],[32.684,23.987],[27.093,25.302],[-11.742,16.592],[-21.801,-14.878],[10.484,-30.081]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":75,"s":[{"i":[[17.681,-13.462],[-5.195,-3.752],[-4.316,-1.138],[0.908,-0.236],[0,0],[7.616,6.279],[-5.857,11.364],[-1.898,-5.319]],"o":[[-11.16,10.306],[5.195,3.752],[4.245,-0.016],[0,0],[-4.356,0.822],[-8.14,-7.079],[12.606,-17.343],[0.987,2.766]],"v":[[-13.1,-16.985],[-9.293,9.312],[11.728,15.879],[14.154,19.355],[11.429,19.77],[-13.505,12.501],[-21.801,-14.878],[21.891,-30.155]],"c":true}]},{"t":100,"s":[{"i":[[6.209,-5.835],[-7.703,-6.298],[-12.093,-4.587],[0.908,-0.236],[0,0],[13.005,13.809],[-5.857,11.364],[-0.037,-3.497]],"o":[[-11.16,10.306],[7.74,6.78],[0.881,0.334],[0,0],[-14.998,3.791],[-8.334,-8.919],[6.873,-13.117],[0.031,2.937]],"v":[[-12.669,-16.371],[-7.044,17.83],[26.777,14.898],[26.678,16.739],[26.635,16.75],[-13.581,19.769],[-21.801,-14.878],[10.484,-30.081]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[27.909,41.177]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":10,"s":[{"i":[[7.705,8.101],[-4.791,-0.109],[1.39,2.233],[6.232,1.487]],"o":[[7.036,12.193],[10.912,0.249],[-1.07,-1.718],[-8.815,-2.103]],"v":[[7.312,41.849],[27.461,58.027],[36.406,57.558],[28.732,54.731]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":25,"s":[{"i":[[7.705,8.101],[-4.791,-0.109],[1.39,2.233],[6.232,1.487]],"o":[[7.036,12.193],[10.912,0.249],[-1.07,-1.718],[-8.815,-2.103]],"v":[[7.312,41.849],[30.461,57.652],[39.05,58.965],[27.521,56.399]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[7.705,8.101],[-10.915,0.064],[4.829,11.063],[8.986,1.174]],"o":[[7.909,17.319],[19.18,-0.113],[-1.309,-2.998],[-8.986,-1.174]],"v":[[7.312,41.849],[37.533,60.321],[68.597,59.319],[49.423,51.326]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":75,"s":[{"i":[[7.705,8.101],[-4.791,-0.109],[1.39,2.233],[6.232,1.487]],"o":[[7.036,12.193],[10.912,0.249],[-1.07,-1.718],[-8.815,-2.103]],"v":[[7.312,41.849],[30.461,57.652],[39.05,58.965],[27.521,56.399]],"c":true}]},{"t":100,"s":[{"i":[[7.705,8.101],[-4.791,-0.109],[1.39,2.233],[6.232,1.487]],"o":[[7.036,12.193],[10.912,0.249],[-1.07,-1.718],[-8.815,-2.103]],"v":[[7.312,41.849],[27.461,58.027],[36.406,57.558],[28.732,54.731]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.439215686275,0.380392156863,0.462745098039,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[5.988,3.7]],"o":[[-0.133,-8.013],[0,0]],"v":[[4.471,10.997],[-5.334,-11.612]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[{"i":[[0,0],[16.114,0.14]],"o":[[-0.133,-8.013],[0,0]],"v":[[4.471,10.996],[-23.015,-14.798]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[29.161,-11.697]],"o":[[-0.133,-8.013],[0,0]],"v":[[4.471,10.997],[-38.222,-13.226]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":75,"s":[{"i":[[0,0],[16.114,0.14]],"o":[[-0.133,-8.013],[0,0]],"v":[[4.471,10.996],[-23.015,-14.798]],"c":false}]},{"t":100,"s":[{"i":[[0,0],[5.988,3.7]],"o":[[-0.133,-8.013],[0,0]],"v":[[4.471,10.997],[-5.334,-11.612]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[68.085,25.996]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[-7.778,-1.46],[-3.058,0.611],[-8,9],[3.43,2.535],[-0.883,1.684],[1.073,1.314],[0,0]],"o":[[2.301,0.432],[0,0],[5.054,-5.686],[-1.529,-1.13],[0.528,-1.008],[-7.042,-8.625],[-7.215,3.25]],"v":[[-12.089,9.48],[-4.046,9.312],[15.954,10.313],[13.852,-2.398],[12.546,-7.28],[11.954,-10.688],[-13.794,-5.954]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[-7.778,-1.46],[-3.058,0.611],[-6.645,-4.976],[3.43,2.535],[1.831,0.512],[1.303,0.154],[0,0]],"o":[[2.301,0.432],[0,0],[6.089,4.56],[-1.529,-1.13],[-2.469,-0.69],[-3.42,-0.405],[-6.52,-2.658]],"v":[[-8.944,-11.872],[-0.715,-13.142],[19.452,-7.749],[15.245,-10.666],[10.002,-13.037],[5.412,-13.916],[-9.252,-12.049]],"c":true}]},{"t":100,"s":[{"i":[[-7.778,-1.46],[-3.058,0.611],[-8,9],[3.43,2.535],[-0.883,1.684],[1.073,1.314],[0,0]],"o":[[2.301,0.432],[0,0],[5.054,-5.686],[-1.529,-1.13],[0.528,-1.008],[-7.042,-8.625],[-7.215,3.25]],"v":[[-12.089,9.48],[-4.046,9.312],[15.954,10.313],[13.852,-2.398],[12.546,-7.28],[11.954,-10.688],[-13.794,-5.954]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[41.661,23.688]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[-1,3],[6.99,7.542],[13.008,-12.252],[-10,-9],[-13,-1]],"o":[[2.846,-8.538],[-6.99,-7.542],[-13.008,12.252],[10,9],[13,1]],"v":[[34.077,3.5],[25.077,-23.5],[-23.923,-18.5],[-18.923,20.5],[17.077,16.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[{"i":[[-1,3],[6.99,7.542],[13.008,-12.252],[-10.087,-8.9],[-13,-1]],"o":[[2.846,-8.538],[-6.99,-7.542],[-13.008,12.252],[9.4,8.317],[13,1]],"v":[[34.077,3.5],[25.077,-23.5],[-23.923,-18.5],[-19.657,12.64],[17.1,17.136]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[-1,3],[6.99,7.542],[13.008,-12.252],[-10.266,-8.695],[-11.542,-6.348]],"o":[[2.846,-8.538],[-6.99,-7.542],[-13.008,12.252],[8.17,6.919],[11.425,6.283]],"v":[[34.077,3.5],[25.077,-23.5],[-23.923,-18.5],[-22.185,14.962],[21.634,22.427]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":75,"s":[{"i":[[-1,3],[6.99,7.542],[13.008,-12.252],[-10.087,-8.9],[-13,-1]],"o":[[2.846,-8.538],[-6.99,-7.542],[-13.008,12.252],[9.4,8.317],[13,1]],"v":[[34.077,3.5],[25.077,-23.5],[-23.923,-18.5],[-19.657,12.64],[17.1,17.136]],"c":true}]},{"t":100,"s":[{"i":[[-1,3],[6.99,7.542],[13.008,-12.252],[-10,-9],[-13,-1]],"o":[[2.846,-8.538],[-6.99,-7.542],[-13.008,12.252],[10,9],[13,1]],"v":[[34.077,3.5],[25.077,-23.5],[-23.923,-18.5],[-18.923,20.5],[17.077,16.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[37.538,40.501]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"f3","parent":4,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[4.619,25.343,0],"to":[-3.608,6.724,0],"ti":[-3.478,-6.387,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[5.5,47.034,0],"to":[-3.684,-6.408,0],"ti":[-3.401,6.708,0]},{"t":100,"s":[4.619,25.343,0]}]},"a":{"a":0,"k":[37.004,30.342,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[8,-2],[-3,-8],[-2,6]],"o":[[-12,-9],[-8,2],[3,8],[2,-6]],"v":[[19.5,-3.5],[-8.5,-13.5],[-18.5,7.5],[19.5,9.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[8,-2],[-7.921,-9.107],[-13.277,-5.057]],"o":[[-12,-9],[-8,2],[8.122,9.339],[5.91,2.251]],"v":[[19.5,-3.5],[-8.5,-13.5],[-20.347,2.313],[19.5,9.5]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[8,-2],[-3,-8],[-2,6]],"o":[[-12,-9],[-8,2],[3,8],[2,-6]],"v":[[19.5,-3.5],[-8.5,-13.5],[-18.5,7.5],[19.5,9.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[36.5,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[-6.438,-2.687],[-1.687,3.188],[4.437,3]],"o":[[-9.688,2.5],[6.438,2.688],[1.688,-3.187],[-4.438,-3]],"v":[[-0.874,-6.469],[-8.749,4.156],[10.876,5.031],[10.751,-5.219]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[-6.572,2.341],[-4.068,-1.048],[4.437,3]],"o":[[-9.688,2.5],[7.594,-2.706],[3.492,0.9],[-4.438,-3]],"v":[[-0.874,-6.469],[-8.495,-4.418],[9.323,-5.605],[10.751,-5.219]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[-6.438,-2.687],[-1.687,3.188],[4.437,3]],"o":[[-9.688,2.5],[6.438,2.688],[1.688,-3.187],[-4.438,-3]],"v":[[-0.874,-6.469],[-8.749,4.156],[10.876,5.031],[10.751,-5.219]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[30.624,24.343]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[8,-2],[-3,-8],[-2,6]],"o":[[-12,-9],[-8,2],[3,8],[2,-6]],"v":[[19.5,-3.5],[-8.5,-13.5],[-18.5,7.5],[19.5,9.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[{"i":[[0,0],[8,-2],[-7.921,-9.107],[-13.277,-5.057]],"o":[[-12,-9],[-8,2],[8.122,9.339],[5.91,2.251]],"v":[[19.5,-3.5],[-8.5,-13.5],[-20.347,2.313],[19.5,9.5]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[8,-2],[-3,-8],[-2,6]],"o":[[-12,-9],[-8,2],[3,8],[2,-6]],"v":[[19.5,-3.5],[-8.5,-13.5],[-18.5,7.5],[19.5,9.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.439215689898,0.380392163992,0.46274510026,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[36.5,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"Null heart","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":-10},"p":{"a":0,"k":[245.089,223.749,0]},"a":{"a":0,"k":[80.714,97.833,0]}},"ao":0,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"heart","parent":6,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":102,"s":[100]},{"t":103,"s":[0]}]},"r":{"a":1,"k":[{"i":{"x":[0.189],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":80,"s":[10]},{"t":105,"s":[30]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[80.714,97.833,0],"to":[-4.609,-6.736,0],"ti":[-3.364,4.442,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":60,"s":[81.349,78.398,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":80,"s":[81.349,78.398,0],"to":[-14.819,-10.736,0],"ti":[-14.105,157.019,0]},{"t":105,"s":[-52.15,-44.145,0]}]},"a":{"a":0,"k":[80.714,97.833,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":45,"s":[0,0,100]},{"t":105,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.558,-4.781],[2.924,-0.08],[0.219,0.653]],"o":[[-2.251,6.795],[-0.723,0.02],[-6.051,-18.128]],"v":[[4.379,-0.723],[1.682,9.603],[0.114,8.506]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.620000023935,0.008000000785,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[52.977,37.118]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-4.472,1.491],[-3.206,18.21],[14.833,3.5],[3.417,-14.708],[9.453,-8.569],[-20.125,-12.875]],"o":[[4.5,-1.5],[3.42,-19.427],[-14.483,-3.417],[0,0],[-13.375,12.125],[16.471,10.537]],"v":[[19.978,40.609],[41.103,-0.516],[24.603,-38.683],[-5.648,-19.266],[-31.148,-20.266],[-19.398,27.859]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.620000023935,0.008000000785,0.340999977261,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[59.522,57.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.125,2.25],[-2.437,-0.375],[1.875,-2.813]],"o":[[-0.33,-5.932],[2.438,0.375],[-1.875,2.812]],"v":[[-3.867,3.625],[1.759,-5.5],[0.509,2.625]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.501999978458,0.776000019148,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[64.033,37.542]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.597,-0.418],[0.438,-5.75],[-5.187,-4.187],[-0.687,6.875]],"o":[[-5.166,0.469],[-0.437,5.75],[3.581,2.89],[1.03,-10.293]],"v":[[2.878,-15.096],[-7.038,-4.063],[-1.038,12.624],[0.837,-3.063]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.501999978458,0.776000019148,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[34.225,55.648]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.5,3.313],[-7.843,6.138],[-0.171,14.548],[6.125,6.625],[-0.713,1.695],[-6.653,-12.938],[5.232,-3.113]],"o":[[0,0],[7.666,-6],[0.136,-11.629],[-4.735,-5.122],[0.713,-1.695],[10.914,21.229],[-5.232,3.113]],"v":[[-26.625,31.541],[-8.458,30.333],[3.261,-8.902],[-4.25,-34.834],[-10.125,-39.084],[15.711,-27.646],[-1,37.666]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823999980852,0.016000001571,0.501999978458,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[82,59.168]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.475,18.432],[9.07,3.416],[4.25,-15.875],[12.237,-7.231],[-13.886,-10.392],[-9.621,-0.165]],"o":[[1.916,-23.942],[-9.071,-3.415],[0,0],[-21.676,12.81],[14.476,10.835],[5.881,0.1]],"v":[[44.099,-1.657],[28.092,-35.997],[-1.265,-18.217],[-24.339,-21.799],[-14.867,27.484],[27.909,39.312]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.905999995213,0.156999999402,0.528999956916,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[55.39,56.301]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"heart 9","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.189],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[-19.681]},{"t":102,"s":[0.319]}]},"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":97,"s":[63.394,65.09,0],"to":[51.309,11.913,0],"ti":[0,0,0]},{"t":117,"s":[133.266,127.688,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":42,"s":[0,0,100]},{"i":{"x":[0.576,0.576,0.576],"y":[0.599,0.599,23.85]},"o":{"x":[0.17,0.17,0.17],"y":[0,0,0]},"t":97,"s":[100.318,100.318,100]},{"i":{"x":[0.836,0.836,0.836],"y":[1,1,1]},"o":{"x":[0.408,0.408,0.408],"y":[0.623,0.623,-26.829]},"t":106,"s":[43.173,43.173,100]},{"t":117,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-3,"op":177,"st":-3,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"heart 8","parent":7,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":99,"s":[63.394,65.09,0],"to":[-12.835,49.669,0],"ti":[0,0,0]},{"t":119,"s":[85.951,183.108,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":44,"s":[0,0,100]},{"i":{"x":[0.565,0.565,0.565],"y":[0.605,0.605,18.812]},"o":{"x":[0.18,0.18,0.18],"y":[0,0,0]},"t":99,"s":[100.318,100.318,100]},{"i":{"x":[0.841,0.841,0.841],"y":[1,1,1]},"o":{"x":[0.384,0.384,0.384],"y":[0.533,0.533,-29.239]},"t":106,"s":[55.072,55.072,100]},{"t":119,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-1,"op":179,"st":-1,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"heart 7","parent":7,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":98,"s":[63.394,65.09,0],"to":[37.549,-61.843,0],"ti":[0,0,0]},{"t":118,"s":[187.317,21.394,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":43,"s":[0,0,100]},{"i":{"x":[0.57,0.57,0.57],"y":[0.599,0.599,21.437]},"o":{"x":[0.175,0.175,0.175],"y":[0,0,0]},"t":98,"s":[100.318,100.318,100]},{"i":{"x":[0.839,0.839,0.839],"y":[1,1,1]},"o":{"x":[0.397,0.397,0.397],"y":[0.577,0.577,-28.27]},"t":106,"s":[49.155,49.155,100]},{"t":118,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-2,"op":178,"st":-2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"heart 6","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.189],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76,"s":[-19.681]},{"t":101,"s":[0.319]}]},"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":96,"s":[63.394,65.09,0],"to":[-62.756,-13.289,0],"ti":[0,0,0]},{"t":116,"s":[-12.34,101.557,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":41,"s":[0,0,100]},{"i":{"x":[0.583,0.583,0.583],"y":[0.603,0.603,26]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":96,"s":[100.318,100.318,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.417,0.417,0.417],"y":[0.675,0.675,-25]},"t":106,"s":[37.159,37.159,100]},{"t":116,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-4,"op":176,"st":-4,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"heart 5","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.189],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[-19.681]},{"t":103,"s":[0.319]}]},"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":98,"s":[63.394,65.09,0],"to":[67.385,-10.433,0],"ti":[0,0,0]},{"t":118,"s":[174.241,84.573,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":43,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":98,"s":[100.318,100.318,100]},{"t":118,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-2,"op":178,"st":-2,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"heart 4","parent":7,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":100,"s":[63.394,65.09,0],"to":[-53.484,38.126,0],"ti":[0,0,0]},{"t":120,"s":[24.859,164.373,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":45,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":100,"s":[100.318,100.318,100]},{"t":120,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"heart 3","parent":7,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":99,"s":[63.394,65.09,0],"to":[-3.869,-69.648,0],"ti":[0,0,0]},{"t":119,"s":[130.36,-25.451,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":44,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":99,"s":[100.318,100.318,100]},{"t":119,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-1,"op":179,"st":-1,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"heart 2","parent":7,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.189],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[-19.681]},{"t":102,"s":[0.319]}]},"p":{"a":1,"k":[{"i":{"x":0.189,"y":1},"o":{"x":0.167,"y":0},"t":97,"s":[63.394,65.09,0],"to":[-34.617,-57.318,0],"ti":[0,0,0]},{"t":117,"s":[-31.348,31.057,0]}]},"a":{"a":0,"k":[66.22,63.693,0]},"s":{"a":1,"k":[{"i":{"x":[0.189,0.189,0.189],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":42,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":97,"s":[100.318,100.318,100]},{"t":117,"s":[0,0,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[14.788,14.788]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823529411765,0.01568627451,0.501960784314,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[66.22,63.693]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":-3,"op":177,"st":-3,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Shape Layer 2","parent":25,"sr":1,"ks":{"p":{"a":0,"k":[2.759,85.47,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[36.962,-2.672],[18.863,70.063]],"o":[[-55.916,4.042],[-19.074,-70.847]],"v":[[-0.674,-58.611],[-133.389,-154.947]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":90,"s":[0]},{"t":109,"s":[100]}]},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[0]},{"t":103,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Shape Layer 1","parent":25,"sr":1,"ks":{"p":{"a":0,"k":[2.759,85.47,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[35.36,-11.092],[18.863,70.063]],"o":[[-55.87,17.525],[-19.074,-70.847]],"v":[[-0.674,-58.611],[-141.474,-121.937]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":94,"s":[0]},{"t":113,"s":[100]}]},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[0]},{"t":107,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"nm":"Trim Paths 1","hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"f4","parent":4,"sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[37.738,13.01,0],"to":[-0.376,4.472,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[35.485,39.841,0],"to":[0,0,0],"ti":[-0.376,4.472,0]},{"t":100,"s":[37.738,13.01,0]}]},"a":{"a":0,"k":[44.123,32.01,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.894,4.735],[8,0],[10,-6],[-4,-5],[0,0]],"o":[[-2,-5],[-8,0],[-10,6],[4,5],[0,0]],"v":[[27.053,4.5],[10.053,-6.5],[-18.947,-9.5],[-23.947,10.5],[5.053,14.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[43.947,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1,3],[6,-1],[-1.125,-1.625],[-6,2]],"o":[[-1.14,-3.42],[-6,1],[1.125,1.625],[6,-2]],"v":[[10.125,-2.5],[-1.875,-7.5],[-10,1.875],[0.125,6.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[29.875,32.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.838,5.03],[8,0],[10,-6],[-4,-5],[0,0]],"o":[[-1,-6],[-8,0],[-10,6],[4,5],[0,0]],"v":[[27.581,4.5],[10.581,-6.5],[-18.419,-9.5],[-23.419,10.5],[5.581,14.5]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[43.419,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"arm","parent":4,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[-46]},{"t":100,"s":[0]}]},"p":{"a":0,"k":[49.516,39.146,0]},"a":{"a":0,"k":[35.9,36.357,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[17.013,22.683],[-7,-13],[-4,-33],[-22.75,-8.167]],"o":[[-8.159,-24.976],[-9.159,-12.212],[7,13],[4,33],[0,0]],"v":[[45.768,-1.733],[-5.768,-85.769],[-38.768,-51.769],[-23.768,16.231],[26.44,97.981]],"c":false}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[13.927,25.823],[-7,-13],[-4,-33],[-24.518,-5.842]],"o":[[-8.159,-24.976],[-7.254,-13.262],[7,13],[4,33],[0,0]],"v":[[45.768,-1.733],[-6.04,-84.749],[-43.223,-65.617],[-23.768,16.231],[30.074,89.313]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[0,0],[10.985,28.818],[-7,-13],[-4,-33],[-26.203,-3.625]],"o":[[-8.159,-24.976],[-5.437,-14.264],[7,13],[4,33],[0,0]],"v":[[45.768,-1.733],[-6.3,-83.777],[-40.255,-58.882],[-23.768,16.231],[33.539,81.05]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[13.927,25.823],[-7,-13],[-4,-33],[-24.518,-5.842]],"o":[[-8.159,-24.976],[-7.254,-13.262],[7,13],[4,33],[0,0]],"v":[[45.768,-1.733],[-6.04,-84.749],[-43.223,-65.617],[-23.768,16.231],[30.074,89.313]],"c":false}]},{"t":100,"s":[{"i":[[0,0],[17.013,22.683],[-7,-13],[-4,-33],[-22.75,-8.167]],"o":[[-8.159,-24.976],[-9.159,-12.212],[7,13],[4,33],[0,0]],"v":[[45.768,-1.733],[-5.768,-85.769],[-38.768,-51.769],[-23.768,16.231],[26.44,97.981]],"c":false}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[60.768,112.981]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[0,0],[-1.359,-0.09],[-5.833,-15.399],[11.666,7.333],[6.833,32.667]],"o":[[0,0],[3.171,0.21],[8.334,22],[-11.667,-7.334],[-6.834,-32.666]],"v":[[-32.667,-70],[-30.497,-70.27],[-15.333,-52],[21.001,66.667],[-20.999,-0.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,0],[-2.003,-2.449],[-5.423,-14.196],[-6.727,-9.744],[6.555,30.332]],"o":[[0,0],[6.396,5.722],[8.409,21.971],[-17.397,-6.976],[-7.09,-32.609]],"v":[[-40.093,-90.028],[-34.95,-89.325],[-15.72,-51.98],[24.971,61.365],[-20.999,-0.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[0,0],[-3.32,-7.281],[-4.585,-11.731],[-44.394,-44.716],[5.986,25.549]],"o":[[0,0],[3.297,7.231],[8.563,21.912],[-29.133,-6.243],[-7.613,-32.493]],"v":[[-38.219,-86.798],[-29.558,-88.913],[-16.511,-51.938],[33.102,50.508],[-20.999,-0.667]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-2.003,-2.449],[-5.423,-14.196],[-6.727,-9.744],[6.555,30.332]],"o":[[0,0],[6.396,5.722],[8.409,21.971],[-17.397,-6.976],[-7.09,-32.609]],"v":[[-40.093,-90.028],[-34.95,-89.325],[-15.72,-51.98],[24.971,61.365],[-20.999,-0.667]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[-1.359,-0.09],[-5.833,-15.399],[11.666,7.333],[6.833,32.667]],"o":[[0,0],[3.171,0.21],[8.334,22],[-11.667,-7.334],[-6.834,-32.666]],"v":[[-32.667,-70],[-30.497,-70.27],[-15.333,-52],[21.001,66.667],[-20.999,-0.667]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.438999998803,0.380000005984,0.463000009574,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[61,143.545]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[{"i":[[1,22],[17,19],[-7,-13],[-4,-33],[-21.248,-14.628]],"o":[[-1.079,-23.745],[-10.178,-11.376],[7,13],[4,33],[11.5,7.916]],"v":[[47,7.563],[-8,-89.77],[-41,-55.77],[-26,12.23],[19,93.23]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[19.898,36.371],[7.089,17.797],[-7,-13],[-4,-33],[-28.358,-8.672]],"o":[[-14.292,-26.124],[-5.649,-14.181],[7,13],[4,33],[13.351,4.083]],"v":[[50.035,7.244],[-9.309,-87.923],[-41,-55.77],[-26,12.23],[30.422,77.266]],"c":true}]},{"t":100,"s":[{"i":[[1,22],[17,19],[-7,-13],[-4,-33],[-21.248,-14.628]],"o":[[-1.079,-23.745],[-10.178,-11.376],[7,13],[4,33],[11.5,7.916]],"v":[[47,7.563],[-8,-89.77],[-41,-55.77],[-26,12.23],[19,93.23]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[63,116.982]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"browe","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[91.297,12.085,0]},"a":{"a":0,"k":[63.694,23.139,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19,"s":[{"i":[[3.904,0.985],[-4.273,-0.119],[-3.051,-3.041],[-0.671,-3.881],[1.679,-3.651],[1.806,2.552],[1.843,1.804],[2.47,1.309]],"o":[[2.677,-3.02],[4.285,0.094],[3.092,3.036],[0.656,3.898],[-2.497,-3.193],[-1.778,-2.548],[-1.848,-1.812],[-2.48,-1.325]],"v":[[-15.956,-2.474],[-4.937,-6.893],[6.735,-1.755],[12.368,9.059],[11.044,20.526],[5.037,11.902],[-0.292,5.357],[-6.545,0.776]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30,"s":[{"i":[[3.904,0.985],[-4.273,-0.119],[-3.051,-3.041],[-0.671,-3.881],[1.679,-3.651],[1.806,2.552],[1.843,1.804],[2.47,1.309]],"o":[[2.677,-3.02],[4.285,0.094],[3.092,3.036],[0.656,3.898],[-2.497,-3.193],[-1.778,-2.548],[-1.848,-1.812],[-2.48,-1.325]],"v":[[-11.733,-16.371],[-0.714,-20.79],[10.958,-15.652],[16.591,-4.838],[15.267,6.629],[9.26,-1.995],[3.931,-8.54],[-2.322,-13.121]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":75,"s":[{"i":[[3.904,0.985],[-4.273,-0.119],[-3.051,-3.041],[-0.671,-3.881],[1.679,-3.651],[1.806,2.552],[1.843,1.804],[2.47,1.309]],"o":[[2.677,-3.02],[4.285,0.094],[3.092,3.036],[0.656,3.898],[-2.497,-3.193],[-1.778,-2.548],[-1.848,-1.812],[-2.48,-1.325]],"v":[[-11.733,-16.371],[-0.714,-20.79],[10.958,-15.652],[16.591,-4.838],[15.267,6.629],[9.26,-1.995],[3.931,-8.54],[-2.322,-13.121]],"c":true}]},{"t":80,"s":[{"i":[[3.904,0.985],[-4.273,-0.119],[-3.051,-3.041],[-0.671,-3.881],[1.679,-3.651],[1.806,2.552],[1.843,1.804],[2.47,1.309]],"o":[[2.677,-3.02],[4.285,0.094],[3.092,3.036],[0.656,3.898],[-2.497,-3.193],[-1.778,-2.548],[-1.848,-1.812],[-2.48,-1.325]],"v":[[-15.956,-2.474],[-4.937,-6.893],[6.735,-1.755],[12.368,9.059],[11.044,20.526],[5.037,11.902],[-0.292,5.357],[-6.545,0.776]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067000003889,0.027000000898,0.086000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[112.887,31.951]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.806,-0.356],[-0.272,0.808],[-0.429,0.72],[-1.226,1.085],[-3.332,0.582],[-3.14,-1.565],[-1.131,-1.275],[-0.389,-1.719],[1.365,-0.006],[1.152,-0.115],[2.18,-0.355],[2.471,-0.449],[0,0],[0.729,-0.147]],"o":[[-0.147,-0.878],[0.27,-0.826],[0.863,-1.45],[2.472,-2.141],[3.311,-0.574],[1.557,0.786],[1.109,1.306],[-1.782,-0.038],[-1.364,0.019],[-2.287,0.193],[-2.175,0.362],[0,0],[-0.69,0.116],[-0.719,0.171]],"v":[[-14.926,6.735],[-14.62,4.111],[-13.545,1.785],[-10.353,-1.986],[-1.491,-6.161],[8.609,-4.855],[12.714,-1.765],[15.074,2.735],[10.469,2.607],[6.739,2.793],[0.214,3.691],[-6.698,4.955],[-10.57,5.665],[-12.662,6.074]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067000003889,0.027000000898,0.086000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[15.324,6.985]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"eye R closed","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[0]},{"t":78,"s":[100]}]},"p":{"a":0,"k":[114.362,76.994,0]},"a":{"a":0,"k":[50.774,38.871,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":19,"s":[{"i":[[-20.555,-27.688],[0.654,0.277],[36.721,-5.441],[0.259,1.49]],"o":[[0.426,0.573],[-8.064,-3.405],[-1.731,0.286],[-1.047,-6.006]],"v":[[36.722,13.173],[35.885,14.238],[-32.455,-1.642],[-36.101,-2.091]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-21.797,1.882],[0.486,-0.167],[10.773,18.711],[-0.274,-0.172]],"o":[[0.839,0.403],[-7.115,4.407],[-2.216,-3.849],[10.576,22.542]],"v":[[33.082,15.738],[32.009,18.317],[-35.783,4.352],[-34.917,-0.614]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":39,"s":[{"i":[[-1.986,-0.344],[0.306,-0.641],[14.716,47.168],[-0.844,-1.948]],"o":[[1.28,0.222],[-6.1,12.756],[-0.694,-2.225],[22.999,53.054]],"v":[[29.193,18.479],[27.865,22.677],[-36.796,1.496],[-34.86,-2.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":70,"s":[{"i":[[-1.986,-0.344],[0.306,-0.641],[14.716,47.168],[-0.844,-1.948]],"o":[[1.28,0.222],[-6.1,12.756],[-0.694,-2.225],[22.999,53.054]],"v":[[29.193,18.479],[27.865,22.677],[-36.796,1.496],[-34.86,-2.052]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":75,"s":[{"i":[[-21.797,1.882],[0.486,-0.167],[10.773,18.711],[-0.274,-0.172]],"o":[[0.839,0.403],[-7.115,4.407],[-2.216,-3.849],[10.576,22.542]],"v":[[33.082,15.738],[32.009,18.317],[-35.783,4.352],[-34.917,-0.614]],"c":true}]},{"t":80,"s":[{"i":[[-20.555,-27.688],[0.654,0.277],[36.721,-5.441],[0.259,1.49]],"o":[[0.426,0.573],[-8.064,-3.405],[-1.731,0.286],[-1.047,-6.006]],"v":[[36.722,13.173],[35.885,14.238],[-32.455,-1.642],[-36.101,-2.091]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[52.147,27.854]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":19,"s":[{"i":[[25,0],[-17.787,5.711],[-8.761,-9.663]],"o":[[-30.266,0],[25.543,-8.201],[9.605,10.594]],"v":[[7.029,22.538],[-27.346,-14.337],[35.529,-3.42]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[25,0],[-12.093,-5.6],[-17.585,11.825]],"o":[[-30.266,0],[19.383,13.979],[5.767,4.477]],"v":[[7.029,22.538],[-28.403,-8.57],[36.594,0.145]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":39,"s":[{"i":[[25,0],[-6.008,-17.689],[-20.726,25.677]],"o":[[-30.266,0],[12.799,37.684],[1.664,-2.062]],"v":[[7.029,22.538],[-28.396,-12.858],[37.732,3.956]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":70,"s":[{"i":[[25,0],[-6.008,-17.689],[-20.726,25.677]],"o":[[-30.266,0],[12.799,37.684],[1.664,-2.062]],"v":[[7.029,22.538],[-28.396,-12.858],[37.732,3.956]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":75,"s":[{"i":[[25,0],[-12.093,-5.6],[-17.585,11.825]],"o":[[-30.266,0],[19.383,13.979],[5.767,4.477]],"v":[[7.029,22.538],[-28.403,-8.57],[36.594,0.145]],"c":true}]},{"t":80,"s":[{"i":[[25,0],[-17.787,5.711],[-8.761,-9.663]],"o":[[-30.266,0],[25.543,-8.201],[9.605,10.594]],"v":[[7.029,22.538],[-27.346,-14.337],[35.529,-3.42]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[45.383,39.464]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"tr","p":{"a":0,"k":[50.329,41.267]},"a":{"a":0,"k":[50.329,41.267]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"eye R open","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[115.656,65.054,0]},"a":{"a":0,"k":[44.404,41.45,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.762},"o":{"x":0.333,"y":0},"t":19,"s":[{"i":[[1.25,-1.938],[4.625,-0.063],[-11.5,3.438]],"o":[[-1.25,1.938],[-4.625,0.063],[11.5,-3.438]],"v":[[81.561,40.083],[69.748,42.896],[70.436,52.396]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.238},"t":23.199,"s":[{"i":[[0.692,-0.789],[2.948,0.007],[-5.577,0.064]],"o":[[-0.708,0.877],[-2.829,0.045],[7.701,-2.862]],"v":[[77.631,41.586],[70.57,42.943],[71.053,48.706]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.699,"s":[{"i":[[0.082,0.468],[1.112,0.084],[0.908,-3.629]],"o":[[-0.115,-0.284],[-0.862,0.025],[3.541,-2.232]],"v":[[73.329,43.23],[71.47,42.995],[69.374,52.487]],"c":true}]},{"i":{"x":0.833,"y":0.633},"o":{"x":0.167,"y":0},"t":79,"s":[{"i":[[0.082,0.468],[1.112,0.084],[0.908,-3.629]],"o":[[-0.115,-0.284],[-0.862,0.025],[3.541,-2.232]],"v":[[73.329,43.23],[71.47,42.995],[69.374,52.487]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.367},"t":81,"s":[{"i":[[0.692,-0.789],[2.948,0.007],[-5.577,0.064]],"o":[[-0.708,0.877],[-2.829,0.045],[7.701,-2.862]],"v":[[77.631,41.586],[70.57,42.943],[71.053,48.706]],"c":true}]},{"t":84,"s":[{"i":[[1.25,-1.938],[4.625,-0.063],[-11.5,3.438]],"o":[[-1.25,1.938],[-4.625,0.063],[11.5,-3.438]],"v":[[81.561,40.083],[69.748,42.896],[70.436,52.396]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019607843,0.090196078431,0.176470588235,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":19,"s":[{"i":[[-6.094,5.6],[-17.909,-0.943],[-3.25,-5.875],[16.623,0.761]],"o":[[4.625,-4.25],[13.745,0.724],[2.961,5.352],[-22.114,-1.013]],"v":[[-28.276,0.524],[5.599,-10.079],[28.849,3.649],[3.812,-5.34]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":33,"s":[{"i":[[-1.248,8.182],[-21.537,-3.172],[0.675,-6.079],[16.623,0.761]],"o":[[1.125,-7.375],[19.921,2.934],[-0.675,6.079],[-22.114,-1.013]],"v":[[-29.026,-2.351],[7.729,-24.95],[29.599,3.649],[4.389,27.361]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":74,"s":[{"i":[[-1.248,8.182],[-21.537,-3.172],[0.675,-6.079],[16.623,0.761]],"o":[[1.125,-7.375],[19.921,2.934],[-0.675,6.079],[-22.114,-1.013]],"v":[[-29.026,-2.351],[7.729,-24.95],[29.599,3.649],[4.389,27.361]],"c":true}]},{"t":84,"s":[{"i":[[-6.094,5.6],[-17.909,-0.943],[-3.25,-5.875],[16.623,0.761]],"o":[[4.625,-4.25],[13.745,0.724],[2.961,5.352],[-22.114,-1.013]],"v":[[-28.276,0.524],[5.599,-10.079],[28.849,3.649],[3.812,-5.34]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[42.774,40.622]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.762},"o":{"x":0.333,"y":0},"t":19,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-13.75,-0.5],[-5.25,-8.375],[8,0.125],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[13.75,0.5],[-6.875,-13],[-8,-0.125],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[45.491,30.825],[69.123,47.896],[41.784,34.116],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":0.762},"o":{"x":0.167,"y":0.238},"t":23.199,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-24.89,-0.067],[-3.768,-8.65],[12.124,0.214],[0.475,-3.189],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[21.279,1.376],[-5.609,-1.715],[-14.124,-1.368],[-0.961,6.448],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[46.529,25.979],[73.579,48.269],[42.759,45.329],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.238},"t":26.699,"s":[{"i":[[41.875,4.125],[-4.175,6.463],[-22.366,-1.384],[2.66,-9.833],[17.895,0.338],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.701,-8.825],[19.013,1.136],[-2.056,3.375],[-22.692,-3.108],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[47.459,21.34],[70.49,48.244],[44.191,57.316],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-31.574,-2.328],[2.108,-9.741],[15.633,-1.377],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[24.637,1.817],[-2.406,7.753],[-20.224,1.781],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[48.499,15.613],[71.952,48.615],[46.789,68.732],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":74,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-31.574,-2.328],[2.108,-9.741],[15.633,-1.377],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[24.637,1.817],[-2.406,7.753],[-20.224,1.781],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[48.499,15.613],[71.952,48.615],[46.789,68.732],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":79,"s":[{"i":[[41.875,4.125],[-4.425,6.295],[-22.366,-1.384],[3.223,-5.158],[17.895,0.338],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[4.794,-6.82],[22.57,1.897],[-2.056,3.375],[-22.692,-3.108],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[47.238,21.797],[70.49,48.244],[44.156,54.518],[8.248,46.646],[57.873,73.646]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":82,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-21.281,-1.086],[-4.352,-8.542],[10.498,0.179],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[21.05,1.074],[-3.375,-4.354],[-20.928,1.053],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[45.756,27.766],[74.451,49.491],[45.494,40.579],[9.077,48.743],[57.873,73.646]],"c":true}]},{"t":84,"s":[{"i":[[41.875,4.125],[-5.625,5.25],[-13.75,-0.5],[-5.25,-8.375],[8,0.125],[-0.5,-6.5],[-31.5,6.875]],"o":[[-41.875,-4.125],[5.625,-5.25],[13.75,0.5],[-6.875,-13],[-8,-0.125],[0.5,6.5],[31.5,-6.875]],"v":[[51.373,11.896],[10.248,44.646],[45.491,30.825],[69.123,47.896],[41.784,34.116],[8.248,46.646],[57.873,73.646]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019607843,0.913725490196,0.925490196078,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.604,-3.044],[2.992,1.578],[-1.605,3.044],[-2.992,-1.578]],"o":[[-1.604,3.044],[-2.993,-1.577],[1.605,-3.044],[2.993,1.577]],"v":[[5.419,2.856],[-2.905,5.512],[-5.418,-2.856],[2.906,-5.511]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.987999949736,0.987999949736,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[55.961,41.093]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.15,-5.978],[5.875,3.098],[-3.151,5.978],[-5.875,-3.097]],"o":[[-3.151,5.977],[-5.876,-3.098],[3.151,-5.977],[5.876,3.098]],"v":[[10.64,5.608],[-5.705,10.823],[-10.639,-5.609],[5.705,-10.823]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[42.998,45.646]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.638,-8.796],[8.648,4.559],[-4.638,8.797],[-8.647,-4.559]],"o":[[-4.638,8.796],[-8.647,-4.558],[4.637,-8.796],[8.648,4.558]],"v":[[15.657,8.254],[-8.397,15.927],[-15.657,-8.254],[8.396,-15.927]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.224000010771,0.741000007181,0.969000004787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[42.998,45.646]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.736,8.093],[-21.434,-3.774],[0.675,-6.078],[19.841,1.319]],"o":[[1.066,-4.972],[21.993,3.874],[-0.675,6.08],[-19.556,-1.301]],"v":[[-30.552,-1.841],[8.287,-25.121],[31.614,2.62],[3.278,27.576]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.987999949736,0.987999949736,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[43.885,40.407]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"eye L","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[12.887,32.795,0]},"a":{"a":0,"k":[20.137,19.359,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[10.468,4.469],[-0.565,3.893],[-2.429,-23.587],[0.491,0.77]],"o":[[-8.042,-3.442],[1.037,-7.151],[0.094,0.908],[-5.974,-9.366]],"v":[[-5.84,-5.944],[-17.423,-10.526],[17.894,16.352],[16.298,16.908]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[21.507,17.966]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[3.417,7.333],[10,-0.334],[0,-3]],"o":[[8,3],[-4.568,-9.805],[-10,0.333],[0,3]],"v":[[10.292,12.333],[16.292,3.333],[-7.708,-14.999],[-19.708,-9.667]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[19.958,24.897]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[16.031,0],[1.005,2.494],[0.257,-1.046],[-4.474,-1.491]],"o":[[3,-10],[-5.985,0],[-0.402,-0.999],[-1.169,4.769],[12,4]],"v":[[12.383,15.782],[-0.909,-11.801],[-11.402,-14.783],[-13.531,-14.606],[-10.909,-1.801]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[26.159,16.032]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"nose","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[44.266,62.819,0]},"a":{"a":0,"k":[31.895,25.428,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.98,-5.569],[-3.148,-1.474],[-4.21,4.321],[5.95,1.986]],"o":[[-5.326,-10.492],[-2.699,7.588],[3.15,1.475],[4.124,-4.234],[-6.688,-2.232]],"v":[[-0.87,-3.81],[-16.367,-6.586],[-6.793,12.827],[14.942,9.459],[12.32,-3.394]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.517999985639,0.097999999102,0.317999985639,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.847000002394,0.39199999641,0.611999990426,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[31.566,26.802]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.305,1.963],[-13.254,-8.275],[0.668,0.234],[7.118,-4.211]],"o":[[6.574,-5.61],[0.603,0.376],[-14.536,-5.112],[-2.707,1.602]],"v":[[-14.745,0.825],[16.448,1.811],[15.935,2.881],[-11.797,4.862]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[30.726,14.376]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"mouth","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[35.082,113.25,0]},"a":{"a":0,"k":[38.091,44.721,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":35,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":45,"s":[94,106,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":80,"s":[94,106,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":90,"s":[110,90,100]},{"t":105,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-11.311,1.249],[-10.527,-0.643],[2.089,-2.645],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[3.837,-13.554],[-2.5,7.537],[-3.548,3.386],[-0.991,-2.915]],"o":[[-0.484,0.526],[1.291,-3.892],[2.753,-1.665],[1.401,2.886]],"v":[[-6.592,18.515],[-8.145,11.669],[1.698,-3.279],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[3.484,-13.441],[-0.69,4.518],[-3.499,3.559],[-0.805,-2.995]],"o":[[-0.385,0.731],[1.561,-4.328],[2.753,-1.665],[1.05,2.665]],"v":[[-4.552,17.288],[-6.529,10.799],[1.627,-3.394],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[2.416,-17.375],[-0.534,6.157],[-3.39,3.943],[-0.393,-3.17]],"o":[[-0.165,1.186],[0.538,-6.206],[2.753,-1.665],[0.269,2.173]],"v":[[-1.405,18.556],[-4.664,13.52],[1.47,-3.649],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[2.416,-17.375],[-0.534,6.157],[-3.39,3.943],[-0.393,-3.17]],"o":[[-0.165,1.186],[0.538,-6.206],[2.753,-1.665],[0.269,2.173]],"v":[[-1.405,18.556],[-4.664,13.52],[1.47,-3.649],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[{"i":[[3.484,-13.441],[-0.69,4.518],[-3.499,3.559],[-0.805,-2.995]],"o":[[-0.385,0.731],[1.561,-4.328],[2.753,-1.665],[1.05,2.665]],"v":[[-4.552,17.288],[-6.529,10.799],[1.627,-3.394],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[3.837,-13.554],[-2.5,7.537],[-3.548,3.386],[-0.991,-2.915]],"o":[[-0.484,0.526],[1.291,-3.892],[2.753,-1.665],[1.401,2.886]],"v":[[-6.592,18.515],[-8.145,11.669],[1.698,-3.279],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":35,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-11.311,1.249],[-10.527,-0.643],[2.089,-2.645],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-7.877,1.746],[-7.092,-0.146],[2.089,-2.645],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-11.311,1.249],[-10.527,-0.643],[2.089,-2.645],[9,-4.776]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-11.311,1.249],[-10.527,-0.643],[2.089,-2.645],[9,-4.776]],"c":true}]},{"t":105,"s":[{"i":[[10.203,6.005],[-1.149,-0.299],[-3.818,2.432],[-2.016,-2.478]],"o":[[-1.032,-0.607],[4.568,1.192],[2.753,-1.665],[3.343,4.11]],"v":[[-11.311,1.249],[-10.527,-0.643],[2.089,-2.645],[9,-4.776]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[35.864,8.423]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[-15.394,-15.632],[2.347,0.88],[5.217,0.4],[-0.036,0],[-7.125,-0.125],[1.765,3.851],[-0.748,-1]],"o":[[1.838,1.866],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-4.514,-2.527],[-2.247,-4.915],[1.624,2.171]],"v":[[9.884,7.541],[7.338,11.536],[-4.069,10.146],[-8.04,10.086],[3.402,6.903],[-8.83,-7.224],[-8.257,-11.416]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-16.24,-13.855],[1.025,-0.204],[2.047,0.45],[1.151,0.735],[1.171,1.235],[1.765,3.851],[-0.748,-1]],"o":[[5.159,2.307],[-1.025,0.204],[-1.85,-0.406],[-0.778,-0.497],[-3.141,-1.765],[-2.247,-4.915],[1.624,2.171]],"v":[[14.294,8.435],[18.033,11.47],[12.523,11.037],[6.857,8.314],[2.836,5.002],[-6.558,-6.601],[-5.665,-10.675]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-18.86,-8.351],[-1.325,-0.349],[5.852,-0.709],[4.242,1.826],[1.256,1.441],[1.829,3.821],[0.032,-0.225]],"o":[[15.448,3.672],[1.695,0.404],[-5.839,0.741],[-3.983,-1.684],[-2.935,-2.249],[-1.645,-3.436],[1.624,2.171]],"v":[[27.955,11.204],[51.167,11.266],[37.552,15.631],[19.983,12.914],[10.717,7.368],[0.481,-4.673],[2.803,-7.567]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-20.859,-4.056],[-3.088,-0.458],[8.57,-2.196],[8.307,3.026],[1.32,1.597],[1.765,3.851],[-0.748,-1]],"o":[[21.544,4.19],[3.735,0.554],[-8.209,2.104],[-6.47,-2.357],[-2.78,-2.611],[-2.247,-4.915],[1.624,2.171]],"v":[[38.201,13.282],[74.898,10.233],[56.324,19.076],[30.196,17.492],[15.629,9.015],[4.642,-4.356],[8.275,-8.787]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[-20.859,-4.056],[-3.088,-0.458],[8.57,-2.196],[8.307,3.026],[1.32,1.597],[1.765,3.851],[-0.748,-1]],"o":[[21.544,4.19],[3.735,0.554],[-8.209,2.104],[-6.47,-2.357],[-2.78,-2.611],[-2.247,-4.915],[1.624,2.171]],"v":[[38.201,13.282],[74.898,10.233],[56.324,19.076],[30.196,17.492],[15.629,9.015],[4.642,-4.356],[8.275,-8.787]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-18.86,-8.351],[-1.325,-0.349],[5.852,-0.709],[4.242,1.826],[1.256,1.441],[1.829,3.821],[0.032,-0.225]],"o":[[15.448,3.672],[1.695,0.404],[-5.839,0.741],[-3.983,-1.684],[-2.935,-2.249],[-1.645,-3.436],[1.624,2.171]],"v":[[27.955,11.204],[51.167,11.266],[37.552,15.631],[19.983,12.914],[10.717,7.368],[0.481,-4.673],[2.803,-7.567]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-16.24,-13.855],[1.025,-0.204],[2.047,0.45],[1.151,0.735],[1.171,1.235],[1.765,3.851],[-0.748,-1]],"o":[[5.159,2.307],[-1.025,0.204],[-1.85,-0.406],[-0.778,-0.497],[-3.141,-1.765],[-2.247,-4.915],[1.624,2.171]],"v":[[14.294,8.435],[18.033,11.47],[12.523,11.037],[6.857,8.314],[2.836,5.002],[-6.558,-6.601],[-5.665,-10.675]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":35,"s":[{"i":[[-15.394,-15.632],[2.347,0.88],[5.217,0.4],[-0.036,0],[-7.125,-0.125],[1.765,3.851],[-0.748,-1]],"o":[[1.838,1.866],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-4.514,-2.527],[-2.247,-4.915],[1.624,2.171]],"v":[[9.884,7.541],[7.338,11.536],[-4.069,10.146],[-8.04,10.086],[3.402,6.903],[-8.83,-7.224],[-8.257,-11.416]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[-5.096,-8.374],[2.347,0.88],[1.609,-0.119],[-0.036,0],[-7.125,-0.125],[0.611,4.46],[-0.419,-1.176]],"o":[[1.362,2.237],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-2.743,-2.686],[-0.734,-5.354],[1.376,3.858]],"v":[[-0.002,4.819],[-2.548,8.814],[-8.021,9.11],[-11.992,9.05],[-7.704,3.855],[-12.193,-7.774],[-8.257,-11.416]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[{"i":[[-15.394,-15.632],[2.347,0.88],[5.217,0.4],[-0.036,0],[-7.125,-0.125],[1.765,3.851],[-0.748,-1]],"o":[[1.838,1.866],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-4.514,-2.527],[-2.247,-4.915],[1.624,2.171]],"v":[[9.884,7.541],[7.338,11.536],[-4.069,10.146],[-8.04,10.086],[3.402,6.903],[-8.83,-7.224],[-8.257,-11.416]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[2.831,-14.008],[4.18,1.205],[2.903,3.906],[-1.337,-1.27],[6.062,14.467],[6.231,4.347],[-1.228,-0.224]],"o":[[-1.105,5.467],[-4.18,-1.205],[-1.125,-1.513],[12.63,12.003],[-1.746,-4.167],[-4.432,-3.092],[10.781,1.969]],"v":[[16.69,17.355],[4.53,23.304],[-5.988,15.963],[-8.04,10.086],[10.483,7.764],[-6.757,-5.861],[-9.015,-10.391]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":85,"s":[{"i":[[-0.909,-6.876],[2.955,-0.693],[2.518,2.319],[-0.686,-0.635],[2.939,7.703],[3.998,4.099],[-0.988,-0.612]],"o":[[0.357,2.702],[-2.955,0.693],[-2.518,-2.319],[5.253,4.075],[-3.749,-9.825],[-3.34,-4.004],[10.418,3.126]],"v":[[11.518,11.956],[5.934,17.42],[-5.311,14.46],[-8.04,10.086],[7.161,9.489],[-7.516,-4.502],[-5.538,-6.981]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[-15.394,-15.632],[2.347,0.88],[5.217,0.4],[-0.036,0],[-7.125,-0.125],[1.765,3.851],[-0.748,-1]],"o":[[1.838,1.866],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-4.514,-2.527],[-2.247,-4.915],[1.624,2.171]],"v":[[9.884,7.541],[7.338,11.536],[-4.069,10.146],[-8.04,10.086],[3.402,6.903],[-8.83,-7.224],[-8.257,-11.416]],"c":true}]},{"t":105,"s":[{"i":[[-15.394,-15.632],[2.347,0.88],[5.217,0.4],[-0.036,0],[-7.125,-0.125],[1.765,3.851],[-0.748,-1]],"o":[[1.838,1.866],[-2.957,-0.263],[-1.83,-0.101],[-3.682,0.04],[-4.514,-2.527],[-2.247,-4.915],[1.624,2.171]],"v":[[9.884,7.541],[7.338,11.536],[-4.069,10.146],[-8.04,10.086],[3.402,6.903],[-8.83,-7.224],[-8.257,-11.416]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[25.326,31.486]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":0,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.975,0.536],[-6.896,2.144],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-14.084,-2.525],[5.564,-1.249],[2.187,-3.745]],"v":[[-2.798,0.26],[8.057,10.161],[6.826,14.91],[-4.012,-4.59],[4.286,-11.701]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-0.116,-6.751],[-10.685,-1.372],[2.996,0.317],[-2.222,4.723],[0.22,-2.367]],"o":[[1.846,2.009],[1.14,0.152],[-14.178,-1.494],[0.832,-5.579],[1.4,0.476]],"v":[[-1.429,-0.328],[13.527,8.814],[12.322,13.535],[-5.494,-3.009],[0.533,-15]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-4.282,-5.58],[-12.071,-0.976],[3.023,0.036],[3.787,8.039],[-0.269,-4.088]],"o":[[3.55,4.626],[1.147,0.093],[-14.299,-0.169],[-5.251,-11.146],[0.388,5.903]],"v":[[-1.669,-0.799],[20.559,7.081],[19.39,11.767],[-7.4,-0.975],[-4.293,-19.242]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[-4.282,-5.58],[-12.071,-0.976],[3.023,0.036],[3.787,8.039],[-0.269,-4.088]],"o":[[3.55,4.626],[1.147,0.093],[-14.299,-0.169],[-5.251,-11.146],[0.388,5.903]],"v":[[-1.669,-0.799],[20.559,7.081],[19.39,11.767],[-7.4,-0.975],[-4.293,-19.242]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.116,-6.751],[-10.685,-1.372],[2.996,0.317],[-2.222,4.723],[0.22,-2.367]],"o":[[1.846,2.009],[1.14,0.152],[-14.178,-1.494],[0.832,-5.579],[1.4,0.476]],"v":[[-1.429,-0.328],[13.527,8.814],[12.322,13.535],[-5.494,-3.009],[0.533,-15]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":35,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.975,0.536],[-6.896,2.144],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-14.084,-2.525],[5.564,-1.249],[2.187,-3.745]],"v":[[-2.798,0.26],[8.057,10.161],[6.826,14.91],[-4.012,-4.59],[4.286,-11.701]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.975,0.536],[-6.896,2.144],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-14.084,-2.525],[5.564,-1.249],[2.187,-3.745]],"v":[[-6.155,3.293],[8.057,10.161],[6.826,14.91],[-7.369,-1.558],[3.837,-7.347]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.975,0.536],[-6.896,2.144],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-14.084,-2.525],[5.564,-1.249],[2.187,-3.745]],"v":[[-2.798,0.26],[8.057,10.161],[6.826,14.91],[-4.012,-4.59],[4.286,-11.701]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[1.393,-7.271],[-4.657,-2.941],[3.574,2.066],[-2.086,2.974],[-0.436,-1.356]],"o":[[-0.312,1.629],[0.973,0.615],[-12.387,-7.162],[2.086,-2.974],[0.436,1.356]],"v":[[1.159,-1.943],[12.854,8.333],[10.121,11.238],[-4.012,-4.59],[4.286,-11.701]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.956,0.631],[-5.926,-1.672],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-18.736,-4.002],[5.532,1.561],[2.187,-3.745]],"v":[[-5.256,-0.876],[8.057,10.161],[6.826,14.91],[-7.343,-6.875],[4.286,-11.701]],"c":true}]},{"t":105,"s":[{"i":[[10.258,-3.375],[-9.607,-1.68],[2.975,0.536],[-6.896,2.144],[0.601,-1.029]],"o":[[0.521,-0.026],[1.134,0.198],[-14.084,-2.525],[5.564,-1.249],[2.187,-3.745]],"v":[[-2.798,0.26],[8.057,10.161],[6.826,14.91],[-4.012,-4.59],[4.286,-11.701]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[11.157,15.696]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.036,-20.327],[-8.366,-0.032],[-18.363,1.556],[10.924,13.307]],"o":[[2.383,23.785],[6.825,8.911],[18.363,-1.556],[-10.924,-13.307]],"v":[[3.259,1.966],[29.743,25.343],[73.71,48.538],[83.32,23.548]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019607843,0.913725490196,0.925490196078,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":0,"s":[{"i":[[0,0],[-8.194,0.491],[0,0]],"o":[[0,0],[3.86,-0.232],[0,0]],"v":[[-6.773,4.761],[0.981,-2.393],[6.728,3.902]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[2.201,1.759],[-4.768,0.77],[0,0]],"o":[[-2.201,-1.759],[3.818,-0.616],[0,0]],"v":[[-4.836,5.261],[-5.394,-1.83],[2.29,4.84]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[2.054,1.642],[-4.997,0.751],[0,0]],"o":[[-2.054,-1.642],[3.821,-0.591],[0,0]],"v":[[-3.153,2.04],[-4.967,-1.868],[2.587,4.777]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.054,1.642],[-4.997,0.751],[0,0]],"o":[[-2.054,-1.642],[3.821,-0.591],[0,0]],"v":[[-1.748,-0.634],[-4.967,-1.868],[2.587,4.777]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[2.201,1.759],[-4.768,0.77],[0,0]],"o":[[-2.201,-1.759],[3.818,-0.616],[0,0]],"v":[[-4.836,5.261],[-5.394,-1.83],[2.29,4.84]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":35,"s":[{"i":[[0,0],[-8.194,0.491],[0,0]],"o":[[0,0],[3.86,-0.232],[0,0]],"v":[[-6.773,4.761],[0.981,-2.393],[6.728,3.902]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[0,0],[-2.704,-0.654],[0,0]],"o":[[0,0],[3.759,0.909],[0,0]],"v":[[-4.962,3.552],[-6.343,-2.288],[-1.444,2.223]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60,"s":[{"i":[[0,0],[-8.194,0.491],[0,0]],"o":[[0,0],[3.86,-0.232],[0,0]],"v":[[-6.773,4.761],[0.981,-2.393],[6.728,3.902]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[10.384,13.247],[3.772,12.379],[4.779,-13.11]],"o":[[-4.157,-5.303],[-1.127,-3.699],[-0.564,1.548]],"v":[[-3.763,9.055],[0.656,-7.872],[14.766,13.782]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[0,0],[-8.194,0.491],[0,0]],"o":[[0,0],[3.86,-0.232],[0,0]],"v":[[-6.773,4.761],[0.981,-2.393],[6.728,3.902]],"c":true}]},{"t":105,"s":[{"i":[[0,0],[-8.194,0.491],[0,0]],"o":[[0,0],[3.86,-0.232],[0,0]],"v":[[-6.773,4.761],[0.981,-2.393],[6.728,3.902]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.447000002394,0.102000000898,0.102000000898,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[23.782,36.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[8.798,-11.109],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[1.752,-1.585],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.143,-1.157],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[2.611,-8.796],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[2.003,-1.863],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.316,-1.401],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-5.402,11.469],[-5.353,-8.396],[3.035,-8.955],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[2.129,-2.002],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.402,-1.522],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-4.026,9.844],[-5.353,-8.396],[3.247,-9.034],[-1.774,-4.906],[0.861,6.12],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[2.255,-2.141],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.488,-1.644],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-2.65,8.22],[-5.353,-8.396],[3.459,-9.113],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[2.255,-2.141],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.488,-1.644],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-0.896,6.642],[-5.353,-8.396],[3.459,-9.113],[-1.774,-4.906],[1.582,6.971],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[{"i":[[2.9,2.721],[-6.346,6.521],[-0.083,-4.777],[2.129,-2.002],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.402,-1.522],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-4.018,9.22],[-5.353,-8.396],[3.247,-9.034],[-1.774,-4.906],[1.151,7.446],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[1.752,-1.585],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[2.143,-1.157],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[2.611,-8.796],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":35,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[8.798,-11.109],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[7.665,6.41],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-10.108,16.681],[-5.181,-5.699],[8.798,-11.109],[-1.602,-2.208],[-4.095,14.083],[3.369,9.254],[5.619,12.107]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[8.798,-11.109],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-3.128,-3.612],[3.79,-4.411],[-7.455,-5.647],[-2.375,-0.833],[1,0.057]],"o":[[-5.508,-4.522],[1.627,-2.692],[2.224,2.568],[-3.982,4.06],[2.009,1.522],[4.029,1.254],[-4.481,-0.255]],"v":[[-3.872,19.16],[-7.333,-2.337],[13.194,-2.767],[-3.754,1.154],[2.141,16.562],[9.951,18.431],[12.201,21.284]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-8.475,11.923],[-7.675,-7.941],[8.798,-11.109],[-3.985,-4.431],[-2.351,9.344],[7.67,10.739],[9.92,13.592]],"c":true}]},{"t":105,"s":[{"i":[[4.772,4.418],[-6.346,6.521],[-0.083,-4.777],[5.417,-5.639],[-6.26,-2.111],[-2.375,-0.833],[1,0.057]],"o":[[-4.351,-4.234],[4.656,-4.71],[0.074,4.288],[-3.982,4.06],[2.39,0.799],[4.029,1.254],[-4.481,-0.255]],"v":[[-6.153,11.467],[-5.353,-8.396],[8.798,-11.109],[-1.774,-4.906],[-0.14,8.869],[7.67,10.739],[9.92,13.592]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[14.643,40.835]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[17.694,45.337],"to":[3.346,-4.578],"ti":[-3.346,4.578]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":10,"s":[37.77,17.871],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":25,"s":[37.77,17.871],"to":[-3.346,4.578],"ti":[3.346,-4.578]},{"t":35,"s":[17.694,45.337]}]},"a":{"a":0,"k":[17.694,45.337]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 7","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[0.919,-2.758],[2.987,4.551],[4.897,6.838],[-1.543,4.12]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-4.518,-5.656],[-2.12,-1.954],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[2.12,1.954],[1.554,1.575],[-4.909,-5.93]],"v":[[-1.566,-5.52],[3.366,3.802],[10.009,8.61],[-1.543,4.12]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[-4.518,-5.656],[-2.12,-1.954],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[2.12,1.954],[1.554,1.575],[-4.909,-5.93]],"v":[[-1.566,-5.52],[3.366,3.802],[10.009,8.61],[-1.543,4.12]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":35,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[0.919,-2.758],[2.987,4.551],[4.897,6.838],[-1.543,4.12]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[-2.268,-2.926],[-1.579,-4.511],[0.211,0.215],[5.102,1.75]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-5.102,-1.75]],"v":[[-2.921,-1.106],[2.987,4.551],[2.519,5.994],[-4.294,2.955]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[0.919,-2.758],[2.987,4.551],[4.897,6.838],[-1.543,4.12]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":80,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[-0.536,4.221],[1.533,11.53],[3.443,13.817],[-2.997,11.099]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[0.919,-2.758],[2.987,4.551],[4.897,6.838],[-1.543,4.12]],"c":true}]},{"t":105,"s":[{"i":[[-4.518,-5.656],[-1.641,-2.504],[0.211,0.215],[3.144,3.906]],"o":[[0,0],[0.673,1.12],[1.554,1.575],[-4.909,-5.93]],"v":[[0.919,-2.758],[2.987,4.551],[4.897,6.838],[-1.543,4.12]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[17.84,55.727]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"ear R","parent":28,"sr":1,"ks":{"p":{"a":0,"k":[326.561,103.226,0]},"a":{"a":0,"k":[73.794,102.718,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-8.384,-0.988],[-2.33,-63.067],[4,9]],"o":[[8.514,-14.316],[8.384,0.987],[0.612,16.55],[0,0]],"v":[[-29.691,-13.157],[3.189,-46.225],[29.079,30.663],[7.292,28.288]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[44.691,62.213]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-14,-17]],"o":[[15,3],[0,0]],"v":[[-2.5,-38.5],[1.5,38.5]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[52.483,55.001]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[4.144,-20.125],[-8.852,-5.401],[-1.856,11.197],[3.614,17.643]],"o":[[4.544,4.964],[-4.143,20.124],[8.85,5.4],[1.857,-11.197],[-3.613,-17.643]],"v":[[-10.756,-46.593],[-7.601,-10.445],[-5.412,33.083],[12.407,35.396],[6.71,-17.301]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[60.825,61.569]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.431,8.375],[-8.383,-0.987],[-2.33,-63.067]],"o":[[8.528,-10.901],[8.383,0.988],[1.308,35.402]],"v":[[-30.039,-22.078],[5.029,-56.158],[28.732,21.742]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.541000007181,0.455000005984,0.573000021542,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[45.039,71.133]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":27,"ty":3,"nm":"Null 2","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":12},"p":{"a":0,"k":[287.811,339.011,0]},"a":{"a":0,"k":[50,50,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":5,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":45,"s":[103,97,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":75,"s":[97,103,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":95,"s":[103,97,100]},{"t":120,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"head","parent":27,"sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.569],"y":[0.038]},"t":5,"s":[-12]},{"i":{"x":[0.415],"y":[1.029]},"o":{"x":[0.333],"y":[0]},"t":45,"s":[-22]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":75,"s":[-12]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":95,"s":[-22]},{"t":120,"s":[-12]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.569,"y":0},"t":2,"s":[73.83,-76.055,0],"to":[-8.534,0.03,0],"ti":[0.291,1.77,0]},{"i":{"x":0.415,"y":1},"o":{"x":0.333,"y":0},"t":42,"s":[59.761,-67.09,0],"to":[-0.291,-1.77,0],"ti":[-7.931,4.822,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":72,"s":[72.084,-86.674,0],"to":[1.59,-0.967,0],"ti":[-0.291,-1.77,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[59.761,-67.09,0],"to":[0.291,1.77,0],"ti":[1.861,-0.007,0]},{"t":117,"s":[73.83,-76.055,0]}]},"a":{"a":0,"k":[175.828,150.007,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":0,"s":[{"i":[[-7.757,37.124],[8.483,12.743],[33.421,-43.443],[21.766,-1.513],[7.1,-28.053],[-34.941,-37.761],[-11.174,88.362],[-37.879,-6.729],[-0.095,0.176],[-31.014,-58.505],[0,0],[14.241,-72.739],[-6.274,8.083]],"o":[[15.132,-80.993],[-34.437,-50.783],[-3.133,3.566],[-21.38,1.487],[-9.893,39.09],[10.577,12.163],[9.103,-71.845],[0.657,0.117],[26.393,-49.26],[0,0],[18.343,13.531],[-13.369,61.603],[16.807,-21.652]],"v":[[151.669,45.461],[120.64,-58.1],[-65.864,-77.467],[-100.43,-76.305],[-144.99,-26.303],[-112.398,104.376],[-154.982,-10.318],[-70.914,-81.08],[-70.335,-81.317],[127.425,-58.144],[126.56,-59.162],[158.173,46.77],[112.167,122.494]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":40,"s":[{"i":[[-7.757,37.124],[8.483,12.743],[33.421,-43.443],[21.766,-1.513],[4.256,-36.267],[-30.211,-32.649],[-10.213,88.478],[-27.783,-18.484],[-0.095,0.176],[-31.014,-58.505],[0,0],[14.241,-72.739],[-6.274,8.083]],"o":[[15.132,-80.993],[-34.437,-50.783],[-5.773,7.066],[-25.413,1.767],[-4.314,36.76],[10.577,12.163],[8.852,-76.684],[0.556,0.37],[26.393,-49.26],[0,0],[18.343,13.531],[-13.369,61.603],[16.807,-21.652]],"v":[[151.669,45.461],[120.64,-58.1],[-65.864,-77.467],[-100.728,-82.604],[-147.748,-17.722],[-112.398,104.376],[-154.126,-16.168],[-70.914,-81.08],[-70.335,-81.317],[127.425,-58.144],[126.56,-59.162],[158.173,46.77],[112.167,122.494]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":70,"s":[{"i":[[-7.757,37.124],[8.483,12.743],[33.421,-43.443],[22.815,-4.317],[7.097,-28.054],[-29.159,-28.84],[-4.11,84.085],[-38.304,1.543],[-0.095,0.176],[-31.014,-58.505],[0,0],[14.241,-72.739],[-6.274,8.083]],"o":[[15.132,-80.993],[-34.437,-50.783],[-3.133,3.566],[-21.058,3.984],[-11.568,45.726],[10.577,12.163],[3.536,-72.333],[0.667,-0.027],[26.393,-49.26],[0,0],[18.343,13.531],[-13.369,61.603],[16.807,-21.652]],"v":[[151.669,45.461],[120.64,-58.1],[-65.864,-77.467],[-100.626,-71.441],[-148.288,-23.678],[-113.806,103.623],[-158.728,-1.603],[-70.914,-81.08],[-70.335,-81.317],[127.425,-58.144],[126.56,-59.162],[158.173,46.77],[112.167,122.494]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[-7.757,37.124],[8.483,12.743],[33.421,-43.443],[21.766,-1.513],[4.256,-36.267],[-30.211,-32.649],[-10.213,88.478],[-27.783,-18.484],[-0.095,0.176],[-31.014,-58.505],[0,0],[14.241,-72.739],[-6.274,8.083]],"o":[[15.132,-80.993],[-34.437,-50.783],[-5.773,7.066],[-25.413,1.767],[-4.314,36.76],[10.577,12.163],[8.852,-76.684],[0.556,0.37],[26.393,-49.26],[0,0],[18.343,13.531],[-13.369,61.603],[16.807,-21.652]],"v":[[151.669,45.461],[120.64,-58.1],[-65.864,-77.467],[-100.728,-82.604],[-147.748,-17.722],[-112.398,104.376],[-154.126,-16.168],[-70.914,-81.08],[-70.335,-81.317],[127.425,-58.144],[126.56,-59.162],[158.173,46.77],[112.167,122.494]],"c":true}]},{"t":115,"s":[{"i":[[-7.757,37.124],[8.483,12.743],[33.421,-43.443],[21.766,-1.513],[7.1,-28.053],[-34.941,-37.761],[-11.174,88.362],[-37.879,-6.729],[-0.095,0.176],[-31.014,-58.505],[0,0],[14.241,-72.739],[-6.274,8.083]],"o":[[15.132,-80.993],[-34.437,-50.783],[-3.133,3.566],[-21.38,1.487],[-9.893,39.09],[10.577,12.163],[9.103,-71.845],[0.657,0.117],[26.393,-49.26],[0,0],[18.343,13.531],[-13.369,61.603],[16.807,-21.652]],"v":[[151.669,45.461],[120.64,-58.1],[-65.864,-77.467],[-100.43,-76.305],[-144.99,-26.303],[-112.398,104.376],[-154.982,-10.318],[-70.914,-81.08],[-70.335,-81.317],[127.425,-58.144],[126.56,-59.162],[158.173,46.77],[112.167,122.494]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[172.914,130.827]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14,54],[4.444,4.955],[34.368,-32.605],[60,57],[5.808,10.261],[-20.215,-19.205],[-39,37]],"o":[[-1.285,-4.957],[6.329,47.928],[-39,37],[-9.629,-9.147],[5.076,22.27],[60,57],[39,-37]],"v":[[144.152,-85.831],[134.574,-101.169],[90.818,27.502],[-135.182,9.502],[-158.152,-19.802],[-121.848,44.169],[104.152,62.169]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819999964097,0.74900004069,0.769000004787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[181.598,191.84]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[4.833,-2.167],[-19.334,0.834],[17,1.667]],"o":[[-22.5,0.333],[-4.834,2.166],[19.333,-0.833],[-17,-1.666]],"v":[[-5.458,-5.521],[-39.916,0.021],[7.084,4.687],[27.75,-3.813]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.987999949736,0.987999949736,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[183.333,35.655]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[17,-23],[-60,-57],[-39,37],[14,54],[0,0],[73,8]],"o":[[-26,-2],[-17,23],[60,57],[39,-37],[-3.654,-14.094],[0,0],[-78.17,-8.566]],"v":[[-66.25,-98.217],[-132.25,-81.217],[-109.75,77.783],[111.75,97.283],[155.75,-45.217],[127.75,-77.217],[33.75,-126.217]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":40,"s":[{"i":[[0,0],[17,-23],[-60,-57],[-39,37],[14,54],[0,0],[73,8]],"o":[[-21.525,-11.852],[-17,23],[60,57],[39,-37],[-3.654,-14.094],[0,0],[-78.17,-8.566]],"v":[[-66.25,-98.217],[-130.836,-87.743],[-109.75,77.783],[111.75,97.283],[155.75,-45.217],[127.75,-77.217],[33.75,-126.217]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":70,"s":[{"i":[[0,0],[17,-23],[-57.731,-43.104],[-39,37],[14,54],[0,0],[73,8]],"o":[[-24.615,-2.505],[-17,23],[66.314,49.512],[39,-37],[-3.654,-14.094],[0,0],[-78.17,-8.566]],"v":[[-66.25,-98.217],[-140.677,-66.566],[-109.75,77.783],[111.75,97.283],[155.75,-45.217],[127.75,-77.217],[33.75,-126.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[0,0],[17,-23],[-60,-57],[-39,37],[14,54],[0,0],[73,8]],"o":[[-21.525,-11.852],[-17,23],[60,57],[39,-37],[-3.654,-14.094],[0,0],[-78.17,-8.566]],"v":[[-66.25,-98.217],[-130.836,-87.743],[-109.75,77.783],[111.75,97.283],[155.75,-45.217],[127.75,-77.217],[33.75,-126.217]],"c":true}]},{"t":115,"s":[{"i":[[0,0],[17,-23],[-60,-57],[-39,37],[14,54],[0,0],[73,8]],"o":[[-26,-2],[-17,23],[60,57],[39,-37],[-3.654,-14.094],[0,0],[-78.17,-8.566]],"v":[[-66.25,-98.217],[-132.25,-81.217],[-109.75,77.783],[111.75,97.283],[155.75,-45.217],[127.75,-77.217],[33.75,-126.217]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[170,151.226]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"ear L","parent":28,"sr":1,"ks":{"p":{"a":0,"k":[192.291,30.766,0]},"a":{"a":0,"k":[86.998,57.532,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-9.095,-14.043]],"o":[[9.581,30.312],[0,0]],"v":[[-3.436,-30.542],[2.95,30.542]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[61.699,46.215]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[5.857,0.673],[-23.668,-30.971]],"o":[[-8.132,-22.162],[-5.857,-0.672],[23.669,30.97]],"v":[[35.349,-10.926],[7.914,-52.801],[-11.681,22.503]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.149000010771,0.090000002992,0.176000004189,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[50.348,68.473]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[4.383,9.068],[-0.078,-3.404]],"o":[[1.704,-11.734],[10.745,4.364],[0.078,3.404]],"v":[[-14.265,31.038],[-14.276,-31.038],[14.198,12.608]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.317999985639,0.250999989229,0.340999977261,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[72.8,49.412]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[5.857,0.673],[-23.668,-30.971]],"o":[[-8.132,-22.162],[-5.857,-0.672],[23.669,30.97]],"v":[[35.349,-10.926],[7.914,-52.801],[-11.681,22.503]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.541000007181,0.455000005984,0.573000021542,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[50.348,68.473]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"neck","sr":1,"ks":{"p":{"a":0,"k":[338.345,409.653,0]},"a":{"a":0,"k":[161.669,147.644,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":42,"s":[103,97,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":72,"s":[97,103,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":92,"s":[103,97,100]},{"t":120,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.381,-0.905],[10.284,-27.252],[34.027,-15.556],[-0.905,0.653],[-10.166,27.433],[24.062,15.756],[-0.891,1.362]],"o":[[26.373,17.266],[-10.304,28.396],[-1.034,0.474],[27.897,-20.172],[9.347,-24.506],[-1.414,-0.925],[0.906,-1.382]],"v":[[3.203,-58.085],[26.866,13.038],[-35.302,58.516],[-36.245,56.915],[21.253,10.978],[-0.063,-53.077],[-0.936,-57.222]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[291.254,59.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.682,0.395],[15.347,32.96],[-0.949,-1.273],[-11.486,-18.784],[0.895,1]],"o":[[-32.358,-18.752],[-0.689,-1.481],[15.381,20.602],[4.645,7.557],[0.523,0.584]],"v":[[18.695,39.303],[-19.765,-37.046],[-17.495,-38.425],[6.315,21.575],[19.559,38.242]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[20.704,82.895]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[23,15],[0,0],[0,0],[0,0],[24,-17.375],[-9.775,9.164],[-14,36]],"o":[[0,0],[0,0],[0,0],[44.333,7.666],[16.5,5.25],[48,-45],[11.581,-29.781]],"v":[[43.71,-73.582],[-52.547,-60.97],[-68.29,-52.582],[-77.29,0.418],[-62.665,65.543],[-26.29,64.418],[65.71,-4.582]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819999964097,0.74900004069,0.769000004787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[249.114,77.241]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[-1.024,-17.807],[-36,-3.834],[6.167,6.5],[41.167,12.167]],"o":[[2.167,37.667],[36,3.833],[-6.166,-6.5],[-34.276,-10.13]],"v":[[-69.988,-22.18],[3.179,36.154],[64.845,10.82],[-16.488,-3.68]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":40,"s":[{"i":[[-2.605,-17.645],[-36,-3.834],[6.167,6.5],[38.152,9.528]],"o":[[3.491,23.649],[36,3.833],[-6.166,-6.5],[-34.677,-8.66]],"v":[[-64.888,-8.014],[-2.893,35.124],[55.859,12.623],[-16.245,4.305]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-1.024,-17.807],[-36,-3.834],[6.167,6.5],[41.167,12.167]],"o":[[2.167,37.667],[36,3.833],[-6.166,-6.5],[-34.276,-10.13]],"v":[[-69.988,-22.18],[3.179,36.154],[64.845,10.82],[-16.488,-3.68]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":90,"s":[{"i":[[-2.605,-17.645],[-36,-3.834],[6.167,6.5],[38.152,9.528]],"o":[[3.491,23.649],[36,3.833],[-6.166,-6.5],[-34.677,-8.66]],"v":[[-64.888,-8.014],[-2.893,35.124],[55.859,12.623],[-16.245,4.305]],"c":true}]},{"t":115,"s":[{"i":[[-1.024,-17.807],[-36,-3.834],[6.167,6.5],[41.167,12.167]],"o":[[2.167,37.667],[36,3.833],[-6.166,-6.5],[-34.276,-10.13]],"v":[[-69.988,-22.18],[3.179,36.154],[64.845,10.82],[-16.488,-3.68]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.987999949736,0.987999949736,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[109.312,94.505]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[11.581,-29.78],[48,-45],[33,26],[15,25]],"o":[[23,15],[-14,36],[-33.726,31.616],[-32.52,-25.622],[0,0]],"v":[[128.96,-73.308],[150.96,-4.308],[55.626,41.692],[-124.04,44.692],[-162.54,-34.975]],"c":false}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[163.864,76.967]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"body","sr":1,"ks":{"p":{"a":0,"k":[336.91,498.263,0]},"a":{"a":0,"k":[160.66,196.596,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[103,97,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":70,"s":[97,103,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":90,"s":[103,97,100]},{"t":117,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0],[5,-9]],"o":[[25.13,-47.91],[0,0],[0,0]],"v":[[125.436,48.632],[133.435,-48.632],[-150.565,-28.632]],"c":false}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[176.815,63.632]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.165,-17.083],[6.74,-1.296],[0.425,1.477],[-6.682,21.544],[-0.518,-0.16]],"o":[[-0.455,46.656],[-1.538,0.296],[-6.116,-21.534],[0.161,-0.518],[1.376,0.427]],"v":[[-0.565,-18.478],[1.853,36.903],[-1.602,34.775],[-1.911,-36.391],[-0.682,-37.038]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[11.935,116.928]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.432,3.581],[-32.508,23.877],[0.782,-0.856],[-16.566,-47.916]],"o":[[-16.339,-41.075],[0.934,-0.687],[-20.147,22.104],[1.299,3.754]],"v":[[-6.777,42.277],[21.05,-45.171],[22.335,-43.744],[-1.17,40.141]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[212.224,141.791]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0.5,16],[0,0],[8,-22.5],[0,0]],"o":[[-8.167,-16],[-0.5,-16],[0,0],[-8,22.5],[0,0]],"v":[[20.084,33.083],[11.916,-5.917],[18.251,-43.25],[-12.084,-5.584],[-7.249,43.25]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[215.666,140.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 4","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-23.723,7.742],[0,0],[54.204,-2.708],[0,0],[29.5,-25],[5.5,-17],[1.542,-18.312]],"o":[[144,-47],[0,0],[0,0],[21,5.5],[-29.5,25],[-4.868,15.048],[19.215,-1.335]],"v":[[-31.569,77.47],[70.431,-90.531],[-28.808,-86.048],[-48.569,-66.531],[-46.694,-8.906],[-88.569,35.47],[-95.931,90.531]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819999964097,0.74900004069,0.769000004787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[239.819,105.531]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 5","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5,-9],[-13,-54],[-133.963,43.724],[0,0]],"o":[[-9.713,17.482],[0,0],[144,-47],[0,0]],"v":[[-141.75,-77.667],[-154.75,38.334],[40.25,70.334],[142.25,-97.667]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[168,112.667]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 6","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"hand","sr":1,"ks":{"p":{"a":0,"k":[180.099,310.667,0]},"a":{"a":0,"k":[63.599,15,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":10,"s":[{"i":[[0,0],[3,-15],[-25,2],[-7,3]],"o":[[-18,4],[-3,15],[25,-2],[7,-3]],"v":[[14,-71],[-27,-35],[-21,69],[39,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[0,0],[5.862,-12.632],[-28.202,-0.477],[-11.611,10.258]],"o":[[-18,4],[-15.681,16.622],[40.721,0.854],[6.424,-3.757]],"v":[[14,-71],[-34.301,-39.355],[-24.221,56.979],[37.975,-0.818]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[9.542,-9.589],[-32.32,-3.661],[-17.54,19.591]],"o":[[-18,4],[-31.985,18.708],[28.853,2.952],[5.682,-4.729]],"v":[[14,-71],[-43.689,-44.955],[-33.506,44.951],[36.658,-4.441]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[0,0],[14.172,-5.759],[-37.5,-7.667],[-25,31.333]],"o":[[-18,4],[-52.5,21.333],[31.579,6.456],[4.75,-5.953]],"v":[[14,-71],[-55.5,-52],[-51.75,37.75],[35,-9]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[{"i":[[0,0],[11.574,-7.907],[-34.594,-5.419],[-20.815,24.745]],"o":[[-18,4],[-40.991,19.861],[30.05,4.49],[5.273,-5.266]],"v":[[14,-71],[-48.874,-48.047],[-38.35,43.516],[35.93,-6.442]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[0,0],[6.751,-11.897],[-29.197,-1.246],[-13.044,12.514]],"o":[[-18,4],[-19.621,17.126],[35.591,2.732],[6.244,-3.992]],"v":[[14,-71],[-36.57,-40.708],[-22.841,52.851],[37.657,-1.694]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[3,-15],[-25,2],[-7,3]],"o":[[-18,4],[-3,15],[25,-2],[7,-3]],"v":[[14,-71],[-27,-35],[-21,69],[39,2]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[61,86]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[1.833,12.083],[5.334,-3.167],[0,0]],"o":[[11.333,-2.584],[-1.834,-12.084],[-5.333,3.167],[0,0]],"v":[[-5.833,19.292],[16.833,-7.208],[2.999,-13.875],[-18.667,4.792]],"c":true}},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[53.5,35.708]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":10,"s":[{"i":[[0,0],[3,-15],[-25,2],[-7,3]],"o":[[-18,4],[-3,15],[25,-2],[7,-3]],"v":[[14,-71],[-27,-35],[-21,69],[39,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[0,0],[5.862,-12.632],[-28.202,-0.477],[-11.611,10.258]],"o":[[-18,4],[-15.681,16.622],[40.721,0.854],[6.424,-3.757]],"v":[[14,-71],[-34.301,-39.355],[-24.221,56.979],[37.975,-0.818]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[9.542,-9.589],[-32.32,-3.661],[-17.54,19.591]],"o":[[-18,4],[-31.985,18.708],[28.853,2.952],[5.682,-4.729]],"v":[[14,-71],[-43.689,-44.955],[-33.506,44.951],[36.658,-4.441]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":45,"s":[{"i":[[0,0],[14.172,-5.759],[-37.5,-7.667],[-25,31.333]],"o":[[-18,4],[-52.5,21.333],[31.579,6.456],[4.75,-5.953]],"v":[[14,-71],[-55.5,-52],[-51.75,37.75],[35,-9]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[{"i":[[0,0],[11.574,-7.907],[-34.594,-5.419],[-20.815,24.745]],"o":[[-18,4],[-40.991,19.861],[30.05,4.49],[5.273,-5.266]],"v":[[14,-71],[-48.874,-48.047],[-38.35,43.516],[35.93,-6.442]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[0,0],[6.751,-11.897],[-29.197,-1.246],[-13.044,12.514]],"o":[[-18,4],[-19.621,17.126],[35.591,2.732],[6.244,-3.992]],"v":[[14,-71],[-36.57,-40.708],[-22.841,52.851],[37.657,-1.694]],"c":true}]},{"t":100,"s":[{"i":[[0,0],[3,-15],[-25,2],[-7,3]],"o":[[-18,4],[-3,15],[25,-2],[7,-3]],"v":[[14,-71],[-27,-35],[-21,69],[39,2]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819999964097,0.74900004069,0.769000004787,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[61,86]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 3","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"neck 2","parent":30,"sr":1,"ks":{"p":{"a":0,"k":[31.165,93.769,0]},"a":{"a":0,"k":[55.37,109.11,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[16.958,6.358],[-1.029,-37.04],[-22,20]],"o":[[-32,-12],[1,36],[22,-20]],"v":[[12.514,-41],[-44.486,-2],[23.515,33]],"c":true}},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.458999992819,0.322000002394,0.361000001197,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.913999968884,0.925,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[60.514,68]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0}]}
\ No newline at end of file
diff --git a/Tests/LottieMesh/Resources/Fireworks.json b/Tests/LottieMesh/Resources/Fireworks.json
deleted file mode 100644
index 998fbd775c..0000000000
--- a/Tests/LottieMesh/Resources/Fireworks.json
+++ /dev/null
@@ -1 +0,0 @@
-{"tgs":1,"v":"5.5.2","fr":60,"ip":0,"op":180,"w":512,"h":512,"nm":"512_fireworks dop","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"fireworks !!yellow 4 vspish","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[100]},{"t":86,"s":[0]}]},"r":{"a":0,"k":-10.694},"p":{"a":0,"k":[977.5,379,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[80,80,100]}},"ao":0,"w":486,"h":486,"ip":36,"op":86,"st":6,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"fireworks pink 5","refId":"comp_3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[100]},{"t":94,"s":[0]}]},"r":{"a":0,"k":-0.087},"p":{"a":0,"k":[1279.5,464,0]},"a":{"a":0,"k":[243,243,0]}},"ao":0,"w":486,"h":486,"ip":48,"op":94,"st":18,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"fireworks !!yellow 4 vspish","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[100]},{"t":115,"s":[0]}]},"r":{"a":0,"k":23.994},"p":{"a":0,"k":[305.5,923,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[78.011,78.011,100]}},"ao":0,"w":486,"h":486,"ip":65,"op":115,"st":35,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"fireworks pink 5","refId":"comp_3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[100]},{"t":81,"s":[0]}]},"p":{"a":0,"k":[441.5,398,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[157.86,157.86,100]}},"ao":0,"w":486,"h":486,"ip":31,"op":81,"st":1,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"Trace Shape Layer 1: Path 6 [1.1]","cl":"1","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[-120.256]},{"t":29,"s":[-176.947]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[1286,792,0],"to":[-172.306,-276.404,0],"ti":[305.23,23.654,0]},{"t":29,"s":[468.343,405.178,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":10,"s":[40,40,100]},{"t":30,"s":[150,150,100]}]}},"ao":0,"ip":0,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"!!!rocket pink 2","parent":5,"refId":"comp_4","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":1,"op":36,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"fireworks !!yellow 4 vspish","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[100]},{"t":99,"s":[0]}]},"r":{"a":0,"k":-10.694},"p":{"a":0,"k":[633.5,1163,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[128.178,128.178,100]}},"ao":0,"w":486,"h":486,"ip":49,"op":99,"st":19,"bm":0},{"ddd":0,"ind":8,"ty":3,"nm":"Trace Shape Layer 1: Path 5 [1.2]","cl":"2","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":16,"s":[98.009]},{"t":46,"s":[185.502]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":16,"s":[1236,866,0],"to":[-48.547,286.872,0],"ti":[243.966,25.033,0]},{"t":46,"s":[667.754,1167.601,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":16,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,3.222]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":26,"s":[40,40,100]},{"t":46,"s":[130,130,100]}]}},"ao":0,"ip":16,"op":47,"st":-44,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"!!!rocket yellow 2","parent":8,"refId":"comp_5","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":16,"op":52,"st":16,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"fireworks !!blue 4 vspish","refId":"comp_6","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[100]},{"t":100,"s":[0]}]},"r":{"a":0,"k":-0.087},"p":{"a":0,"k":[695.5,832,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[201.159,201.159,100]}},"ao":0,"w":486,"h":486,"ip":54,"op":100,"st":24,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"Trace Shape Layer 1: Path 8 [1.8]","cl":"8","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[112.759]},{"t":51,"s":[219.154]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.82,"y":0},"t":22,"s":[1352,810,0],"to":[-138.369,305.192,0],"ti":[207.549,143.516,0]},{"t":51,"s":[705.012,835.922,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":22,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,-2.333]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":32,"s":[40,40,100]},{"t":52,"s":[180,180,100]}]}},"ao":0,"ip":22,"op":52,"st":-38,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"!!!rocket blue 2","parent":11,"refId":"comp_7","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":22,"op":58,"st":22,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"fireworks pink 5","refId":"comp_3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":115,"s":[100]},{"t":125,"s":[0]}]},"p":{"a":0,"k":[1025.5,1230,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[-119.753,119.753,100]}},"ao":0,"w":486,"h":486,"ip":76,"op":125,"st":45,"bm":0},{"ddd":0,"ind":14,"ty":3,"nm":"Trace Shape Layer 1: Path 2 [1.4]","cl":"4","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[-0.702]},"o":{"x":[0.333],"y":[0]},"t":43,"s":[56.31]},{"i":{"x":[0.667],"y":[0.756]},"o":{"x":[0.333],"y":[0.183]},"t":53,"s":[67.425]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[1.177]},"t":62,"s":[160.472]},{"t":73,"s":[184.041]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":43,"s":[1266,806,0],"to":[170.946,262.206,0],"ti":[330.742,0.419,0]},{"t":73,"s":[1052.274,1229.28,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":43,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,4.333]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":53,"s":[40,40,100]},{"t":73,"s":[120,120,100]}]}},"ao":0,"ip":43,"op":74,"st":-17,"bm":0},{"ddd":0,"ind":15,"ty":0,"nm":"!!!rocket pink 2","parent":14,"refId":"comp_4","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":43,"op":79,"st":43,"bm":0},{"ddd":0,"ind":16,"ty":0,"nm":"fireworks !!blue 4 vspish","refId":"comp_6","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[100]},{"t":137,"s":[0]}]},"r":{"a":0,"k":12.326},"p":{"a":0,"k":[560.5,539,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[-177.976,177.976,100]}},"ao":0,"w":486,"h":486,"ip":87,"op":137,"st":57,"bm":0},{"ddd":0,"ind":17,"ty":3,"nm":"Trace Shape Layer 1: Path 7 [1.5]","cl":"5","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":55,"s":[155.577]},{"t":84,"s":[228.764]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":55,"s":[1194,772,0],"to":[-257.364,110.984,0],"ti":[153.116,221.504,0]},{"t":84,"s":[574.62,567.336,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":55,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,-1.222]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":65,"s":[40,40,100]},{"t":85,"s":[170,170,100]}]}},"ao":0,"ip":55,"op":85,"st":-5,"bm":0},{"ddd":0,"ind":18,"ty":0,"nm":"!!!rocket blue 2","parent":17,"refId":"comp_7","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":55,"op":91,"st":55,"bm":0},{"ddd":0,"ind":19,"ty":0,"nm":"fireworks !!yellow 4 vspish","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":165,"s":[100]},{"t":175,"s":[0]}]},"r":{"a":0,"k":-0.478},"p":{"a":0,"k":[1038.964,328.288,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[132.042,132.042,100]}},"ao":0,"w":486,"h":486,"ip":125,"op":175,"st":95,"bm":0},{"ddd":0,"ind":20,"ty":3,"nm":"Trace Shape Layer 1: Path 3 [1.6]","cl":"6","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":93,"s":[-102.219]},{"t":122,"s":[-148.865]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":93,"s":[1362,740,0],"to":[-42.181,-182.712,0],"ti":[156.249,102.291,0]},{"t":122,"s":[1054.382,305.32,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":93,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":103,"s":[40,40,100]},{"t":123,"s":[130,130,100]}]}},"ao":0,"ip":93,"op":150,"st":33,"bm":0},{"ddd":0,"ind":21,"ty":0,"nm":"!!!rocket yellow 2","parent":20,"refId":"comp_5","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":93,"op":129,"st":93,"bm":0},{"ddd":0,"ind":22,"ty":0,"nm":"fireworks !!blue 4 vspish","refId":"comp_6","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":170,"s":[100]},{"t":180,"s":[0]}]},"r":{"a":0,"k":11.633},"p":{"a":0,"k":[655.5,1077,0]},"a":{"a":0,"k":[243,243,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":486,"h":486,"ip":134,"op":180,"st":105,"bm":0},{"ddd":0,"ind":23,"ty":3,"nm":"Trace Shape Layer 1: Path 1 [1.3]","cl":"3","sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.703]},"o":{"x":[0.333],"y":[0]},"t":102,"s":[59.135]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.623]},"t":112,"s":[132.595]},{"t":131,"s":[199.135]}]},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[1156,836,0],"to":[208.414,207.152,0],"ti":[260.651,130.415,0]},{"t":131,"s":[655.186,1070.59,0]}]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":102,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,6.556]},"o":{"x":[1,1,1],"y":[0,0,0]},"t":112,"s":[40,40,100]},{"t":132,"s":[100,100,100]}]}},"ao":0,"ip":102,"op":132,"st":42,"bm":0},{"ddd":0,"ind":24,"ty":0,"nm":"!!!rocket blue 2","parent":23,"refId":"comp_7","sr":1,"ks":{"r":{"a":0,"k":90},"p":{"a":0,"k":[-167.855,0.94,0]},"a":{"a":0,"k":[256.94,395.855,0]}},"ao":0,"w":512,"h":512,"ip":102,"op":138,"st":102,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"pink","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":100,"s":[0]}]},"p":{"a":0,"k":[245.75,225.75,0]},"a":{"a":0,"k":[2.75,-17.25,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.312,8.525],[3.244,0.766],[0.278,-4.348]],"o":[[-1.312,-8.525],[-5.358,-1.265],[-0.278,4.348]],"v":[[6.13,-24.571],[8.951,-66.768],[5.014,-23.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.55,23.061],[3.244,0.766],[0.753,-11.762]],"o":[[-3.55,-23.061],[-5.358,-1.265],[-0.753,11.762]],"v":[[11.788,-37.733],[14.47,-92.154],[8.769,-35.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.113,0.736],[3.244,0.766],[0.024,-0.376]],"o":[[-0.113,-0.736],[-5.358,-1.265],[-0.024,0.376]],"v":[[1.251,-14.165],[19.643,-137.56],[1.155,-14.085]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.014],[3.244,0.766],[0,-0.007]],"o":[[-0.002,-0.014],[-5.358,-1.265],[0,0.007]],"v":[[29.568,-215.114],[32.47,-250.154],[29.566,-215.113]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.775,14.209],[6.351,4.603],[2.652,-16.185]],"o":[[0.775,-14.209],[-4.056,-2.94],[-2.652,16.185]],"v":[[7.231,-23.969],[18.873,-61.186],[6.13,-24.571]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-2.096,38.439],[6.351,4.603],[7.173,-43.783]],"o":[[2.096,-38.439],[-4.056,-2.94],[-7.173,43.783]],"v":[[14.767,-36.105],[37.637,-108.647],[11.788,-37.733]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.067,1.227],[6.351,4.603],[0.229,-1.398]],"o":[[0.067,-1.227],[-4.056,-2.94],[-0.229,1.398]],"v":[[1.932,-14.242],[49.85,-146.868],[1.837,-14.294]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,0.023],[6.351,4.603],[0.004,-0.026]],"o":[[0.001,-0.023],[-4.056,-2.94],[-0.004,0.026]],"v":[[75.069,-225.113],[80.137,-241.647],[75.068,-225.114]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.749,6.829],[6.31,5.609],[1.359,-6.48]],"o":[[-0.749,-6.829],[-3.554,-3.159],[-1.359,6.48]],"v":[[8.596,-23.217],[31.24,-73.607],[7.231,-23.969]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.026,18.473],[6.31,5.609],[3.677,-17.531]],"o":[[-2.026,-18.473],[-3.554,-3.159],[-3.677,17.531]],"v":[[18.46,-34.07],[47.481,-104.355],[14.767,-36.105]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.065,0.59],[6.31,5.609],[0.117,-0.56]],"o":[[-0.065,-0.59],[-3.554,-3.159],[-0.117,0.56]],"v":[[2.166,-13.836],[63.43,-142.576],[2.048,-13.901]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.011],[6.31,5.609],[0.002,-0.011]],"o":[[-0.001,-0.011],[-3.554,-3.159],[-0.002,0.011]],"v":[[84.072,-198.612],[102.981,-237.355],[84.069,-198.613]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.199,15.089],[5.581,6.595],[12.758,-17.563]],"o":[[6.199,-15.089],[-2.72,-3.214],[-12.758,17.563]],"v":[[9.486,-22.203],[48.882,-61.987],[8.281,-23.532]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.769,40.819],[5.581,6.595],[34.513,-47.512]],"o":[[16.769,-40.819],[-2.72,-3.214],[-34.513,47.512]],"v":[[21.719,-30.475],[103.282,-109.764],[18.46,-34.07]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.535,1.303],[5.581,6.595],[1.102,-1.517]],"o":[[0.535,-1.303],[-2.72,-3.214],[-1.102,1.517]],"v":[[3.204,-13.341],[122.823,-131.604],[3.099,-13.456]],"c":true}]},{"t":100,"s":[{"i":[[-0.01,0.025],[5.581,6.595],[0.021,-0.029]],"o":[[0.01,-0.025],[-2.72,-3.214],[-0.021,0.029]],"v":[[156.574,-169.11],[171.282,-185.764],[156.572,-169.112]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.223,9.945],[2.258,6.104],[6.726,-10.205]],"o":[[4.223,-9.945],[-1.817,-4.912],[-6.726,10.205]],"v":[[11.177,-20.424],[48.778,-58.677],[9.801,-21.888]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-11.423,26.904],[2.258,6.104],[18.195,-27.606]],"o":[[11.423,-26.904],[-1.817,-4.912],[-18.195,27.606]],"v":[[25.439,-26.516],[74.48,-79.649],[21.719,-30.475]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.365,0.859],[2.258,6.104],[0.581,-0.882]],"o":[[0.365,-0.859],[-1.817,-4.912],[-0.581,0.882]],"v":[[3.264,-12.932],[105.66,-107.524],[3.146,-13.058]],"c":true}]},{"t":100,"s":[{"i":[[-0.007,0.016],[2.258,6.104],[0.011,-0.017]],"o":[[0.007,-0.016],[-1.817,-4.912],[-0.011,0.017]],"v":[[152.076,-147.108],[182.98,-176.649],[152.074,-147.11]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-3.334,6.648],[-1.799,5.518],[9.673,-9.931]],"o":[[3.334,-6.648],[1.878,-5.758],[-9.673,9.931]],"v":[[12.897,-19.193],[48.972,-44.204],[11.177,-20.424]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-9.018,17.983],[-1.799,5.518],[26.167,-26.865]],"o":[[9.018,-17.983],[1.878,-5.758],[-26.167,26.865]],"v":[[30.094,-23.186],[81.927,-62.022],[25.439,-26.516]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.288,0.574],[-1.799,5.518],[0.836,-0.858]],"o":[[0.288,-0.574],[1.878,-5.758],[-0.836,0.858]],"v":[[3.883,-12.491],[120.292,-83.862],[3.734,-12.597]],"c":true}]},{"t":100,"s":[{"i":[[-0.005,0.011],[-1.799,5.518],[0.016,-0.016]],"o":[[0.005,-0.011],[1.878,-5.758],[-0.016,0.016]],"v":[[188.579,-121.106],[215.427,-138.022],[188.576,-121.108]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.869,8.704],[-3.432,7.058],[12.009,-7.852]],"o":[[9.869,-8.704],[2.981,-6.13],[-12.009,7.852]],"v":[[12.832,-16.628],[74.374,-42.527],[12.897,-19.193]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-26.696,23.547],[-3.432,7.058],[32.485,-21.24]],"o":[[26.696,-23.547],[2.981,-6.13],[-32.485,21.24]],"v":[[29.916,-16.247],[117.42,-56.876],[30.094,-23.186]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.852,0.752],[-3.432,7.058],[1.037,-0.678]],"o":[[0.852,-0.752],[2.981,-6.13],[-1.037,0.678]],"v":[[3.897,-11.786],[151.618,-69.521],[3.902,-12.008]],"c":true}]},{"t":100,"s":[{"i":[[-0.016,0.014],[-3.432,7.058],[0.02,-0.013]],"o":[[0.016,-0.014],[2.981,-6.13],[-0.02,0.013]],"v":[[190.079,-83.601],[236.42,-100.876],[190.079,-83.606]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.199,3.553],[-2.249,4.962],[22.38,-4.873]],"o":[[22.287,-5.577],[4.049,-8.935],[-22.38,4.873]],"v":[[10.861,-15.141],[88.919,-15.854],[12.516,-16.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-38.412,9.611],[-2.249,4.962],[60.542,-13.183]],"o":[[60.291,-15.085],[4.049,-8.935],[-60.542,13.183]],"v":[[25.439,-11.372],[154.986,-15.381],[29.916,-16.247]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.227,0.307],[-2.249,4.962],[1.933,-0.421]],"o":[[1.925,-0.482],[4.049,-8.935],[-1.933,0.421]],"v":[[3.934,-10.704],[182.862,-13.944],[4.077,-10.859]],"c":true}]},{"t":100,"s":[{"i":[[-0.023,0.006],[-2.249,4.962],[0.036,-0.008]],"o":[[0.036,-0.009],[4.049,-8.935],[-0.036,0.008]],"v":[[204.076,-11.599],[251.986,-10.381],[204.079,-11.601]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.711,2.16],[-0.839,0.958],[12.251,-0.88]],"o":[[4.711,-2.16],[1.348,-1.539],[-12.251,0.88]],"v":[[9.079,-12.869],[39.383,-12.388],[10.861,-14.826]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.744,5.843],[-0.839,0.958],[33.14,-2.38]],"o":[[12.744,-5.843],[1.348,-1.539],[-33.14,2.38]],"v":[[20.619,-6.076],[78.015,-8.131],[25.439,-11.372]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.407,0.187],[-0.839,0.958],[1.058,-0.076]],"o":[[0.407,-0.187],[1.348,-1.539],[-1.058,0.076]],"v":[[4.224,-10.251],[128.305,-2.239],[4.378,-10.421]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,0.004],[-0.839,0.958],[0.02,-0.001]],"o":[[0.008,-0.004],[1.348,-1.539],[-0.02,0.001]],"v":[[238.573,10.405],[253.015,12.369],[238.576,10.401]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-19.702,-2.401],[-2.482,3.154],[14.29,0.398]],"o":[[19.702,2.401],[2.595,-3.297],[-14.29,-0.398]],"v":[[9.698,-12.307],[64.597,6.088],[9.395,-13.184]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-53.298,-6.494],[-2.482,3.154],[38.657,1.077]],"o":[[53.298,6.494],[2.595,-3.297],[-38.657,-1.077]],"v":[[21.439,-3.705],[93.137,16.968],[20.619,-6.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.702,-0.207],[-2.482,3.154],[1.234,0.034]],"o":[[1.702,0.207],[2.595,-3.297],[-1.234,-0.034]],"v":[[3.71,-9.493],[135.812,35.216],[3.683,-9.569]],"c":true}]},{"t":100,"s":[{"i":[[-0.032,-0.004],[-2.482,3.154],[0.023,0.001]],"o":[[0.032,0.004],[2.595,-3.297],[-0.023,-0.001]],"v":[[196.573,63.406],[241.637,80.468],[196.573,63.405]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.253,-3.386],[-5.064,4.293],[16.792,8.51]],"o":[[9.253,3.386],[4.126,-3.498],[-16.792,-8.51]],"v":[[11.313,-9.614],[54.159,17.809],[9.698,-11.992]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-25.032,-9.16],[-5.064,4.293],[45.426,23.022]],"o":[[25.032,9.16],[4.126,-3.498],[-45.426,-23.022]],"v":[[25.808,2.729],[103.197,50.764],[21.439,-3.705]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.799,-0.292],[-5.064,4.293],[1.451,0.735]],"o":[[0.799,0.292],[4.126,-3.498],[-1.451,-0.735]],"v":[[3.881,-8.702],[137.251,71.886],[3.742,-8.908]],"c":true}]},{"t":100,"s":[{"i":[[-0.015,-0.006],[-5.064,4.293],[0.027,0.014]],"o":[[0.015,0.006],[4.126,-3.498],[-0.027,-0.014]],"v":[[199.076,108.91],[221.697,124.264],[199.073,108.906]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":11,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.526,-3.215],[-3.502,3.162],[9.671,6.481]],"o":[[6.526,3.215],[3.502,-3.162],[-9.671,-6.481]],"v":[[10.491,-8.994],[73.057,40.569],[11.313,-9.929]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-17.653,-8.697],[-3.502,3.162],[26.163,17.532]],"o":[[17.653,8.697],[3.502,-3.162],[-26.163,-17.532]],"v":[[23.585,5.258],[96.236,63.117],[25.808,2.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.564,-0.278],[-3.502,3.162],[0.835,0.56]],"o":[[0.564,0.278],[3.502,-3.162],[-0.835,-0.56]],"v":[[3.102,-8.57],[126.267,90.274],[3.173,-8.651]],"c":true}]},{"t":100,"s":[{"i":[[-0.011,-0.005],[-3.502,3.162],[0.016,0.011]],"o":[[0.011,0.005],[3.502,-3.162],[-0.016,-0.011]],"v":[[144.075,112.911],[200.736,157.617],[144.076,112.91]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":12,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-13.475,-10.482],[-4.458,3.463],[10.073,7.849]],"o":[[13.475,10.482],[4.458,-3.463],[-10.073,-7.849]],"v":[[9.502,-7.951],[52.87,45.892],[10.491,-8.678]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-36.453,-28.355],[-4.458,3.463],[27.249,21.233]],"o":[[36.453,28.355],[4.458,-3.463],[-27.249,-21.233]],"v":[[20.909,7.226],[94.655,93.669],[23.585,5.258]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.164,-0.905],[-4.458,3.463],[0.87,0.678]],"o":[[1.164,0.905],[4.458,-3.463],[-0.87,-0.678]],"v":[[3.049,-7.986],[116.926,120.825],[3.134,-8.049]],"c":true}]},{"t":100,"s":[{"i":[[-0.022,-0.017],[-4.458,3.463],[0.016,0.013]],"o":[[0.022,0.017],[4.458,-3.463],[-0.016,-0.013]],"v":[[146.573,153.413],[172.155,188.169],[146.575,153.411]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":13,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.775,-3.087],[-3.488,2.449],[10.229,14.193]],"o":[[4.775,3.087],[3.488,-2.449],[-10.229,-14.193]],"v":[[7.167,-8.135],[48.091,56.332],[9.187,-7.951]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.917,-8.352],[-3.488,2.449],[27.671,38.395]],"o":[[12.917,8.352],[3.488,-2.449],[-27.671,-38.395]],"v":[[15.445,6.729],[62.124,74.78],[20.909,7.226]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.412,-0.267],[-3.488,2.449],[0.884,1.226]],"o":[[0.412,0.267],[3.488,-2.449],[-0.884,-1.226]],"v":[[2.321,-8.079],[84.827,113.576],[2.495,-8.063]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,-0.005],[-3.488,2.449],[0.017,0.023]],"o":[[0.008,0.005],[3.488,-2.449],[-0.017,-0.023]],"v":[[103.57,147.412],[141.124,209.78],[103.573,147.413]],"c":true}]}]},"nm":"Path 14","hd":false},{"ind":14,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-5.362,-6.334],[-2.659,0.857],[3.694,6.735]],"o":[[5.361,6.334],[6.495,-2.093],[-3.694,-6.735]],"v":[[5.102,-9.295],[26.477,35.494],[7.167,-8.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.504,-17.136],[-2.659,0.857],[9.994,18.219]],"o":[[14.504,17.136],[6.495,-2.093],[-9.994,-18.219]],"v":[[9.859,4.445],[41.772,64.349],[15.445,6.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.463,-0.547],[-2.659,0.857],[0.319,0.582]],"o":[[0.463,0.547],[6.495,-2.093],[-0.319,-0.582]],"v":[[2.027,-7.553],[61.313,111.91],[2.205,-7.48]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,-0.01],[-2.659,0.857],[0.006,0.011]],"o":[[0.009,0.01],[6.495,-2.093],[-0.006,-0.011]],"v":[[94.566,193.911],[109.772,229.849],[94.57,193.912]],"c":true}]}]},"nm":"Path 15","hd":false},{"ind":15,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.43,-4.038],[-5.792,0.94],[0.557,8.126]],"o":[[0.43,4.038],[3.71,-0.602],[-0.557,-8.126]],"v":[[3.69,-10.876],[17.077,55.965],[5.102,-9.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-1.164,-10.924],[-5.792,0.94],[1.507,21.981]],"o":[[1.164,10.924],[3.71,-0.602],[-1.507,-21.981]],"v":[[6.039,0.167],[22.28,71.891],[9.859,4.445]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.037,-0.349],[-5.792,0.94],[0.048,0.702]],"o":[[0.037,0.349],[3.71,-0.602],[-0.048,-0.702]],"v":[[1.242,-7.799],[31.62,122.9],[1.364,-7.663]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,-0.007],[-5.792,0.94],[0.001,0.013]],"o":[[0.001,0.007],[3.71,-0.602],[-0.001,-0.013]],"v":[[43.064,185.408],[54.78,249.391],[43.066,185.411]],"c":true}]}]},"nm":"Path 16","hd":false},{"ind":16,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.268,-1.072],[-8.766,2.77],[-1.453,20.282]],"o":[[-0.268,1.072],[8.956,-2.83],[1.453,-20.282]],"v":[[2.258,-8.649],[11.352,48.031],[4.005,-10.876]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.726,-2.901],[-8.766,2.77],[-3.93,54.866]],"o":[[-0.726,2.901],[8.956,-2.83],[3.93,-54.866]],"v":[[1.312,6.192],[20.655,115.675],[6.039,0.167]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.023,-0.093],[-8.766,2.77],[-0.125,1.752]],"o":[[-0.023,0.093],[8.956,-2.83],[0.125,-1.752]],"v":[[0.956,-7.06],[24.966,155.333],[1.106,-7.252]],"c":true}]},{"t":100,"s":[{"i":[[0,-0.002],[-8.766,2.77],[-0.002,0.033]],"o":[[0,0.002],[8.956,-2.83],[0.002,-0.033]],"v":[[32.561,227.912],[35.655,253.675],[32.564,227.908]],"c":true}]}]},"nm":"Path 17","hd":false},{"ind":17,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.674,-5.118],[-9.34,-10.304],[-5.656,20.469]],"o":[[-0.674,5.118],[5.335,5.886],[5.656,-20.469]],"v":[[0.319,-7.862],[-7.754,79.004],[2.258,-8.649]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.822,-13.845],[-9.34,-10.304],[-15.299,55.372]],"o":[[-1.822,13.845],[5.335,5.886],[15.299,-55.372]],"v":[[-3.933,8.322],[-10.119,142.549],[1.312,6.192]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.058,-0.442],[-9.34,-10.304],[-0.489,1.768]],"o":[[-0.058,0.442],[5.335,5.886],[0.489,-1.768]],"v":[[0.157,-7.436],[-14.573,174.16],[0.325,-7.504]],"c":true}]},{"t":100,"s":[{"i":[[0.001,-0.008],[-9.34,-10.304],[-0.009,0.033]],"o":[[-0.001,0.008],[5.335,5.886],[0.009,-0.033]],"v":[[-16.442,193.413],[-25.619,252.549],[-16.439,193.412]],"c":true}]}]},"nm":"Path 18","hd":false},{"ind":18,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.134,-4.491],[-8.529,-8.273],[-6.696,18.034]],"o":[[-1.134,4.491],[3.166,3.071],[6.696,-18.034]],"v":[[-1.761,-9.64],[-13.598,51.106],[0.003,-7.546]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.068,-12.148],[-8.529,-8.273],[-18.113,48.786]],"o":[[-3.068,12.148],[3.166,3.071],[18.113,-48.786]],"v":[[-8.707,2.658],[-24.162,110.866],[-3.933,8.322]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.098,-0.388],[-8.529,-8.273],[-0.578,1.558]],"o":[[-0.098,0.388],[3.166,3.071],[0.578,-1.558]],"v":[[-0.446,-7.378],[-34.795,149.374],[-0.293,-7.198]],"c":true}]},{"t":100,"s":[{"i":[[0.002,-0.007],[-8.529,-8.273],[-0.011,0.029]],"o":[[-0.002,0.007],[3.166,3.071],[0.011,-0.029]],"v":[[-51.445,211.91],[-61.162,244.866],[-51.442,211.913]],"c":true}]}]},"nm":"Path 19","hd":false},{"ind":19,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.217,-13.161],[-2.977,-4.918],[-5.725,7.174]],"o":[[-9.217,13.161],[1.721,2.843],[5.725,-7.174]],"v":[[-1.154,-12.499],[-42.53,56.34],[-1.761,-9.64]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[24.934,-35.602],[-2.977,-4.918],[-15.488,19.406]],"o":[[-24.934,35.602],[1.721,2.843],[15.488,-19.406]],"v":[[-7.064,-5.076],[-47.418,71.95],[-8.707,2.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.796,-1.137],[-2.977,-4.918],[-0.495,0.62]],"o":[[-0.796,1.137],[1.721,2.843],[0.495,-0.62]],"v":[[-0.876,-8.404],[-71.414,113.188],[-0.929,-8.157]],"c":true}]},{"t":100,"s":[{"i":[[0.015,-0.021],[-2.977,-4.918],[-0.009,0.012]],"o":[[-0.015,0.021],[1.721,2.843],[0.009,-0.012]],"v":[[-88.944,151.405],[-130.918,215.45],[-88.945,151.41]],"c":true}]}]},"nm":"Path 20","hd":false},{"ind":20,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.626,-7.899],[-8.084,-5.313],[-13.235,7.936]],"o":[[-2.855,2.957],[3.306,2.173],[10.979,-6.583]],"v":[[-4.169,-12.723],[-45.434,37.243],[-0.839,-12.499]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.63,-21.369],[-8.084,-5.313],[-35.802,21.467]],"o":[[-7.724,8],[3.306,2.173],[29.699,-17.808]],"v":[[-16.072,-5.684],[-88.796,85.335],[-7.064,-5.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.659,-0.682],[-8.084,-5.313],[-1.143,0.686]],"o":[[-0.247,0.255],[3.306,2.173],[0.948,-0.569]],"v":[[-1.962,-8.308],[-113.223,114.36],[-1.674,-8.288]],"c":true}]},{"t":100,"s":[{"i":[[0.012,-0.013],[-8.084,-5.313],[-0.022,0.013]],"o":[[-0.005,0.005],[3.306,2.173],[0.018,-0.011]],"v":[[-150.949,160.405],[-173.796,186.335],[-150.944,160.405]],"c":true}]}]},"nm":"Path 21","hd":false},{"ind":21,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.117,-10.21],[-5.628,-14.818],[-24.822,15.796]],"o":[[-14.086,10.188],[3.081,4.733],[21.924,-13.951]],"v":[[-3.765,-15.075],[-82.448,63.651],[-4.484,-12.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[38.189,-27.621],[0.797,-25.979],[-67.149,42.73]],"o":[[-38.106,27.561],[-0.163,5.311],[59.307,-37.74]],"v":[[-14.127,-12.046],[-117.611,102.283],[-16.072,-5.684]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[1.219,-0.882],[-2.13,-20.894],[-2.144,1.364]],"o":[[-1.217,0.88],[1.315,5.048],[1.894,-1.205]],"v":[[-1.552,-9.148],[-137.871,121.393],[-1.614,-8.945]],"c":true}]},{"t":100,"s":[{"i":[[0.023,-0.017],[-9.389,-8.283],[-0.04,0.026]],"o":[[-0.023,0.017],[4.981,4.394],[0.036,-0.023]],"v":[[-123.948,110.901],[-188.111,168.783],[-123.949,110.905]],"c":true}]}]},"nm":"Path 22","hd":false},{"ind":22,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.794,-1.349],[0.656,-8.742],[-9.144,3.299]],"o":[[-0.388,0.187],[-0.279,3.717],[9.144,-3.298]],"v":[[-4.357,-15.318],[-39.206,7.131],[-3.283,-15.062]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[7.56,-3.648],[1.507,-8.661],[-24.737,8.919]],"o":[[-1.051,0.507],[-0.641,3.682],[24.737,-8.919]],"v":[[-17.032,-12.737],[-65.957,17.111],[-14.127,-12.046]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.241,-0.117],[1.12,-8.698],[-0.79,0.285]],"o":[[-0.034,0.016],[-0.476,3.698],[0.79,-0.285]],"v":[[-2.581,-9.26],[-111.172,47.264],[-2.489,-9.238]],"c":true}]},{"t":100,"s":[{"i":[[0.004,-0.003],[0.158,-8.79],[-0.014,0.008]],"o":[[-0.001,0],[-0.067,3.737],[0.014,-0.008]],"v":[[-196.685,103.922],[-223.294,122.037],[-196.683,103.922]],"c":true}]}]},"nm":"Path 23","hd":false},{"ind":23,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.652,-0.002],[9.621,-23.195],[-30.797,11.034]],"o":[[-0.652,0.002],[1.201,4.343],[30.797,-11.034]],"v":[[-5.938,-16.534],[-91.485,36.162],[-4.524,-15.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.764,-0.005],[34.94,-49.93],[-83.311,29.848]],"o":[[-1.764,0.005],[-2.448,3.499],[83.311,-29.848]],"v":[[-20.857,-15.139],[-161.337,74.163],[-17.032,-12.737]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.056,0],[23.404,-37.749],[-2.66,0.953]],"o":[[-0.056,0],[-0.786,3.883],[2.66,-0.953]],"v":[[-2.437,-9.678],[-180.879,84.077],[-2.314,-9.602]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0],[-5.203,-7.542],[-0.05,0.018]],"o":[[-0.001,0],[3.337,4.837],[0.05,-0.018]],"v":[[-175.952,77.399],[-229.337,108.663],[-175.95,77.401]],"c":true}]}]},"nm":"Path 24","hd":false},{"ind":24,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.079,-0.51],[0.18,-8.491],[-14.645,0.239]],"o":[[-3.079,0.51],[-0.099,4.7],[14.645,-0.239]],"v":[[-8.996,-17.288],[-60.714,-4.682],[-6.253,-16.534]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.33,-1.38],[0.18,-8.491],[-39.617,0.647]],"o":[[-8.33,1.38],[-0.099,4.7],[39.617,-0.647]],"v":[[-28.279,-17.178],[-119.213,6.829],[-20.857,-15.139]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.266,-0.044],[0.18,-8.491],[-1.265,0.021]],"o":[[-0.266,0.044],[-0.099,4.7],[1.265,-0.021]],"v":[[-3.288,-10.423],[-157.506,13.654],[-3.051,-10.357]],"c":true}]},{"t":100,"s":[{"i":[[0.005,-0.001],[0.18,-8.491],[-0.024,0]],"o":[[-0.005,0.001],[-0.099,4.7],[0.024,0]],"v":[[-223.707,24.648],[-252.463,30.579],[-223.702,24.649]],"c":true}]}]},"nm":"Path 25","hd":false},{"ind":25,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.002,-0.018],[4.376,-11.742],[-21.034,-0.505]],"o":[[-5.002,0.018],[-1,2.682],[21.034,0.505]],"v":[[-8.482,-18.09],[-80.041,-5.651],[-8.996,-16.972]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.533,-0.05],[4.376,-11.742],[-56.9,-1.366]],"o":[[-13.533,0.05],[-1,2.682],[56.9,1.366]],"v":[[-26.888,-20.202],[-133.179,-1.393],[-28.279,-17.178]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.432,-0.002],[4.376,-11.742],[-1.817,-0.044]],"o":[[-0.432,0.002],[-1,2.682],[1.817,0.044]],"v":[[-2.957,-10.802],[-167.52,2.271],[-3.002,-10.706]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0],[4.376,-11.742],[-0.034,-0.001]],"o":[[-0.008,0],[-1,2.682],[0.034,0.001]],"v":[[-201.456,2.646],[-252.679,11.357],[-201.457,2.648]],"c":true}]}]},"nm":"Path 26","hd":false},{"ind":26,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.015,0.648],[9.285,-5.938],[-12.687,-1.577]],"o":[[-1.837,-0.296],[-5.457,3.49],[12.687,1.577]],"v":[[-7.193,-19.109],[-55.539,-18.566],[-8.167,-18.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[10.862,1.752],[9.285,-5.938],[-34.32,-4.266]],"o":[[-4.969,-0.802],[-5.457,3.49],[34.32,4.266]],"v":[[-24.253,-22.959],[-119.714,-21.877],[-26.888,-20.202]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.347,0.056],[9.285,-5.938],[-1.096,-0.136]],"o":[[-0.159,-0.026],[-5.457,3.49],[1.096,0.136]],"v":[[-3.256,-11.254],[-157.719,-22.883],[-3.34,-11.166]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.001],[9.285,-5.938],[-0.021,-0.003]],"o":[[-0.003,0],[-5.457,3.49],[0.021,0.003]],"v":[[-231.204,-25.606],[-251.964,-25.377],[-231.206,-25.604]],"c":true}]}]},"nm":"Path 27","hd":false},{"ind":27,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.393,1.499],[5.601,-5.319],[-6.035,-3.074]],"o":[[-4.393,-1.499],[-2.043,1.94],[7.22,3.678]],"v":[[-5.608,-19.397],[-48.68,-27.903],[-7.508,-19.109]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[11.885,4.055],[5.601,-5.319],[-16.326,-8.316]],"o":[[-11.885,-4.055],[-2.043,1.94],[19.531,9.948]],"v":[[-19.113,-23.736],[-77.851,-34.052],[-24.253,-22.959]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.38,0.13],[5.601,-5.319],[-0.521,-0.266]],"o":[[-0.38,-0.129],[-2.043,1.94],[0.624,0.318]],"v":[[-2.828,-11.723],[-125.77,-43.679],[-2.992,-11.698]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.002],[5.601,-5.319],[-0.01,-0.005]],"o":[[-0.007,-0.002],[-2.043,1.94],[0.012,0.006]],"v":[[-210.701,-60.106],[-244.601,-67.552],[-210.704,-60.106]],"c":true}]}]},"nm":"Path 28","hd":false},{"ind":28,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.221,2.81],[2.362,-11.3],[-20.382,-17.294]],"o":[[-5.221,-2.81],[-1.358,6.576],[20.382,17.294]],"v":[[-7.193,-23.937],[-71.1,-48.972],[-5.293,-19.397]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[14.123,7.602],[4.156,-15.533],[-55.138,-46.784]],"o":[[-14.123,-7.602],[-2.317,8.659],[55.138,46.784]],"v":[[-24.253,-36.018],[-168.703,-94.857],[-19.113,-23.736]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.451,0.243],[3.339,-13.604],[-1.761,-1.494]],"o":[[-0.451,-0.243],[-1.88,7.71],[1.761,1.494]],"v":[[-2.925,-12.804],[-184.078,-101.754],[-2.761,-12.412]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0.005],[1.312,-8.822],[-0.033,-0.028]],"o":[[-0.008,-0.005],[-0.797,5.357],[0.033,0.028]],"v":[[-205.454,-113.613],[-222.203,-118.857],[-205.451,-113.606]],"c":true}]}]},"nm":"Path 29","hd":false},{"ind":29,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.26,4.445],[7.011,-4.124],[-10.385,-10.766]],"o":[[-0.326,-0.199],[-7.011,4.124],[16.897,17.517]],"v":[[-5.801,-24.959],[-56.419,-56.973],[-7.193,-23.937]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[19.64,12.023],[7.011,-4.124],[-28.094,-29.123]],"o":[[-0.881,-0.54],[-7.011,4.124],[45.711,47.385]],"v":[[-20.488,-38.784],[-98.519,-86.459],[-24.253,-36.018]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.627,0.384],[7.011,-4.124],[-0.897,-0.93]],"o":[[-0.028,-0.017],[-7.011,4.124],[1.46,1.513]],"v":[[-2.277,-13.13],[-127.401,-106.145],[-2.397,-13.042]],"c":true}]},{"t":100,"s":[{"i":[[0.012,0.007],[7.011,-4.124],[-0.017,-0.018]],"o":[[-0.001,0],[-7.011,4.124],[0.028,0.029]],"v":[[-164.452,-132.115],[-199.019,-154.959],[-164.454,-132.113]],"c":true}]}]},"nm":"Path 30","hd":false},{"ind":30,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[23.866,20.95],[-0.775,-4.182],[-8.843,-10.116]],"o":[[-23.866,-20.95],[0.799,4.308],[8.843,10.116]],"v":[[-4.127,-25.389],[-47.359,-57.266],[-6.116,-25.275]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[64.562,56.675],[-0.775,-4.182],[-23.921,-27.366]],"o":[[-64.562,-56.675],[0.799,4.308],[23.921,27.366]],"v":[[-15.108,-39.093],[-105.227,-105.674],[-20.488,-38.784]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[2.062,1.81],[-0.775,-4.182],[-0.764,-0.874]],"o":[[-2.062,-1.81],[0.799,4.308],[0.764,0.874]],"v":[[-2.169,-13.514],[-128.217,-124.928],[-2.341,-13.504]],"c":true}]},{"t":100,"s":[{"i":[[0.039,0.034],[-0.775,-4.182],[-0.014,-0.016]],"o":[[-0.039,-0.034],[0.799,4.308],[0.014,0.016]],"v":[[-169.449,-161.115],[-185.227,-172.674],[-169.452,-161.115]],"c":true}]}]},"nm":"Path 31","hd":false},{"ind":31,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.861,0.835],[6.082,-5.676],[-10.296,-14.684]],"o":[[-0.861,-0.835],[-2.893,2.699],[10.296,14.684]],"v":[[-0.366,-23.104],[-55.133,-75.787],[-4.127,-25.389]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.329,2.258],[6.082,-5.676],[-27.852,-39.724]],"o":[[-2.329,-2.258],[-2.893,2.699],[27.852,39.724]],"v":[[-4.933,-32.911],[-79.889,-105.589],[-15.108,-39.093]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.074,0.072],[6.082,-5.676],[-0.889,-1.268]],"o":[[-0.074,-0.072],[-2.893,2.699],[0.889,1.268]],"v":[[-1.214,-13.207],[-103.885,-130.878],[-1.539,-13.404]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.001],[6.082,-5.676],[-0.017,-0.024]],"o":[[-0.001,-0.001],[-2.893,2.699],[0.017,0.024]],"v":[[-120.443,-152.612],[-163.389,-193.589],[-120.449,-152.615]],"c":true}]}]},"nm":"Path 32","hd":false},{"ind":32,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.542,19.181],[3.073,-0.981],[-0.152,-9.722]],"o":[[-3.542,-19.181],[-2.453,0.783],[0.152,9.722]],"v":[[0.539,-22.899],[-14.028,-61.928],[-0.366,-22.788]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.581,51.887],[3.073,-0.981],[-0.412,-26.3]],"o":[[-9.581,-51.887],[-2.453,0.783],[0.412,26.3]],"v":[[-2.483,-33.211],[-31.215,-116.327],[-4.933,-32.911]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.306,1.657],[3.073,-0.981],[-0.013,-0.84]],"o":[[-0.306,-1.657],[-2.453,0.783],[0.013,0.84]],"v":[[-0.517,-14.182],[-44.865,-152.105],[-0.596,-14.172]],"c":true}]},{"t":100,"s":[{"i":[[0.006,0.031],[3.073,-0.981],[0,-0.016]],"o":[[-0.006,-0.031],[-2.453,0.783],[0,0.016]],"v":[[-72.441,-227.612],[-78.715,-240.827],[-72.443,-227.612]],"c":true}]}]},"nm":"Path 33","hd":false},{"ind":33,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.512,3.311],[7.408,-2.515],[0.879,-9.578]],"o":[[-0.512,-3.311],[-4.274,1.451],[-0.879,9.578]],"v":[[1.755,-24.526],[-15.758,-89.049],[0.539,-22.899]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.386,8.956],[7.408,-2.515],[2.377,-25.91]],"o":[[-1.386,-8.956],[-4.274,1.451],[-2.377,25.91]],"v":[[0.805,-37.612],[-23.169,-137.772],[-2.483,-33.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.044,0.286],[7.408,-2.515],[0.076,-0.827]],"o":[[-0.044,-0.286],[-4.274,1.451],[-0.076,0.827]],"v":[[0.051,-14.02],[-30.928,-169.383],[-0.054,-13.879]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.005],[7.408,-2.515],[0.001,-0.016]],"o":[[-0.001,-0.005],[-4.274,1.451],[-0.001,0.016]],"v":[[-36.439,-204.114],[-50.169,-247.772],[-36.441,-204.112]],"c":true}]}]},"nm":"Path 34","hd":false},{"ind":34,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.275,0.477],[4.481,1.632],[2.961,-6.55],[-1.425,0.478]],"o":[[-2.55,-0.954],[-6.936,-2.526],[-1.48,3.275],[1.425,-0.478]],"v":[[5.014,-23.954],[2.623,-65.932],[2.07,-24.842],[3.754,-13.991]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.449,1.291],[4.481,1.632],[8.009,-17.719],[-3.855,1.292]],"o":[[-6.899,-2.581],[-6.936,-2.526],[-4.004,8.859],[3.855,-1.292]],"v":[[8.769,-35.211],[4.357,-117.808],[0.805,-37.612],[5.361,-8.261]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.11,0.041],[4.481,1.632],[0.256,-0.566],[-0.123,0.041]],"o":[[-0.22,-0.082],[-6.936,-2.526],[-0.128,0.283],[0.123,-0.041]],"v":[[0.788,-14.342],[3.064,-156.748],[0.534,-14.419],[0.679,-13.482]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.001],[4.481,1.632],[0.005,-0.011],[-0.002,0.001]],"o":[[-0.004,-0.002],[-6.936,-2.526],[-0.002,0.005],[0.002,-0.001]],"v":[[1.066,-235.113],[-0.143,-253.308],[1.061,-235.114],[1.064,-235.097]],"c":true}]}]},"nm":"Path 35","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,1,0.986,0.894,0.379,1,0.973,0.788,0.522,0.961,0.876,0.394,0.708,0.922,0.78,0,0.865,0.961,0.888,0.206,0.999,1,0.996,0.412,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[-12,-18]},"e":{"a":0,"k":[-123.596,-129.596]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-6.793,2.506]},"a":{"a":0,"k":[-6.793,2.506]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"white splashes precomp","refId":"comp_2","sr":1,"ks":{"p":{"a":0,"k":[243,243,0]},"a":{"a":0,"k":[243,243,0]}},"ao":0,"w":486,"h":486,"ip":-4,"op":99,"st":-5,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"ogonek5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":30,"s":[100]},{"t":45,"s":[0]}]},"p":{"a":0,"k":[241,232.25,0]},"a":{"a":0,"k":[-51,43,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,15.828]},"t":30,"s":[0,0,100]},{"t":45,"s":[151,151,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[164,164]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,1,0.986,0.894,0.379,1,0.973,0.788,0.522,0.961,0.876,0.394,0.708,0.922,0.78,0,0.865,0.961,0.888,0.206,0.999,1,0.996,0.412,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[1,0.5]},"e":{"a":0,"k":[-61.596,-53.096]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 7","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":30,"op":45,"st":-45,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"rose splashes 80%","sr":1,"ks":{"o":{"a":0,"k":80},"p":{"a":0,"k":[283.287,244.6,0]},"a":{"a":0,"k":[40.287,1.6,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.458,2.584],[-1.178,1.927]],"o":[[0,0],[1.178,-1.927]],"v":[[47.396,-2.495],[66.132,8.305]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[17.915,5.472],[-2.495,4.082]],"o":[[0,0],[2.494,-4.082]],"v":[[127.416,14.655],[167.1,37.528]],"c":true}]},{"t":100,"s":[{"i":[[2.922,0.892],[-0.407,0.666]],"o":[[0,0],[0.407,-0.666]],"v":[[231.544,79.714],[238.016,83.445]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-7.371,11.75],[-2.605,-2.954]],"o":[[0,0],[2.605,2.954]],"v":[[-19.417,21.61],[-33.613,50.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.511,26.322],[-5.835,-6.617]],"o":[[0,0],[5.835,6.617]],"v":[[-54.289,78.774],[-86.09,143.637]],"c":true}]},{"t":100,"s":[{"i":[[-2.019,3.219],[-0.714,-0.809]],"o":[[0,0],[0.714,0.809]],"v":[[-120,208.391],[-123.889,216.322]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.272,18.752],[3.489,0]],"o":[[0,0],[-2.919,0]],"v":[[13.337,36.564],[18.266,63.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.5,41.701],[7.758,0]],"o":[[0,0],[-6.491,0]],"v":[[34.44,120.578],[45.401,181.583]],"c":true}]},{"t":100,"s":[{"i":[[1.211,5.316],[0.989,0]],"o":[[0,0],[-0.827,0]],"v":[[49.981,239.625],[51.378,247.402]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.357,10.649],[2.065,-1.671]],"o":[[0,0],[-2.092,1.693]],"v":[[27.785,38.344],[37.752,60.836]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.682,25.21],[4.889,-3.955]],"o":[[0,0],[-4.953,4.007]],"v":[[73.965,124.33],[97.561,177.576]],"c":true}]},{"t":100,"s":[{"i":[[1.068,2.124],[0.412,-0.333]],"o":[[0,0],[-0.417,0.338]],"v":[[112.746,219.25],[114.734,223.735]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.125,6.764],[2.818,-3.288]],"o":[[0,0],[-1.952,2.278]],"v":[[39.186,19.394],[56.431,42.171]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[16.508,15.671],[6.529,-7.617]],"o":[[0,0],[-4.523,5.277]],"v":[[103.804,73.868],[143.76,126.64]],"c":true}]},{"t":100,"s":[{"i":[[1.631,1.548],[0.645,-0.753]],"o":[[0,0],[-0.447,0.521]],"v":[[178.352,168.75],[182.3,173.964]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.003,-18.483],[-2.995,-2.598]],"o":[[0,0],[2.346,2.035]],"v":[[19.896,-54.149],[37.88,-77.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[31.33,-41.355],[-6.701,-5.813]],"o":[[0,0],[5.249,4.553]],"v":[[52.828,-125.71],[93.066,-177.974]],"c":true}]},{"t":100,"s":[{"i":[[3.858,-5.092],[-0.825,-0.716]],"o":[[0,0],[0.646,0.561]],"v":[[119.615,-214],[124.57,-220.435]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.092,-13.223],[3.225,-0.461]],"o":[[0,0],[-3.225,0.461]],"v":[[-11.7,-53.501],[-23.447,-74.576]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-13.694,-29.721],[7.248,-1.036]],"o":[[0,0],[-7.248,1.036]],"v":[[-33.744,-123.528],[-60.149,-170.902]],"c":true}]},{"t":100,"s":[{"i":[[-1.641,-3.562],[0.869,-0.124]],"o":[[0,0],[-0.869,0.124]],"v":[[-92.793,-229.25],[-95.958,-234.928]],"c":true}]}]},"nm":"Path 7","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.996078431373,0.403921568627,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 7","hd":false},{"ty":"tr","p":{"a":0,"k":[40.287,1.6]},"a":{"a":0,"k":[40.287,1.6]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"rose splashes 40%","sr":1,"ks":{"o":{"a":0,"k":40},"p":{"a":0,"k":[255.462,250.532,0]},"a":{"a":0,"k":[12.462,7.532,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.498,-1.717],[-2.802,-3.967]],"o":[[-1.32,0.907],[0,0]],"v":[[-27.909,-69.864],[-23.485,-62.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[5.583,-3.836],[-6.261,-8.864]],"o":[[-2.949,2.026],[0,0]],"v":[[-77.365,-168.395],[-67.479,-152.872]],"c":true}]},{"t":100,"s":[{"i":[[0.692,-0.476],[-0.776,-1.099]],"o":[[-0.366,0.251],[0,0]],"v":[[-104.452,-204.425],[-103.226,-202.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.758,-1.202],[3.089,-1.172]],"o":[[0,0],[-3.089,1.172]],"v":[[-40.584,-41.866],[-51.165,-45.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-10.775,-2.722],[6.996,-2.654]],"o":[[0,0],[-6.996,2.654]],"v":[[-111.836,-92.023],[-135.799,-100.881]],"c":true}]},{"t":100,"s":[{"i":[[-1.235,-0.312],[0.802,-0.304]],"o":[[0,0],[-0.802,0.304]],"v":[[-194.867,-116.25],[-197.612,-117.265]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.418,17.711],[-4.713,-1.091]],"o":[[0,0],[2.758,0.638]],"v":[[-22.297,35.041],[-30.452,64.628]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.835,40.938],[-10.895,-2.522]],"o":[[0,0],[6.375,1.475]],"v":[[-62.088,115.52],[-80.938,183.907]],"c":true}]},{"t":100,"s":[{"i":[[-1.49,4.112],[-1.094,-0.253]],"o":[[0,0],[0.64,0.148]],"v":[[-89,203.172],[-90.893,210.041]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.125,2.009],[-1.205,-2.41]],"o":[[-0.644,-1.15],[1.205,2.41]],"v":[[60.208,34.488],[58.28,36.577]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.266,4.046],[-2.428,-4.856]],"o":[[-1.297,-2.316],[2.428,4.856]],"v":[[161.46,114.372],[157.576,118.58]],"c":true}]},{"t":100,"s":[{"i":[[0.457,0.815],[-0.489,-0.978]],"o":[[-0.261,-0.467],[0.489,0.978]],"v":[[178.425,143.467],[177.643,144.315]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.378,1.888],[-0.054,-1.294]],"o":[[-0.244,-1.218],[0.054,1.294]],"v":[[57.201,-37.513],[53.318,-36.704]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.721,3.602],[-0.103,-2.47]],"o":[[-0.465,-2.323],[0.103,2.47]],"v":[[152.987,-80.688],[145.577,-79.144]],"c":true}]},{"t":100,"s":[{"i":[[0.177,0.884],[-0.025,-0.606]],"o":[[-0.114,-0.57],[0.025,0.606]],"v":[[207.62,-96.485],[205.801,-96.106]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.033,1.484],[-0.082,-1.894]],"o":[[0.031,-1.392],[0.082,1.894]],"v":[[53.595,-30.294],[48.408,-29.669]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-0.074,3.328],[-0.185,-4.247]],"o":[[0.069,-3.121],[0.185,4.247]],"v":[[143.792,-61.221],[132.159,-59.821]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,0.404],[-0.022,-0.516]],"o":[[0.008,-0.379],[0.022,0.516]],"v":[[216.285,-76.436],[214.873,-76.266]],"c":true}]}]},"nm":"Path 6","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.996078431373,0.403921568627,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 6","hd":false},{"ty":"tr","p":{"a":0,"k":[12.462,7.532]},"a":{"a":0,"k":[12.462,7.532]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"violet","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[33.333]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":70,"s":[0]}]},"p":{"a":0,"k":[250.172,221.61,0]},"a":{"a":0,"k":[7.172,-21.39,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.424,-5.071],[2.653,-10.693],[8.493,-0.25],[-0.281,-21.575],[8.206,2.479],[-9.071,-18.319],[10.163,-0.826],[-8.504,-13.367],[7.925,-6.142],[-9.44,-13.344],[2.854,-8.942],[-21.641,-24.17],[6.753,-1.287],[-6.374,-4.022],[10.533,-2.098],[-13.32,-3.511],[-1.839,-6.483],[-21.075,-3.827],[-5.954,-6.816],[-11.932,-2.571],[3.257,-17.575],[-38.942,9.134],[-0.325,-7.706],[-8.742,1.73],[-8.801,-7.785],[-30.134,14.717],[-9.382,-4.129],[-16.279,6.661],[1.088,-8.515],[-7.687,7.097],[-6.012,-8.868],[-10.651,19.166],[-10.35,0.696],[-9.579,21.376],[-8.09,4.605],[-5.131,22.602],[-3.808,-4.758],[-0.748,8.961],[-7.254,-2.788],[2.909,7.968],[-7.635,-1.047],[9.08,17.754],[-7.507,3.193],[9.997,10.579],[-6.351,4.692],[9.781,8.968],[0.178,6.817],[17.454,12.482],[0.03,6.973],[12.265,1.257],[-5.162,4.439],[17.018,1.365],[-5.218,7.12],[24.328,-1.527],[-3.121,9.666],[14.883,-6.778],[10.864,5.993],[11.338,-8.563],[5.168,9.097],[9.336,-10.339],[5.422,9.555],[17.401,-17.591],[8.409,7.467],[2.648,-7.068],[8.104,5.903],[5.776,-17.779],[7.39,-3.513],[1.572,-7.178],[9.221,3.529],[4.343,-6.683]],"o":[[-7.125,5.075],[-0.627,-20.281],[-8.492,0.25],[-7.605,-11.419],[-6.68,-3.509],[-2.4,-2.857],[-8.37,0.053],[-2.455,-2.437],[-7.318,5.151],[-25.313,-18.266],[-0.866,7.957],[-15.111,-8.219],[-6.731,1.147],[0,0],[-8.775,1.322],[-36.623,-3.316],[2.35,6.725],[-4.284,0.119],[5.62,5.119],[0,0],[-0.325,7.953],[-14.317,6.526],[0.333,6.979],[-5.382,3.713],[7.32,4.607],[-4.424,3.372],[7.613,2.532],[-10.42,10.905],[-1.668,7.104],[-2.075,4.92],[4.11,6.36],[-1.424,4.903],[7.699,-1.121],[0,0],[8.176,-4.621],[-1.052,23.086],[4.14,4.652],[5.615,9.885],[7.25,2.786],[5.203,5.546],[7.441,1.093],[15.761,17.732],[7.507,-3.193],[5.904,3.732],[6.351,-4.692],[9.84,5.408],[-0.622,-6.552],[19.337,4.71],[0.329,-7.351],[6.418,-1.574],[5.14,-4.409],[27.522,-2.876],[5.215,-7.117],[4.426,-6.277],[2.875,-9.309],[1.399,-5.562],[-7.079,-5.34],[4.34,-9.001],[-5.002,-8.493],[13.638,-18.255],[-5.312,-9.225],[0.333,-7.822],[-7.414,-6.268],[3.497,-13.498],[-8.104,-5.903],[-0.973,-5.144],[-8.335,3.293],[-2.994,-1.674],[-9.108,-3.513],[-0.006,-3.457]],"v":[[5.228,-95.512],[7.462,-28.929],[-2.195,-87.293],[6.416,-28.961],[-31.261,-81.602],[2.547,-32.204],[-43.849,-81.375],[0.273,-32.419],[-44.643,-71.2],[-1.483,-31.501],[-68.757,-71.437],[-0.116,-26.024],[-42.303,-41.201],[-2.32,-26.028],[-60.656,-35.365],[-6.28,-25.891],[-67.569,-24.781],[-6.096,-24.791],[-61.84,-18.285],[-3.524,-23.253],[-83.167,12.168],[-3.472,-21.52],[-43.616,2.576],[-3.348,-19.306],[-64.141,31.565],[0.002,-18.262],[-50.895,27.819],[3.739,-17.431],[-29.038,27.111],[2.554,-14.294],[-16.457,46.001],[4.192,-11.614],[-10.643,61.853],[6.528,-12.171],[7.719,52.216],[8.895,-14.393],[13.275,34.112],[10.222,-12.355],[26.825,31.666],[12.417,-11.04],[35.999,36.579],[14.675,-10.481],[49.25,44.887],[15.923,-11.135],[54.41,30.884],[17.017,-12.053],[59.976,24.143],[15.598,-15.029],[60.134,6.365],[15.406,-16.076],[56.972,-8.479],[17.766,-17.986],[90.136,-9.191],[19.955,-19.743],[79.759,-35.208],[20.474,-22.64],[63.92,-44.118],[18.736,-24.334],[63.006,-55.052],[17.431,-26.232],[77.149,-67.057],[16.295,-27.947],[47.537,-73.383],[14.878,-29.037],[41.274,-77.714],[13.733,-29.91],[25.971,-72.901],[12.306,-29.047],[19.524,-85.462],[9.122,-30.564]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.849,0.01],[7.184,-28.957],[3.052,-1.273],[-0.761,-58.423],[7.839,-5.353],[-24.563,-49.607],[9.192,-3.975],[-23.029,-36.198],[4.861,-7.946],[-25.563,-36.135],[12.25,-6.125],[-58.602,-65.452],[0.423,-3.502],[-17.26,-10.89],[11.497,-5.096],[-36.071,-9.509],[-2.201,-1.041],[-57.07,-10.364],[-1.998,-10.013],[-32.312,-6.962],[9.36,-30.715],[-105.454,24.735],[0.047,-4.178],[-23.672,4.686],[-7.461,-15.968],[-81.601,39.854],[-8.157,-7.347],[-44.083,18.039],[-3.026,-7.306],[-20.815,19.217],[-8.186,-10.792],[-28.842,51.901],[-12.022,-1.924],[-25.94,57.885],[-10.365,1.613],[-13.894,61.205],[-1.581,0.481],[-2.025,24.266],[-5.413,1.006],[7.876,21.576],[-4.573,1.132],[24.589,48.078],[-6.41,1.365],[27.072,28.648],[-4.858,2.346],[26.485,24.286],[-6.451,3.968],[47.266,33.8],[-2.771,2.906],[33.213,3.403],[-1.167,1.667],[46.083,3.696],[-1.333,9],[65.879,-4.134],[-5.083,7.361],[40.303,-18.354],[15.513,2.68],[30.702,-23.187],[1.943,7.096],[25.282,-27.999],[2.5,7.5],[47.12,-47.637],[6.155,7.421],[7.17,-19.139],[5.169,3.176],[15.641,-48.146],[3.103,0.727],[4.257,-19.437],[6.927,0.949],[11.76,-18.098]],"o":[[-5.323,-0.006],[-1.697,-54.919],[-3.052,1.273],[-20.594,-30.923],[-3.728,2.546],[-6.498,-7.737],[-4.346,1.879],[-6.647,-6.6],[-3.22,5.264],[-68.548,-49.463],[-6.872,3.436],[-40.921,-22.258],[-0.377,3.121],[0,0],[-6.756,2.995],[-99.173,-8.979],[3.585,1.695],[-11.602,0.322],[1.08,5.412],[0,0],[-1.42,4.661],[-38.77,17.671],[-0.025,2.213],[-14.575,10.054],[3.439,7.359],[-11.98,9.131],[3.354,3.021],[-28.218,29.53],[1.451,3.503],[-5.619,13.324],[3.041,4.009],[-3.855,13.277],[4.839,0.774],[0,0],[10.589,-1.648],[-2.849,62.516],[2.488,-0.757],[15.206,26.767],[5.413,-1.006],[14.09,15.019],[4.055,-1.004],[42.68,48.017],[6.41,-1.365],[15.989,10.107],[4.858,-2.346],[26.647,14.644],[5.257,-3.234],[52.364,12.754],[3.745,-3.927],[17.38,-4.263],[1.115,-1.592],[74.53,-7.789],[1.333,-9],[11.985,-16.998],[4.419,-6.4],[3.79,-15.061],[-5.258,-0.908],[11.752,-24.375],[-1.495,-5.458],[36.932,-49.434],[-2.202,-6.607],[0.901,-21.183],[-3.464,-4.176],[9.469,-36.552],[-5.169,-3.176],[-2.634,-13.929],[-5.658,-1.325],[-8.107,-4.533],[-6.628,-0.908],[-0.017,-9.362]],"v":[[3.02,-162.999],[8.243,-41.492],[-9.448,-140.273],[5.428,-41.577],[-66.581,-136.474],[-4.982,-50.303],[-94.937,-141.294],[-11.103,-50.883],[-91.631,-117.558],[-15.827,-48.412],[-150.75,-126.625],[-12.148,-33.673],[-76.677,-54.762],[-18.079,-33.683],[-125.935,-48.926],[-28.737,-33.315],[-144.516,-27.935],[-28.241,-30.355],[-129.957,-16.393],[-21.32,-26.218],[-189.443,52.219],[-21.179,-21.553],[-84.613,22.128],[-20.845,-15.595],[-143.927,91.798],[-11.831,-12.788],[-109.552,77.33],[-1.776,-10.549],[-60.574,69.369],[-4.963,-2.109],[-41.055,117.272],[-0.555,5.102],[-30.196,155.83],[5.729,3.604],[8.665,130.425],[12.099,-2.376],[18.32,81.416],[15.669,3.108],[41.962,76.131],[21.577,6.648],[62.49,91.451],[27.654,8.15],[95.923,118.365],[31.011,6.393],[102.975,84.18],[33.954,3.923],[112.957,71.446],[30.136,-4.087],[107.438,31.594],[29.62,-6.903],[94.5,0.667],[35.97,-12.045],[183.167,5],[41.86,-16.772],[147.562,-47.507],[43.258,-24.567],[106.809,-61.148],[38.582,-29.125],[103.057,-80.596],[35.068,-34.233],[141.167,-109],[32.012,-38.849],[76.865,-113.118],[28.198,-41.782],[66.503,-119.657],[25.119,-44.132],[37.324,-105.068],[21.279,-41.807],[29.931,-135.604],[12.71,-45.889]],"c":true}]},{"t":100,"s":[{"i":[[6.52,-0.499],[0,0],[7.552,-1.773],[0,0],[7.419,-3.974],[0,0],[5.063,-2.794],[0,0],[3.869,-4.058],[0,0],[3.25,-5.125],[0,0],[2.323,-7.262],[0,0],[1.065,-7.426],[0,0],[-0.016,-6.935],[0,0],[0.043,-8.393],[0,0],[-1.943,-5.281],[0,0],[-4.613,-6.872],[0,0],[-4.427,-4.702],[0,0],[-5.552,-5.67],[0,0],[-7.074,-5.131],[0,0],[-7.555,-2.728],[0,0],[-8.696,0.33],[0,0],[-5.835,-0.075],[0,0],[-5.179,-0.584],[0,0],[-7.538,4.131],[0,0],[-4.51,1.951],[0,0],[-7.077,4.865],[0,0],[-5.025,3.68],[0,0],[-5.043,6.946],[0,0],[-2.062,4.094],[0,0],[-1.5,7.666],[0,0],[-1.333,7.5],[0,0],[-0.438,6.493],[0,0],[2.309,7.852],[0,0],[1.057,4.404],[0,0],[1.667,6.5],[0,0],[6.365,6.382],[0,0],[3.503,2.843],[0,0],[5.324,3.432],[0,0],[2.931,0.896],[0,0]],"o":[[-6.521,0.499],[0,0],[-7.552,1.773],[0,0],[-7.419,3.974],[0,0],[-5.063,2.794],[0,0],[-3.869,4.058],[0,0],[-3.25,5.125],[0,0],[-2.323,7.262],[0,0],[-1.065,7.426],[0,0],[0.016,6.935],[0,0],[-0.043,8.393],[0,0],[1.943,5.281],[0,0],[4.613,6.872],[0,0],[4.427,4.702],[0,0],[5.552,5.67],[0,0],[7.074,5.131],[0,0],[7.555,2.728],[0,0],[8.696,-0.33],[0,0],[5.835,0.075],[0,0],[5.18,0.584],[0,0],[7.538,-4.131],[0,0],[4.51,-1.951],[0,0],[7.077,-4.865],[0,0],[5.025,-3.68],[0,0],[5.043,-6.946],[0,0],[2.062,-4.094],[0,0],[1.5,-7.666],[0,0],[1.333,-7.5],[0,0],[0.438,-6.493],[0,0],[-2.309,-7.852],[0,0],[-1.057,-4.404],[0,0],[-1.667,-6.5],[0,0],[-6.365,-6.382],[0,0],[-3.503,-2.843],[0,0],[-5.324,-3.432],[0,0],[-2.931,-0.896],[0,0]],"v":[[0.021,-238.999],[6.522,-22.25],[-22.948,-238.773],[6.486,-22.251],[-111.081,-205.974],[6.353,-22.363],[-136.437,-188.794],[6.274,-22.37],[-151.131,-175.058],[6.214,-22.339],[-176.75,-144.125],[6.261,-22.15],[-199.177,-102.262],[6.185,-22.15],[-209.935,-65.926],[6.048,-22.145],[-215.016,-31.435],[6.055,-22.107],[-215.457,-11.893],[6.143,-22.054],[-201.443,57.219],[6.145,-21.994],[-194.113,74.128],[6.149,-21.918],[-171.427,112.298],[6.265,-21.882],[-163.052,122.83],[6.394,-21.853],[-126.074,156.869],[6.353,-21.745],[-65.055,189.772],[6.41,-21.653],[-38.196,196.33],[6.49,-21.672],[9.165,202.425],[6.572,-21.748],[31.821,199.416],[6.618,-21.678],[80.962,187.631],[6.693,-21.633],[105.49,178.451],[6.771,-21.613],[127.923,167.865],[6.814,-21.636],[157.975,144.18],[6.852,-21.668],[174.957,125.946],[6.803,-21.77],[204.438,84.094],[6.796,-21.806],[223.5,34.166],[6.878,-21.872],[227.667,12],[6.953,-21.933],[227.062,-61.507],[6.971,-22.033],[213.309,-104.148],[6.911,-22.091],[198.057,-137.596],[6.866,-22.157],[195.667,-144],[6.827,-22.216],[142.865,-200.118],[6.778,-22.254],[122.503,-211.157],[6.739,-22.284],[84.324,-230.568],[6.689,-22.254],[51.431,-240.604],[6.58,-22.306]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":80},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.001,0.788,0.314,0,0.707,0.776,0.349,0,1,0.765,0.384,0]}},"s":{"a":0,"k":[4,-20]},"e":{"a":0,"k":[177.39,-20]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"white splashes null","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[244.121,231.173,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,15]},"t":0,"s":[10,10,100]},{"t":45,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"white splashes 16","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":-26.39},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[3.692,-18.443],[0.554,28.851],[-4.71,-0.153],[0.91,-34.729]],"o":[[0,0],[-0.811,-42.252],[4.48,0.146],[-0.566,21.614]],"v":[[3.698,-34.289],[7.153,-97.417],[3.704,-163.044],[9.887,-97.551]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.569,-224.224],[-0.708,-233.61],[4.557,-243.199],[6.236,-227.083]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"white splashes 15","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":-37.24},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[2.919,0.028],[0.458,3.186],[-3.113,-0.928],[-0.552,-2.173]],"o":[[-2.457,-0.024],[-0.45,-3.129],[2.517,0.751],[0.826,3.251]],"v":[[7.197,-189.998],[2.396,-196.671],[5.985,-201.733],[10.531,-196.769]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[3.804,-282.639],[1.73,-288.578],[5.061,-294.644],[6.124,-284.448]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[3.537,-26.73],[0.322,38.379],[-8.051,-1.852],[1.133,-39.172]],"o":[[0,0],[-0.423,-50.388],[5.402,1.243],[-0.739,25.566]],"v":[[8.88,-30.231],[9.352,-111.051],[8.877,-182.906],[15.292,-111.636]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.911,-258.66],[-0.366,-268.047],[4.899,-277.636],[6.578,-261.52]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"white splashes 14","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":-76.9},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.889,-0.602],[1.33,4.021],[-2.184,1.073],[-0.71,-4.999]],"o":[[-2.155,0.687],[-1.33,-4.021],[3.935,-1.933],[0.554,3.902]],"v":[[8.293,-195.666],[2.395,-202.581],[3.004,-212.136],[10.191,-204.071]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[3.084,-248.643],[1.01,-254.582],[4.342,-260.648],[5.404,-250.452]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[-1.319,42.909],[-4.42,3.366],[0.367,-39.751]],"o":[[0,0],[1.684,-54.774],[4.638,-3.532],[-0.457,49.575]],"v":[[9.093,-35.688],[13.821,-104.066],[9.104,-187.932],[19.987,-125.011]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.192,-224.664],[-1.086,-234.051],[4.179,-243.64],[5.858,-227.523]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"white splashes 13","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":247.61},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.106,-0.312],[0.854,3.094],[-1.739,0.347],[-0.484,-3.307]],"o":[[-1.879,0.53],[-0.854,-3.094],[2.606,-0.52],[0.423,2.893]],"v":[[16.044,-188.261],[11.553,-193.701],[12.489,-200.455],[17.091,-194.354]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[4.94,-258.315],[2.866,-264.254],[6.198,-270.321],[7.26,-260.124]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[0.386,32.409],[-2.865,-1.201],[0.359,-8.729]],"o":[[0,0],[-0.486,-40.852],[8.005,3.357],[-1.553,37.802]],"v":[[16.903,-34.891],[18.1,-112.135],[16.912,-182.742],[22.479,-110.91]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.192,-224.664],[-1.086,-234.051],[4.179,-243.64],[5.858,-227.523]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"white splashes 12","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":233.03},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.981,-0.058],[0.74,5.37],[-3.113,-0.709],[-0.16,-4.987]],"o":[[-1.929,0.057],[-0.74,-5.37],[3.113,0.709],[0.16,4.987]],"v":[[12.221,-233.342],[7.552,-244.188],[10.447,-254.057],[15.155,-243.212]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[9.651,-292.065],[7.577,-298.004],[10.908,-304.071],[11.971,-293.874]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[1.356,31.642],[-4.56,1.137],[-0.088,-53.09]],"o":[[4.684,-49.409],[-2.183,-50.944],[5.665,-1.413],[0.11,66.517]],"v":[[12.032,-26.322],[15.369,-148.176],[12.025,-227.456],[21.738,-151.886]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[6.902,-258.414],[3.625,-267.801],[8.89,-277.39],[10.569,-261.273]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"white splashes 11","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":214.81},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.507,0.148],[-0.026,1.131],[-1.431,-0.266],[-0.107,-1.096]],"o":[[-1.786,-0.176],[0.031,-1.343],[1.208,0.224],[0.127,1.295]],"v":[[4.516,-198.027],[2.064,-200.467],[4.571,-202.884],[6.56,-200.468]],"c":true}]},{"t":105,"s":[{"i":[[0.372,0.35],[-0.114,1.086],[-0.875,-0.823],[0.185,-1.769]],"o":[[-0.795,-0.747],[0.125,-1.194],[1.296,1.218],[-0.053,0.508]],"v":[[11.374,-296.43],[10.295,-299.521],[12.029,-302.679],[12.582,-297.371]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.573,-0.068],[-0.07,2.424],[-1.723,-0.616],[-0.046,-2.055]],"o":[[-2.138,0.092],[0.076,-2.642],[1.541,0.552],[0.052,2.348]],"v":[[4.364,-207.182],[1.458,-211.938],[4.41,-216.605],[6.732,-211.938]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[12.529,-308.36],[10.456,-314.299],[13.787,-320.366],[14.849,-310.169]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[1,27.626],[-5.456,-2.345],[0.879,-39.91]],"o":[[1.509,-38.059],[-1.888,-52.164],[5.09,2.188],[-1.019,46.266]],"v":[[5.034,-13.727],[5.006,-113.095],[5.033,-193.482],[10.403,-114.654]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[9.781,-274.709],[6.503,-284.096],[11.769,-293.685],[13.448,-277.569]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"white splashes 10","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":192.69},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0.501,-5.417],[0.307,16.252],[-1.853,0.524],[0.918,-24.972]],"o":[[1.34,-26.772],[-0.617,-32.602],[4.732,-1.338],[-1.024,27.851]],"v":[[9.159,-30.175],[10.331,-94.286],[9.15,-140.552],[13.436,-94.62]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.872,-210.009],[-0.406,-219.396],[4.859,-228.985],[6.538,-212.869]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"white splashes 9","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":178.18},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[2.914,0.483],[-0.75,3.266],[-2.159,-0.434],[0.278,-3.069]],"o":[[-2.731,-0.452],[0.75,-3.266],[2.014,0.405],[-0.319,3.512]],"v":[[5.887,-190.899],[3.433,-198.105],[8.313,-203.983],[10.844,-197.439]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[5.198,-239.911],[1.92,-249.298],[7.185,-258.887],[8.864,-242.771]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[-0.178,30.147],[-3.098,-0.098],[2.065,-33.166]],"o":[[-3.379,-29.806],[0.157,-26.65],[6.602,0.21],[-3.247,52.138]],"v":[[4.103,-38.228],[-0.753,-137.332],[4.092,-183.497],[5.25,-137.283]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.872,-210.009],[-0.406,-219.396],[4.859,-228.985],[6.538,-212.869]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"white splashes 8","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":159.43},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.785,-0.166],[-0.606,2.256],[-1.258,-0.472],[0.237,-1.901]],"o":[[-2.305,0.214],[0.54,-2.01],[1.419,0.532],[-0.209,1.677]],"v":[[1.45,-209.993],[-0.568,-214.537],[2.505,-217.89],[4.374,-213.361]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[5.198,-239.911],[1.92,-249.298],[7.185,-258.887],[8.864,-242.771]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[1.193,46.077],[-4.889,-1.15],[1.642,-42.494]],"o":[[0,0],[-1.052,-40.634],[7.955,1.872],[-2.299,59.509]],"v":[[0.57,-29.865],[-3.566,-125.498],[0.579,-202.91],[2.057,-125.567]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.872,-210.009],[-0.406,-219.396],[4.859,-228.985],[6.538,-212.869]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"white splashes 7","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":121.14},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[-0.156,34.036],[-4.468,-1.124],[3.836,-53.869]],"o":[[-9.01,-37.907],[0.232,-50.528],[6.047,1.521],[-4.23,59.393]],"v":[[-1.995,-37.202],[-13.819,-149.054],[-1.999,-236.043],[-8.402,-150.485]],"c":true}]},{"t":105,"s":[{"i":[[0.894,1.266],[-0.999,3.16],[-2.102,-2.979],[1.628,-5.15]],"o":[[-1.911,-2.708],[1.099,-3.477],[3.114,4.413],[-0.467,1.478]],"v":[[-9.187,-267.183],[-10.516,-277.036],[-3.435,-285.375],[-5.021,-269.249]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"white splashes 6","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":99.54},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[2.915,1.639],[-0.439,2.709],[-2.762,-1.266],[0.258,-2.657]],"o":[[-2.152,-1.211],[0.566,-3.493],[1.834,0.841],[-0.374,3.847]],"v":[[0.236,-176.094],[-2.057,-182.925],[3.531,-188.307],[5.714,-182.155]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[5.198,-239.911],[1.92,-249.298],[7.185,-258.887],[8.864,-242.771]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-2.433,-32.344],[1.471,40.713],[-4.408,-2.527],[1.164,-31.322]],"o":[[0,0],[-1.412,-39.1],[2.484,1.424],[-0.718,19.307]],"v":[[1.045,-42.304],[-7.111,-119.798],[1.052,-167.216],[-0.663,-119.462]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[2.872,-210.009],[-0.406,-219.396],[4.859,-228.985],[6.538,-212.869]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"white splashes 5","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":77.63},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.463,0.517],[-0.149,1.097],[-1.132,-0.252],[0.096,-1.199]],"o":[[-1.11,-0.392],[0.199,-1.463],[1.187,0.264],[-0.125,1.557]],"v":[[3.823,-195.789],[2.539,-198.382],[4.909,-201.046],[6.439,-198.381]],"c":true}]},{"t":105,"s":[{"i":[[0.372,0.35],[-0.114,1.086],[-0.875,-0.822],[0.185,-1.769]],"o":[[-0.795,-0.748],[0.125,-1.194],[1.296,1.218],[-0.053,0.508]],"v":[[4.894,-216.411],[3.814,-219.502],[5.548,-222.66],[6.101,-217.353]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[1.326,0.836],[-0.749,2.262],[-1.249,-0.536],[0.89,-2.237]],"o":[[-1.156,-0.729],[0.838,-2.534],[2.124,0.912],[-1.049,2.636]],"v":[[5.046,-203.717],[4.806,-209.142],[8.46,-213.457],[9.665,-207.855]],"c":true}]},{"t":105,"s":[{"i":[[0.715,0.672],[-0.218,2.085],[-1.681,-1.58],[0.356,-3.399]],"o":[[-1.528,-1.436],[0.24,-2.295],[2.49,2.34],[-0.102,0.975]],"v":[[6.049,-228.341],[3.975,-234.28],[7.307,-240.347],[8.369,-230.151]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-4.814,-40.706],[-1.895,51.518],[-4.761,-1.911],[1.795,-38.673]],"o":[[0,0],[1.569,-42.637],[2.891,1.16],[-1.202,25.903]],"v":[[3.306,-29.924],[-6.601,-132.191],[3.292,-191.348],[-0.482,-130.244]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[3.3,-194.69],[0.023,-204.077],[5.288,-213.666],[6.967,-197.55]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"white splashes 3","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":35.48},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[2.259,0.86],[-0.661,4.424],[-2.433,-0.341],[1.208,-4.987]],"o":[[-2.13,-0.811],[0.754,-5.049],[3.542,0.496],[-1.185,4.895]],"v":[[1.284,-197.622],[-0.569,-207.285],[4.734,-217.037],[7.318,-206.171]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[5.772,-271.189],[2.494,-280.576],[7.759,-290.165],[9.439,-274.049]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[-1.091,54.207],[-2.162,-1.244],[2.031,-39.647]],"o":[[0,0],[0.873,-43.398],[3.603,2.074],[-2.522,49.212]],"v":[[2.196,-32.287],[-7.332,-149.424],[2.183,-192.763],[-0.137,-136.646]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[3.446,-241.287],[0.168,-250.674],[5.433,-260.263],[7.113,-244.146]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"white splashes 4","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[100]},{"t":105,"s":[0]}]},"r":{"a":0,"k":-3.87},"a":{"a":0,"k":[1.121,-11.827,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[2.46,0.092],[-0.034,1.74],[-1.94,0.288],[-0.039,-1.924]],"o":[[-1.711,-0.064],[0.034,-1.74],[1.94,-0.288],[0.039,1.924]],"v":[[2.715,-178.247],[0.16,-181.736],[3.08,-185.561],[6.197,-182.051]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.498],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[5.626,-224.593],[2.349,-233.98],[7.614,-243.569],[9.293,-227.452]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"t":0,"s":[{"i":[[2.294,0.008],[0.501,2.89],[-1.583,-0.006],[-0.229,-1.323]],"o":[[-2.933,-0.01],[-0.27,-1.56],[1.343,0.005],[0.392,2.26]],"v":[[1.108,-11.6],[-4.67,-18.237],[-0.404,-20.326],[3.025,-18.209]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[0.85,39.256],[-3.929,-0.2],[0.353,-39.178]],"o":[[0,0],[-0.635,-29.308],[6.408,0.327],[-0.331,36.714]],"v":[[1.787,-33.47],[-2.076,-118.748],[1.789,-173.393],[2.474,-118.386]],"c":true}]},{"t":105,"s":[{"i":[[1.129,1.062],[-0.345,3.296],[-2.657,-2.497],[0.563,-5.372]],"o":[[-2.415,-2.27],[0.38,-3.627],[3.936,3.699],[-0.161,1.542]],"v":[[3.3,-194.69],[0.023,-204.077],[5.288,-213.666],[6.967,-197.55]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862747669,0.854901969433,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":105,"st":-60,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"pink","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":100,"s":[0]}]},"p":{"a":0,"k":[245.75,225.75,0]},"a":{"a":0,"k":[2.75,-17.25,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.312,8.525],[3.244,0.766],[0.278,-4.348]],"o":[[-1.312,-8.525],[-5.358,-1.265],[-0.278,4.348]],"v":[[6.13,-24.571],[8.951,-66.768],[5.014,-23.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.55,23.061],[3.244,0.766],[0.753,-11.762]],"o":[[-3.55,-23.061],[-5.358,-1.265],[-0.753,11.762]],"v":[[11.788,-37.733],[14.47,-92.154],[8.769,-35.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.113,0.736],[3.244,0.766],[0.024,-0.376]],"o":[[-0.113,-0.736],[-5.358,-1.265],[-0.024,0.376]],"v":[[1.251,-14.165],[19.643,-137.56],[1.155,-14.085]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.014],[3.244,0.766],[0,-0.007]],"o":[[-0.002,-0.014],[-5.358,-1.265],[0,0.007]],"v":[[29.568,-215.114],[32.47,-250.154],[29.566,-215.113]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.775,14.209],[6.351,4.603],[2.652,-16.185]],"o":[[0.775,-14.209],[-4.056,-2.94],[-2.652,16.185]],"v":[[7.231,-23.969],[18.873,-61.186],[6.13,-24.571]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-2.096,38.439],[6.351,4.603],[7.173,-43.783]],"o":[[2.096,-38.439],[-4.056,-2.94],[-7.173,43.783]],"v":[[14.767,-36.105],[37.637,-108.647],[11.788,-37.733]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.067,1.227],[6.351,4.603],[0.229,-1.398]],"o":[[0.067,-1.227],[-4.056,-2.94],[-0.229,1.398]],"v":[[1.932,-14.242],[49.85,-146.868],[1.837,-14.294]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,0.023],[6.351,4.603],[0.004,-0.026]],"o":[[0.001,-0.023],[-4.056,-2.94],[-0.004,0.026]],"v":[[75.069,-225.113],[80.137,-241.647],[75.068,-225.114]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.749,6.829],[6.31,5.609],[1.359,-6.48]],"o":[[-0.749,-6.829],[-3.554,-3.159],[-1.359,6.48]],"v":[[8.596,-23.217],[31.24,-73.607],[7.231,-23.969]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.026,18.473],[6.31,5.609],[3.677,-17.531]],"o":[[-2.026,-18.473],[-3.554,-3.159],[-3.677,17.531]],"v":[[18.46,-34.07],[47.481,-104.355],[14.767,-36.105]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.065,0.59],[6.31,5.609],[0.117,-0.56]],"o":[[-0.065,-0.59],[-3.554,-3.159],[-0.117,0.56]],"v":[[2.166,-13.836],[63.43,-142.576],[2.048,-13.901]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.011],[6.31,5.609],[0.002,-0.011]],"o":[[-0.001,-0.011],[-3.554,-3.159],[-0.002,0.011]],"v":[[84.072,-198.612],[102.981,-237.355],[84.069,-198.613]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.199,15.089],[5.581,6.595],[12.758,-17.563]],"o":[[6.199,-15.089],[-2.72,-3.214],[-12.758,17.563]],"v":[[9.486,-22.203],[48.882,-61.987],[8.281,-23.532]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.769,40.819],[5.581,6.595],[34.513,-47.512]],"o":[[16.769,-40.819],[-2.72,-3.214],[-34.513,47.512]],"v":[[21.719,-30.475],[103.282,-109.764],[18.46,-34.07]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.535,1.303],[5.581,6.595],[1.102,-1.517]],"o":[[0.535,-1.303],[-2.72,-3.214],[-1.102,1.517]],"v":[[3.204,-13.341],[122.823,-131.604],[3.099,-13.456]],"c":true}]},{"t":100,"s":[{"i":[[-0.01,0.025],[5.581,6.595],[0.021,-0.029]],"o":[[0.01,-0.025],[-2.72,-3.214],[-0.021,0.029]],"v":[[156.574,-169.11],[171.282,-185.764],[156.572,-169.112]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.223,9.945],[2.258,6.104],[6.726,-10.205]],"o":[[4.223,-9.945],[-1.817,-4.912],[-6.726,10.205]],"v":[[11.177,-20.424],[48.778,-58.677],[9.801,-21.888]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-11.423,26.904],[2.258,6.104],[18.195,-27.606]],"o":[[11.423,-26.904],[-1.817,-4.912],[-18.195,27.606]],"v":[[25.439,-26.516],[74.48,-79.649],[21.719,-30.475]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.365,0.859],[2.258,6.104],[0.581,-0.882]],"o":[[0.365,-0.859],[-1.817,-4.912],[-0.581,0.882]],"v":[[3.264,-12.932],[105.66,-107.524],[3.146,-13.058]],"c":true}]},{"t":100,"s":[{"i":[[-0.007,0.016],[2.258,6.104],[0.011,-0.017]],"o":[[0.007,-0.016],[-1.817,-4.912],[-0.011,0.017]],"v":[[152.076,-147.108],[182.98,-176.649],[152.074,-147.11]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-3.334,6.648],[-1.799,5.518],[9.673,-9.931]],"o":[[3.334,-6.648],[1.878,-5.758],[-9.673,9.931]],"v":[[12.897,-19.193],[48.972,-44.204],[11.177,-20.424]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-9.018,17.983],[-1.799,5.518],[26.167,-26.865]],"o":[[9.018,-17.983],[1.878,-5.758],[-26.167,26.865]],"v":[[30.094,-23.186],[81.927,-62.022],[25.439,-26.516]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.288,0.574],[-1.799,5.518],[0.836,-0.858]],"o":[[0.288,-0.574],[1.878,-5.758],[-0.836,0.858]],"v":[[3.883,-12.491],[120.292,-83.862],[3.734,-12.597]],"c":true}]},{"t":100,"s":[{"i":[[-0.005,0.011],[-1.799,5.518],[0.016,-0.016]],"o":[[0.005,-0.011],[1.878,-5.758],[-0.016,0.016]],"v":[[188.579,-121.106],[215.427,-138.022],[188.576,-121.108]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.869,8.704],[-3.432,7.058],[12.009,-7.852]],"o":[[9.869,-8.704],[2.981,-6.13],[-12.009,7.852]],"v":[[12.832,-16.628],[74.374,-42.527],[12.897,-19.193]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-26.696,23.547],[-3.432,7.058],[32.485,-21.24]],"o":[[26.696,-23.547],[2.981,-6.13],[-32.485,21.24]],"v":[[29.916,-16.247],[117.42,-56.876],[30.094,-23.186]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.852,0.752],[-3.432,7.058],[1.037,-0.678]],"o":[[0.852,-0.752],[2.981,-6.13],[-1.037,0.678]],"v":[[3.897,-11.786],[151.618,-69.521],[3.902,-12.008]],"c":true}]},{"t":100,"s":[{"i":[[-0.016,0.014],[-3.432,7.058],[0.02,-0.013]],"o":[[0.016,-0.014],[2.981,-6.13],[-0.02,0.013]],"v":[[190.079,-83.601],[236.42,-100.876],[190.079,-83.606]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.199,3.553],[-2.249,4.962],[22.38,-4.873]],"o":[[22.287,-5.577],[4.049,-8.935],[-22.38,4.873]],"v":[[10.861,-15.141],[88.919,-15.854],[12.516,-16.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-38.412,9.611],[-2.249,4.962],[60.542,-13.183]],"o":[[60.291,-15.085],[4.049,-8.935],[-60.542,13.183]],"v":[[25.439,-11.372],[154.986,-15.381],[29.916,-16.247]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.227,0.307],[-2.249,4.962],[1.933,-0.421]],"o":[[1.925,-0.482],[4.049,-8.935],[-1.933,0.421]],"v":[[3.934,-10.704],[182.862,-13.944],[4.077,-10.859]],"c":true}]},{"t":100,"s":[{"i":[[-0.023,0.006],[-2.249,4.962],[0.036,-0.008]],"o":[[0.036,-0.009],[4.049,-8.935],[-0.036,0.008]],"v":[[204.076,-11.599],[251.986,-10.381],[204.079,-11.601]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.711,2.16],[-0.839,0.958],[12.251,-0.88]],"o":[[4.711,-2.16],[1.348,-1.539],[-12.251,0.88]],"v":[[9.079,-12.869],[39.383,-12.388],[10.861,-14.826]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.744,5.843],[-0.839,0.958],[33.14,-2.38]],"o":[[12.744,-5.843],[1.348,-1.539],[-33.14,2.38]],"v":[[20.619,-6.076],[78.015,-8.131],[25.439,-11.372]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.407,0.187],[-0.839,0.958],[1.058,-0.076]],"o":[[0.407,-0.187],[1.348,-1.539],[-1.058,0.076]],"v":[[4.224,-10.251],[128.305,-2.239],[4.378,-10.421]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,0.004],[-0.839,0.958],[0.02,-0.001]],"o":[[0.008,-0.004],[1.348,-1.539],[-0.02,0.001]],"v":[[238.573,10.405],[253.015,12.369],[238.576,10.401]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-19.702,-2.401],[-2.482,3.154],[14.29,0.398]],"o":[[19.702,2.401],[2.595,-3.297],[-14.29,-0.398]],"v":[[9.698,-12.307],[64.597,6.088],[9.395,-13.184]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-53.298,-6.494],[-2.482,3.154],[38.657,1.077]],"o":[[53.298,6.494],[2.595,-3.297],[-38.657,-1.077]],"v":[[21.439,-3.705],[93.137,16.968],[20.619,-6.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.702,-0.207],[-2.482,3.154],[1.234,0.034]],"o":[[1.702,0.207],[2.595,-3.297],[-1.234,-0.034]],"v":[[3.71,-9.493],[135.812,35.216],[3.683,-9.569]],"c":true}]},{"t":100,"s":[{"i":[[-0.032,-0.004],[-2.482,3.154],[0.023,0.001]],"o":[[0.032,0.004],[2.595,-3.297],[-0.023,-0.001]],"v":[[196.573,63.406],[241.637,80.468],[196.573,63.405]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.253,-3.386],[-5.064,4.293],[16.792,8.51]],"o":[[9.253,3.386],[4.126,-3.498],[-16.792,-8.51]],"v":[[11.313,-9.614],[54.159,17.809],[9.698,-11.992]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-25.032,-9.16],[-5.064,4.293],[45.426,23.022]],"o":[[25.032,9.16],[4.126,-3.498],[-45.426,-23.022]],"v":[[25.808,2.729],[103.197,50.764],[21.439,-3.705]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.799,-0.292],[-5.064,4.293],[1.451,0.735]],"o":[[0.799,0.292],[4.126,-3.498],[-1.451,-0.735]],"v":[[3.881,-8.702],[137.251,71.886],[3.742,-8.908]],"c":true}]},{"t":100,"s":[{"i":[[-0.015,-0.006],[-5.064,4.293],[0.027,0.014]],"o":[[0.015,0.006],[4.126,-3.498],[-0.027,-0.014]],"v":[[199.076,108.91],[221.697,124.264],[199.073,108.906]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":11,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.526,-3.215],[-3.502,3.162],[9.671,6.481]],"o":[[6.526,3.215],[3.502,-3.162],[-9.671,-6.481]],"v":[[10.491,-8.994],[73.057,40.569],[11.313,-9.929]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-17.653,-8.697],[-3.502,3.162],[26.163,17.532]],"o":[[17.653,8.697],[3.502,-3.162],[-26.163,-17.532]],"v":[[23.585,5.258],[96.236,63.117],[25.808,2.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.564,-0.278],[-3.502,3.162],[0.835,0.56]],"o":[[0.564,0.278],[3.502,-3.162],[-0.835,-0.56]],"v":[[3.102,-8.57],[126.267,90.274],[3.173,-8.651]],"c":true}]},{"t":100,"s":[{"i":[[-0.011,-0.005],[-3.502,3.162],[0.016,0.011]],"o":[[0.011,0.005],[3.502,-3.162],[-0.016,-0.011]],"v":[[144.075,112.911],[200.736,157.617],[144.076,112.91]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":12,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-13.475,-10.482],[-4.458,3.463],[10.073,7.849]],"o":[[13.475,10.482],[4.458,-3.463],[-10.073,-7.849]],"v":[[9.502,-7.951],[52.87,45.892],[10.491,-8.678]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-36.453,-28.355],[-4.458,3.463],[27.249,21.233]],"o":[[36.453,28.355],[4.458,-3.463],[-27.249,-21.233]],"v":[[20.909,7.226],[94.655,93.669],[23.585,5.258]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.164,-0.905],[-4.458,3.463],[0.87,0.678]],"o":[[1.164,0.905],[4.458,-3.463],[-0.87,-0.678]],"v":[[3.049,-7.986],[116.926,120.825],[3.134,-8.049]],"c":true}]},{"t":100,"s":[{"i":[[-0.022,-0.017],[-4.458,3.463],[0.016,0.013]],"o":[[0.022,0.017],[4.458,-3.463],[-0.016,-0.013]],"v":[[146.573,153.413],[172.155,188.169],[146.575,153.411]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":13,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.775,-3.087],[-3.488,2.449],[10.229,14.193]],"o":[[4.775,3.087],[3.488,-2.449],[-10.229,-14.193]],"v":[[7.167,-8.135],[48.091,56.332],[9.187,-7.951]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.917,-8.352],[-3.488,2.449],[27.671,38.395]],"o":[[12.917,8.352],[3.488,-2.449],[-27.671,-38.395]],"v":[[15.445,6.729],[62.124,74.78],[20.909,7.226]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.412,-0.267],[-3.488,2.449],[0.884,1.226]],"o":[[0.412,0.267],[3.488,-2.449],[-0.884,-1.226]],"v":[[2.321,-8.079],[84.827,113.576],[2.495,-8.063]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,-0.005],[-3.488,2.449],[0.017,0.023]],"o":[[0.008,0.005],[3.488,-2.449],[-0.017,-0.023]],"v":[[103.57,147.412],[141.124,209.78],[103.573,147.413]],"c":true}]}]},"nm":"Path 14","hd":false},{"ind":14,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-5.362,-6.334],[-2.659,0.857],[3.694,6.735]],"o":[[5.361,6.334],[6.495,-2.093],[-3.694,-6.735]],"v":[[5.102,-9.295],[26.477,35.494],[7.167,-8.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.504,-17.136],[-2.659,0.857],[9.994,18.219]],"o":[[14.504,17.136],[6.495,-2.093],[-9.994,-18.219]],"v":[[9.859,4.445],[41.772,64.349],[15.445,6.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.463,-0.547],[-2.659,0.857],[0.319,0.582]],"o":[[0.463,0.547],[6.495,-2.093],[-0.319,-0.582]],"v":[[2.027,-7.553],[61.313,111.91],[2.205,-7.48]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,-0.01],[-2.659,0.857],[0.006,0.011]],"o":[[0.009,0.01],[6.495,-2.093],[-0.006,-0.011]],"v":[[94.566,193.911],[109.772,229.849],[94.57,193.912]],"c":true}]}]},"nm":"Path 15","hd":false},{"ind":15,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.43,-4.038],[-5.792,0.94],[0.557,8.126]],"o":[[0.43,4.038],[3.71,-0.602],[-0.557,-8.126]],"v":[[3.69,-10.876],[17.077,55.965],[5.102,-9.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-1.164,-10.924],[-5.792,0.94],[1.507,21.981]],"o":[[1.164,10.924],[3.71,-0.602],[-1.507,-21.981]],"v":[[6.039,0.167],[22.28,71.891],[9.859,4.445]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.037,-0.349],[-5.792,0.94],[0.048,0.702]],"o":[[0.037,0.349],[3.71,-0.602],[-0.048,-0.702]],"v":[[1.242,-7.799],[31.62,122.9],[1.364,-7.663]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,-0.007],[-5.792,0.94],[0.001,0.013]],"o":[[0.001,0.007],[3.71,-0.602],[-0.001,-0.013]],"v":[[43.064,185.408],[54.78,249.391],[43.066,185.411]],"c":true}]}]},"nm":"Path 16","hd":false},{"ind":16,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.268,-1.072],[-8.766,2.77],[-1.453,20.282]],"o":[[-0.268,1.072],[8.956,-2.83],[1.453,-20.282]],"v":[[2.258,-8.649],[11.352,48.031],[4.005,-10.876]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.726,-2.901],[-8.766,2.77],[-3.93,54.866]],"o":[[-0.726,2.901],[8.956,-2.83],[3.93,-54.866]],"v":[[1.312,6.192],[20.655,115.675],[6.039,0.167]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.023,-0.093],[-8.766,2.77],[-0.125,1.752]],"o":[[-0.023,0.093],[8.956,-2.83],[0.125,-1.752]],"v":[[0.956,-7.06],[24.966,155.333],[1.106,-7.252]],"c":true}]},{"t":100,"s":[{"i":[[0,-0.002],[-8.766,2.77],[-0.002,0.033]],"o":[[0,0.002],[8.956,-2.83],[0.002,-0.033]],"v":[[32.561,227.912],[35.655,253.675],[32.564,227.908]],"c":true}]}]},"nm":"Path 17","hd":false},{"ind":17,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.674,-5.118],[-9.34,-10.304],[-5.656,20.469]],"o":[[-0.674,5.118],[5.335,5.886],[5.656,-20.469]],"v":[[0.319,-7.862],[-7.754,79.004],[2.258,-8.649]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.822,-13.845],[-9.34,-10.304],[-15.299,55.372]],"o":[[-1.822,13.845],[5.335,5.886],[15.299,-55.372]],"v":[[-3.933,8.322],[-10.119,142.549],[1.312,6.192]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.058,-0.442],[-9.34,-10.304],[-0.489,1.768]],"o":[[-0.058,0.442],[5.335,5.886],[0.489,-1.768]],"v":[[0.157,-7.436],[-14.573,174.16],[0.325,-7.504]],"c":true}]},{"t":100,"s":[{"i":[[0.001,-0.008],[-9.34,-10.304],[-0.009,0.033]],"o":[[-0.001,0.008],[5.335,5.886],[0.009,-0.033]],"v":[[-16.442,193.413],[-25.619,252.549],[-16.439,193.412]],"c":true}]}]},"nm":"Path 18","hd":false},{"ind":18,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.134,-4.491],[-8.529,-8.273],[-6.696,18.034]],"o":[[-1.134,4.491],[3.166,3.071],[6.696,-18.034]],"v":[[-1.761,-9.64],[-13.598,51.106],[0.003,-7.546]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.068,-12.148],[-8.529,-8.273],[-18.113,48.786]],"o":[[-3.068,12.148],[3.166,3.071],[18.113,-48.786]],"v":[[-8.707,2.658],[-24.162,110.866],[-3.933,8.322]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.098,-0.388],[-8.529,-8.273],[-0.578,1.558]],"o":[[-0.098,0.388],[3.166,3.071],[0.578,-1.558]],"v":[[-0.446,-7.378],[-34.795,149.374],[-0.293,-7.198]],"c":true}]},{"t":100,"s":[{"i":[[0.002,-0.007],[-8.529,-8.273],[-0.011,0.029]],"o":[[-0.002,0.007],[3.166,3.071],[0.011,-0.029]],"v":[[-51.445,211.91],[-61.162,244.866],[-51.442,211.913]],"c":true}]}]},"nm":"Path 19","hd":false},{"ind":19,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.217,-13.161],[-2.977,-4.918],[-5.725,7.174]],"o":[[-9.217,13.161],[1.721,2.843],[5.725,-7.174]],"v":[[-1.154,-12.499],[-42.53,56.34],[-1.761,-9.64]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[24.934,-35.602],[-2.977,-4.918],[-15.488,19.406]],"o":[[-24.934,35.602],[1.721,2.843],[15.488,-19.406]],"v":[[-7.064,-5.076],[-47.418,71.95],[-8.707,2.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.796,-1.137],[-2.977,-4.918],[-0.495,0.62]],"o":[[-0.796,1.137],[1.721,2.843],[0.495,-0.62]],"v":[[-0.876,-8.404],[-71.414,113.188],[-0.929,-8.157]],"c":true}]},{"t":100,"s":[{"i":[[0.015,-0.021],[-2.977,-4.918],[-0.009,0.012]],"o":[[-0.015,0.021],[1.721,2.843],[0.009,-0.012]],"v":[[-88.944,151.405],[-130.918,215.45],[-88.945,151.41]],"c":true}]}]},"nm":"Path 20","hd":false},{"ind":20,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.626,-7.899],[-8.084,-5.313],[-13.235,7.936]],"o":[[-2.855,2.957],[3.306,2.173],[10.979,-6.583]],"v":[[-4.169,-12.723],[-45.434,37.243],[-0.839,-12.499]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.63,-21.369],[-8.084,-5.313],[-35.802,21.467]],"o":[[-7.724,8],[3.306,2.173],[29.699,-17.808]],"v":[[-16.072,-5.684],[-88.796,85.335],[-7.064,-5.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.659,-0.682],[-8.084,-5.313],[-1.143,0.686]],"o":[[-0.247,0.255],[3.306,2.173],[0.948,-0.569]],"v":[[-1.962,-8.308],[-113.223,114.36],[-1.674,-8.288]],"c":true}]},{"t":100,"s":[{"i":[[0.012,-0.013],[-8.084,-5.313],[-0.022,0.013]],"o":[[-0.005,0.005],[3.306,2.173],[0.018,-0.011]],"v":[[-150.949,160.405],[-173.796,186.335],[-150.944,160.405]],"c":true}]}]},"nm":"Path 21","hd":false},{"ind":21,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.117,-10.21],[-5.628,-14.818],[-24.822,15.796]],"o":[[-14.086,10.188],[3.081,4.733],[21.924,-13.951]],"v":[[-3.765,-15.075],[-82.448,63.651],[-4.484,-12.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[38.189,-27.621],[0.797,-25.979],[-67.149,42.73]],"o":[[-38.106,27.561],[-0.163,5.311],[59.307,-37.74]],"v":[[-14.127,-12.046],[-117.611,102.283],[-16.072,-5.684]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[1.219,-0.882],[-2.13,-20.894],[-2.144,1.364]],"o":[[-1.217,0.88],[1.315,5.048],[1.894,-1.205]],"v":[[-1.552,-9.148],[-137.871,121.393],[-1.614,-8.945]],"c":true}]},{"t":100,"s":[{"i":[[0.023,-0.017],[-9.389,-8.283],[-0.04,0.026]],"o":[[-0.023,0.017],[4.981,4.394],[0.036,-0.023]],"v":[[-123.948,110.901],[-188.111,168.783],[-123.949,110.905]],"c":true}]}]},"nm":"Path 22","hd":false},{"ind":22,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.794,-1.349],[0.656,-8.742],[-9.144,3.299]],"o":[[-0.388,0.187],[-0.279,3.717],[9.144,-3.298]],"v":[[-4.357,-15.318],[-39.206,7.131],[-3.283,-15.062]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[7.56,-3.648],[1.507,-8.661],[-24.737,8.919]],"o":[[-1.051,0.507],[-0.641,3.682],[24.737,-8.919]],"v":[[-17.032,-12.737],[-65.957,17.111],[-14.127,-12.046]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.241,-0.117],[1.12,-8.698],[-0.79,0.285]],"o":[[-0.034,0.016],[-0.476,3.698],[0.79,-0.285]],"v":[[-2.581,-9.26],[-111.172,47.264],[-2.489,-9.238]],"c":true}]},{"t":100,"s":[{"i":[[0.004,-0.003],[0.158,-8.79],[-0.014,0.008]],"o":[[-0.001,0],[-0.067,3.737],[0.014,-0.008]],"v":[[-196.685,103.922],[-223.294,122.037],[-196.683,103.922]],"c":true}]}]},"nm":"Path 23","hd":false},{"ind":23,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.652,-0.002],[9.621,-23.195],[-30.797,11.034]],"o":[[-0.652,0.002],[1.201,4.343],[30.797,-11.034]],"v":[[-5.938,-16.534],[-91.485,36.162],[-4.524,-15.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.764,-0.005],[34.94,-49.93],[-83.311,29.848]],"o":[[-1.764,0.005],[-2.448,3.499],[83.311,-29.848]],"v":[[-20.857,-15.139],[-161.337,74.163],[-17.032,-12.737]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.056,0],[23.404,-37.749],[-2.66,0.953]],"o":[[-0.056,0],[-0.786,3.883],[2.66,-0.953]],"v":[[-2.437,-9.678],[-180.879,84.077],[-2.314,-9.602]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0],[-5.203,-7.542],[-0.05,0.018]],"o":[[-0.001,0],[3.337,4.837],[0.05,-0.018]],"v":[[-175.952,77.399],[-229.337,108.663],[-175.95,77.401]],"c":true}]}]},"nm":"Path 24","hd":false},{"ind":24,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.079,-0.51],[0.18,-8.491],[-14.645,0.239]],"o":[[-3.079,0.51],[-0.099,4.7],[14.645,-0.239]],"v":[[-8.996,-17.288],[-60.714,-4.682],[-6.253,-16.534]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.33,-1.38],[0.18,-8.491],[-39.617,0.647]],"o":[[-8.33,1.38],[-0.099,4.7],[39.617,-0.647]],"v":[[-28.279,-17.178],[-119.213,6.829],[-20.857,-15.139]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.266,-0.044],[0.18,-8.491],[-1.265,0.021]],"o":[[-0.266,0.044],[-0.099,4.7],[1.265,-0.021]],"v":[[-3.288,-10.423],[-157.506,13.654],[-3.051,-10.357]],"c":true}]},{"t":100,"s":[{"i":[[0.005,-0.001],[0.18,-8.491],[-0.024,0]],"o":[[-0.005,0.001],[-0.099,4.7],[0.024,0]],"v":[[-223.707,24.648],[-252.463,30.579],[-223.702,24.649]],"c":true}]}]},"nm":"Path 25","hd":false},{"ind":25,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.002,-0.018],[4.376,-11.742],[-21.034,-0.505]],"o":[[-5.002,0.018],[-1,2.682],[21.034,0.505]],"v":[[-8.482,-18.09],[-80.041,-5.651],[-8.996,-16.972]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.533,-0.05],[4.376,-11.742],[-56.9,-1.366]],"o":[[-13.533,0.05],[-1,2.682],[56.9,1.366]],"v":[[-26.888,-20.202],[-133.179,-1.393],[-28.279,-17.178]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.432,-0.002],[4.376,-11.742],[-1.817,-0.044]],"o":[[-0.432,0.002],[-1,2.682],[1.817,0.044]],"v":[[-2.957,-10.802],[-167.52,2.271],[-3.002,-10.706]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0],[4.376,-11.742],[-0.034,-0.001]],"o":[[-0.008,0],[-1,2.682],[0.034,0.001]],"v":[[-201.456,2.646],[-252.679,11.357],[-201.457,2.648]],"c":true}]}]},"nm":"Path 26","hd":false},{"ind":26,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.015,0.648],[9.285,-5.938],[-12.687,-1.577]],"o":[[-1.837,-0.296],[-5.457,3.49],[12.687,1.577]],"v":[[-7.193,-19.109],[-55.539,-18.566],[-8.167,-18.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[10.862,1.752],[9.285,-5.938],[-34.32,-4.266]],"o":[[-4.969,-0.802],[-5.457,3.49],[34.32,4.266]],"v":[[-24.253,-22.959],[-119.714,-21.877],[-26.888,-20.202]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.347,0.056],[9.285,-5.938],[-1.096,-0.136]],"o":[[-0.159,-0.026],[-5.457,3.49],[1.096,0.136]],"v":[[-3.256,-11.254],[-157.719,-22.883],[-3.34,-11.166]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.001],[9.285,-5.938],[-0.021,-0.003]],"o":[[-0.003,0],[-5.457,3.49],[0.021,0.003]],"v":[[-231.204,-25.606],[-251.964,-25.377],[-231.206,-25.604]],"c":true}]}]},"nm":"Path 27","hd":false},{"ind":27,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.393,1.499],[5.601,-5.319],[-6.035,-3.074]],"o":[[-4.393,-1.499],[-2.043,1.94],[7.22,3.678]],"v":[[-5.608,-19.397],[-48.68,-27.903],[-7.508,-19.109]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[11.885,4.055],[5.601,-5.319],[-16.326,-8.316]],"o":[[-11.885,-4.055],[-2.043,1.94],[19.531,9.948]],"v":[[-19.113,-23.736],[-77.851,-34.052],[-24.253,-22.959]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.38,0.13],[5.601,-5.319],[-0.521,-0.266]],"o":[[-0.38,-0.129],[-2.043,1.94],[0.624,0.318]],"v":[[-2.828,-11.723],[-125.77,-43.679],[-2.992,-11.698]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.002],[5.601,-5.319],[-0.01,-0.005]],"o":[[-0.007,-0.002],[-2.043,1.94],[0.012,0.006]],"v":[[-210.701,-60.106],[-244.601,-67.552],[-210.704,-60.106]],"c":true}]}]},"nm":"Path 28","hd":false},{"ind":28,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.221,2.81],[2.362,-11.3],[-20.382,-17.294]],"o":[[-5.221,-2.81],[-1.358,6.576],[20.382,17.294]],"v":[[-7.193,-23.937],[-71.1,-48.972],[-5.293,-19.397]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[14.123,7.602],[4.156,-15.533],[-55.138,-46.784]],"o":[[-14.123,-7.602],[-2.317,8.659],[55.138,46.784]],"v":[[-24.253,-36.018],[-168.703,-94.857],[-19.113,-23.736]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.451,0.243],[3.339,-13.604],[-1.761,-1.494]],"o":[[-0.451,-0.243],[-1.88,7.71],[1.761,1.494]],"v":[[-2.925,-12.804],[-184.078,-101.754],[-2.761,-12.412]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0.005],[1.312,-8.822],[-0.033,-0.028]],"o":[[-0.008,-0.005],[-0.797,5.357],[0.033,0.028]],"v":[[-205.454,-113.613],[-222.203,-118.857],[-205.451,-113.606]],"c":true}]}]},"nm":"Path 29","hd":false},{"ind":29,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.26,4.445],[7.011,-4.124],[-10.385,-10.766]],"o":[[-0.326,-0.199],[-7.011,4.124],[16.897,17.517]],"v":[[-5.801,-24.959],[-56.419,-56.973],[-7.193,-23.937]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[19.64,12.023],[7.011,-4.124],[-28.094,-29.123]],"o":[[-0.881,-0.54],[-7.011,4.124],[45.711,47.385]],"v":[[-20.488,-38.784],[-98.519,-86.459],[-24.253,-36.018]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.627,0.384],[7.011,-4.124],[-0.897,-0.93]],"o":[[-0.028,-0.017],[-7.011,4.124],[1.46,1.513]],"v":[[-2.277,-13.13],[-127.401,-106.145],[-2.397,-13.042]],"c":true}]},{"t":100,"s":[{"i":[[0.012,0.007],[7.011,-4.124],[-0.017,-0.018]],"o":[[-0.001,0],[-7.011,4.124],[0.028,0.029]],"v":[[-164.452,-132.115],[-199.019,-154.959],[-164.454,-132.113]],"c":true}]}]},"nm":"Path 30","hd":false},{"ind":30,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[23.866,20.95],[-0.775,-4.182],[-8.843,-10.116]],"o":[[-23.866,-20.95],[0.799,4.308],[8.843,10.116]],"v":[[-4.127,-25.389],[-47.359,-57.266],[-6.116,-25.275]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[64.562,56.675],[-0.775,-4.182],[-23.921,-27.366]],"o":[[-64.562,-56.675],[0.799,4.308],[23.921,27.366]],"v":[[-15.108,-39.093],[-105.227,-105.674],[-20.488,-38.784]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[2.062,1.81],[-0.775,-4.182],[-0.764,-0.874]],"o":[[-2.062,-1.81],[0.799,4.308],[0.764,0.874]],"v":[[-2.169,-13.514],[-128.217,-124.928],[-2.341,-13.504]],"c":true}]},{"t":100,"s":[{"i":[[0.039,0.034],[-0.775,-4.182],[-0.014,-0.016]],"o":[[-0.039,-0.034],[0.799,4.308],[0.014,0.016]],"v":[[-169.449,-161.115],[-185.227,-172.674],[-169.452,-161.115]],"c":true}]}]},"nm":"Path 31","hd":false},{"ind":31,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.861,0.835],[6.082,-5.676],[-10.296,-14.684]],"o":[[-0.861,-0.835],[-2.893,2.699],[10.296,14.684]],"v":[[-0.366,-23.104],[-55.133,-75.787],[-4.127,-25.389]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.329,2.258],[6.082,-5.676],[-27.852,-39.724]],"o":[[-2.329,-2.258],[-2.893,2.699],[27.852,39.724]],"v":[[-4.933,-32.911],[-79.889,-105.589],[-15.108,-39.093]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.074,0.072],[6.082,-5.676],[-0.889,-1.268]],"o":[[-0.074,-0.072],[-2.893,2.699],[0.889,1.268]],"v":[[-1.214,-13.207],[-103.885,-130.878],[-1.539,-13.404]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.001],[6.082,-5.676],[-0.017,-0.024]],"o":[[-0.001,-0.001],[-2.893,2.699],[0.017,0.024]],"v":[[-120.443,-152.612],[-163.389,-193.589],[-120.449,-152.615]],"c":true}]}]},"nm":"Path 32","hd":false},{"ind":32,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.542,19.181],[3.073,-0.981],[-0.152,-9.722]],"o":[[-3.542,-19.181],[-2.453,0.783],[0.152,9.722]],"v":[[0.539,-22.899],[-14.028,-61.928],[-0.366,-22.788]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.581,51.887],[3.073,-0.981],[-0.412,-26.3]],"o":[[-9.581,-51.887],[-2.453,0.783],[0.412,26.3]],"v":[[-2.483,-33.211],[-31.215,-116.327],[-4.933,-32.911]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.306,1.657],[3.073,-0.981],[-0.013,-0.84]],"o":[[-0.306,-1.657],[-2.453,0.783],[0.013,0.84]],"v":[[-0.517,-14.182],[-44.865,-152.105],[-0.596,-14.172]],"c":true}]},{"t":100,"s":[{"i":[[0.006,0.031],[3.073,-0.981],[0,-0.016]],"o":[[-0.006,-0.031],[-2.453,0.783],[0,0.016]],"v":[[-72.441,-227.612],[-78.715,-240.827],[-72.443,-227.612]],"c":true}]}]},"nm":"Path 33","hd":false},{"ind":33,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.512,3.311],[7.408,-2.515],[0.879,-9.578]],"o":[[-0.512,-3.311],[-4.274,1.451],[-0.879,9.578]],"v":[[1.755,-24.526],[-15.758,-89.049],[0.539,-22.899]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.386,8.956],[7.408,-2.515],[2.377,-25.91]],"o":[[-1.386,-8.956],[-4.274,1.451],[-2.377,25.91]],"v":[[0.805,-37.612],[-23.169,-137.772],[-2.483,-33.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.044,0.286],[7.408,-2.515],[0.076,-0.827]],"o":[[-0.044,-0.286],[-4.274,1.451],[-0.076,0.827]],"v":[[0.051,-14.02],[-30.928,-169.383],[-0.054,-13.879]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.005],[7.408,-2.515],[0.001,-0.016]],"o":[[-0.001,-0.005],[-4.274,1.451],[-0.001,0.016]],"v":[[-36.439,-204.114],[-50.169,-247.772],[-36.441,-204.112]],"c":true}]}]},"nm":"Path 34","hd":false},{"ind":34,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.275,0.477],[4.481,1.632],[2.961,-6.55],[-1.425,0.478]],"o":[[-2.55,-0.954],[-6.936,-2.526],[-1.48,3.275],[1.425,-0.478]],"v":[[5.014,-23.954],[2.623,-65.932],[2.07,-24.842],[3.754,-13.991]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.449,1.291],[4.481,1.632],[8.009,-17.719],[-3.855,1.292]],"o":[[-6.899,-2.581],[-6.936,-2.526],[-4.004,8.859],[3.855,-1.292]],"v":[[8.769,-35.211],[4.357,-117.808],[0.805,-37.612],[5.361,-8.261]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.11,0.041],[4.481,1.632],[0.256,-0.566],[-0.123,0.041]],"o":[[-0.22,-0.082],[-6.936,-2.526],[-0.128,0.283],[0.123,-0.041]],"v":[[0.788,-14.342],[3.064,-156.748],[0.534,-14.419],[0.679,-13.482]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.001],[4.481,1.632],[0.005,-0.011],[-0.002,0.001]],"o":[[-0.004,-0.002],[-6.936,-2.526],[-0.002,0.005],[0.002,-0.001]],"v":[[1.066,-235.113],[-0.143,-253.308],[1.061,-235.114],[1.064,-235.097]],"c":true}]}]},"nm":"Path 35","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,1,0.894,0.947,0.379,1,0.788,0.894,0.522,0.961,0.394,0.72,0.708,0.922,0,0.545,0.865,0.961,0.206,0.508,0.999,1,0.412,0.471,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[-12,-18]},"e":{"a":0,"k":[-123.596,-129.596]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-6.793,2.506]},"a":{"a":0,"k":[-6.793,2.506]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"white splashes precomp","refId":"comp_2","sr":1,"ks":{"p":{"a":0,"k":[243,243,0]},"a":{"a":0,"k":[243,243,0]}},"ao":0,"w":486,"h":486,"ip":-4,"op":99,"st":-5,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"ogonek5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":30,"s":[100]},{"t":45,"s":[0]}]},"p":{"a":0,"k":[241,232.25,0]},"a":{"a":0,"k":[-51,43,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,15.828]},"t":30,"s":[0,0,100]},{"t":45,"s":[151,151,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[164,164]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,1,0.894,0.947,0.379,1,0.788,0.894,0.522,0.961,0.394,0.72,0.708,0.922,0,0.545,0.865,0.961,0.206,0.508,0.999,1,0.412,0.471,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[1,0.5]},"e":{"a":0,"k":[-61.596,-53.096]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 9","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":30,"op":45,"st":-45,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"rose splashes 80%","sr":1,"ks":{"o":{"a":0,"k":80},"p":{"a":0,"k":[283.287,244.6,0]},"a":{"a":0,"k":[40.287,1.6,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.458,2.584],[-1.178,1.927]],"o":[[0,0],[1.178,-1.927]],"v":[[47.396,-2.495],[66.132,8.305]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[17.915,5.472],[-2.495,4.082]],"o":[[0,0],[2.494,-4.082]],"v":[[127.416,14.655],[167.1,37.528]],"c":true}]},{"t":100,"s":[{"i":[[2.922,0.892],[-0.407,0.666]],"o":[[0,0],[0.407,-0.666]],"v":[[231.544,79.714],[238.016,83.445]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-7.371,11.75],[-2.605,-2.954]],"o":[[0,0],[2.605,2.954]],"v":[[-19.417,21.61],[-33.613,50.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.511,26.322],[-5.835,-6.617]],"o":[[0,0],[5.835,6.617]],"v":[[-54.289,78.774],[-86.09,143.637]],"c":true}]},{"t":100,"s":[{"i":[[-2.019,3.219],[-0.714,-0.809]],"o":[[0,0],[0.714,0.809]],"v":[[-120,208.391],[-123.889,216.322]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.272,18.752],[3.489,0]],"o":[[0,0],[-2.919,0]],"v":[[13.337,36.564],[18.266,63.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.5,41.701],[7.758,0]],"o":[[0,0],[-6.491,0]],"v":[[34.44,120.578],[45.401,181.583]],"c":true}]},{"t":100,"s":[{"i":[[1.211,5.316],[0.989,0]],"o":[[0,0],[-0.827,0]],"v":[[49.981,239.625],[51.378,247.402]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.357,10.649],[2.065,-1.671]],"o":[[0,0],[-2.092,1.693]],"v":[[27.785,38.344],[37.752,60.836]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.682,25.21],[4.889,-3.955]],"o":[[0,0],[-4.953,4.007]],"v":[[73.965,124.33],[97.561,177.576]],"c":true}]},{"t":100,"s":[{"i":[[1.068,2.124],[0.412,-0.333]],"o":[[0,0],[-0.417,0.338]],"v":[[112.746,219.25],[114.734,223.735]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.125,6.764],[2.818,-3.288]],"o":[[0,0],[-1.952,2.278]],"v":[[39.186,19.394],[56.431,42.171]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[16.508,15.671],[6.529,-7.617]],"o":[[0,0],[-4.523,5.277]],"v":[[103.804,73.868],[143.76,126.64]],"c":true}]},{"t":100,"s":[{"i":[[1.631,1.548],[0.645,-0.753]],"o":[[0,0],[-0.447,0.521]],"v":[[178.352,168.75],[182.3,173.964]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.003,-18.483],[-2.995,-2.598]],"o":[[0,0],[2.346,2.035]],"v":[[19.896,-54.149],[37.88,-77.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[31.33,-41.355],[-6.701,-5.813]],"o":[[0,0],[5.249,4.553]],"v":[[52.828,-125.71],[93.066,-177.974]],"c":true}]},{"t":100,"s":[{"i":[[3.858,-5.092],[-0.825,-0.716]],"o":[[0,0],[0.646,0.561]],"v":[[119.615,-214],[124.57,-220.435]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.092,-13.223],[3.225,-0.461]],"o":[[0,0],[-3.225,0.461]],"v":[[-11.7,-53.501],[-23.447,-74.576]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-13.694,-29.721],[7.248,-1.036]],"o":[[0,0],[-7.248,1.036]],"v":[[-33.744,-123.528],[-60.149,-170.902]],"c":true}]},{"t":100,"s":[{"i":[[-1.641,-3.562],[0.869,-0.124]],"o":[[0,0],[-0.869,0.124]],"v":[[-92.793,-229.25],[-95.958,-234.928]],"c":true}]}]},"nm":"Path 7","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.403921574354,0.454901963472,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 7","hd":false},{"ty":"tr","p":{"a":0,"k":[40.287,1.6]},"a":{"a":0,"k":[40.287,1.6]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"rose splashes 40%","sr":1,"ks":{"o":{"a":0,"k":40},"p":{"a":0,"k":[255.462,250.532,0]},"a":{"a":0,"k":[12.462,7.532,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.498,-1.717],[-2.802,-3.967]],"o":[[-1.32,0.907],[0,0]],"v":[[-27.909,-69.864],[-23.485,-62.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[5.583,-3.836],[-6.261,-8.864]],"o":[[-2.949,2.026],[0,0]],"v":[[-77.365,-168.395],[-67.479,-152.872]],"c":true}]},{"t":100,"s":[{"i":[[0.692,-0.476],[-0.776,-1.099]],"o":[[-0.366,0.251],[0,0]],"v":[[-104.452,-204.425],[-103.226,-202.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.758,-1.202],[3.089,-1.172]],"o":[[0,0],[-3.089,1.172]],"v":[[-40.584,-41.866],[-51.165,-45.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-10.775,-2.722],[6.996,-2.654]],"o":[[0,0],[-6.996,2.654]],"v":[[-111.836,-92.023],[-135.799,-100.881]],"c":true}]},{"t":100,"s":[{"i":[[-1.235,-0.312],[0.802,-0.304]],"o":[[0,0],[-0.802,0.304]],"v":[[-194.867,-116.25],[-197.612,-117.265]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.418,17.711],[-4.713,-1.091]],"o":[[0,0],[2.758,0.638]],"v":[[-22.297,35.041],[-30.452,64.628]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.835,40.938],[-10.895,-2.522]],"o":[[0,0],[6.375,1.475]],"v":[[-62.088,115.52],[-80.938,183.907]],"c":true}]},{"t":100,"s":[{"i":[[-1.49,4.112],[-1.094,-0.253]],"o":[[0,0],[0.64,0.148]],"v":[[-89,203.172],[-90.893,210.041]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.125,2.009],[-1.205,-2.41]],"o":[[-0.644,-1.15],[1.205,2.41]],"v":[[60.208,34.488],[58.28,36.577]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.266,4.046],[-2.428,-4.856]],"o":[[-1.297,-2.316],[2.428,4.856]],"v":[[161.46,114.372],[157.576,118.58]],"c":true}]},{"t":100,"s":[{"i":[[0.457,0.815],[-0.489,-0.978]],"o":[[-0.261,-0.467],[0.489,0.978]],"v":[[178.425,143.467],[177.643,144.315]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.378,1.888],[-0.054,-1.294]],"o":[[-0.244,-1.218],[0.054,1.294]],"v":[[57.201,-37.513],[53.318,-36.704]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.721,3.602],[-0.103,-2.47]],"o":[[-0.465,-2.323],[0.103,2.47]],"v":[[152.987,-80.688],[145.577,-79.144]],"c":true}]},{"t":100,"s":[{"i":[[0.177,0.884],[-0.025,-0.606]],"o":[[-0.114,-0.57],[0.025,0.606]],"v":[[207.62,-96.485],[205.801,-96.106]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.033,1.484],[-0.082,-1.894]],"o":[[0.031,-1.392],[0.082,1.894]],"v":[[53.595,-30.294],[48.408,-29.669]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-0.074,3.328],[-0.185,-4.247]],"o":[[0.069,-3.121],[0.185,4.247]],"v":[[143.792,-61.221],[132.159,-59.821]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,0.404],[-0.022,-0.516]],"o":[[0.008,-0.379],[0.022,0.516]],"v":[[216.285,-76.436],[214.873,-76.266]],"c":true}]}]},"nm":"Path 6","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.403921574354,0.454901963472,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 6","hd":false},{"ty":"tr","p":{"a":0,"k":[12.462,7.532]},"a":{"a":0,"k":[12.462,7.532]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"violet","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[33.333]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":70,"s":[0]}]},"p":{"a":0,"k":[250.172,221.61,0]},"a":{"a":0,"k":[7.172,-21.39,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.424,-5.071],[2.653,-10.693],[8.493,-0.25],[-0.281,-21.575],[8.206,2.479],[-9.071,-18.319],[10.163,-0.826],[-8.504,-13.367],[7.925,-6.142],[-9.44,-13.344],[2.854,-8.942],[-21.641,-24.17],[6.753,-1.287],[-6.374,-4.022],[10.533,-2.098],[-13.32,-3.511],[-1.839,-6.483],[-21.075,-3.827],[-5.954,-6.816],[-11.932,-2.571],[3.257,-17.575],[-38.942,9.134],[-0.325,-7.706],[-8.742,1.73],[-8.801,-7.785],[-30.134,14.717],[-9.382,-4.129],[-16.279,6.661],[1.088,-8.515],[-7.687,7.097],[-6.012,-8.868],[-10.651,19.166],[-10.35,0.696],[-9.579,21.376],[-8.09,4.605],[-5.131,22.602],[-3.808,-4.758],[-0.748,8.961],[-7.254,-2.788],[2.909,7.968],[-7.635,-1.047],[9.08,17.754],[-7.507,3.193],[9.997,10.579],[-6.351,4.692],[9.781,8.968],[0.178,6.817],[17.454,12.482],[0.03,6.973],[12.265,1.257],[-5.162,4.439],[17.018,1.365],[-5.218,7.12],[24.328,-1.527],[-3.121,9.666],[14.883,-6.778],[10.864,5.993],[11.338,-8.563],[5.168,9.097],[9.336,-10.339],[5.422,9.555],[17.401,-17.591],[8.409,7.467],[2.648,-7.068],[8.104,5.903],[5.776,-17.779],[7.39,-3.513],[1.572,-7.178],[9.221,3.529],[4.343,-6.683]],"o":[[-7.125,5.075],[-0.627,-20.281],[-8.492,0.25],[-7.605,-11.419],[-6.68,-3.509],[-2.4,-2.857],[-8.37,0.053],[-2.455,-2.437],[-7.318,5.151],[-25.313,-18.266],[-0.866,7.957],[-15.111,-8.219],[-6.731,1.147],[0,0],[-8.775,1.322],[-36.623,-3.316],[2.35,6.725],[-4.284,0.119],[5.62,5.119],[0,0],[-0.325,7.953],[-14.317,6.526],[0.333,6.979],[-5.382,3.713],[7.32,4.607],[-4.424,3.372],[7.613,2.532],[-10.42,10.905],[-1.668,7.104],[-2.075,4.92],[4.11,6.36],[-1.424,4.903],[7.699,-1.121],[0,0],[8.176,-4.621],[-1.052,23.086],[4.14,4.652],[5.615,9.885],[7.25,2.786],[5.203,5.546],[7.441,1.093],[15.761,17.732],[7.507,-3.193],[5.904,3.732],[6.351,-4.692],[9.84,5.408],[-0.622,-6.552],[19.337,4.71],[0.329,-7.351],[6.418,-1.574],[5.14,-4.409],[27.522,-2.876],[5.215,-7.117],[4.426,-6.277],[2.875,-9.309],[1.399,-5.562],[-7.079,-5.34],[4.34,-9.001],[-5.002,-8.493],[13.638,-18.255],[-5.312,-9.225],[0.333,-7.822],[-7.414,-6.268],[3.497,-13.498],[-8.104,-5.903],[-0.973,-5.144],[-8.335,3.293],[-2.994,-1.674],[-9.108,-3.513],[-0.006,-3.457]],"v":[[5.228,-95.512],[7.462,-28.929],[-2.195,-87.293],[6.416,-28.961],[-31.261,-81.602],[2.547,-32.204],[-43.849,-81.375],[0.273,-32.419],[-44.643,-71.2],[-1.483,-31.501],[-68.757,-71.437],[-0.116,-26.024],[-42.303,-41.201],[-2.32,-26.028],[-60.656,-35.365],[-6.28,-25.891],[-67.569,-24.781],[-6.096,-24.791],[-61.84,-18.285],[-3.524,-23.253],[-83.167,12.168],[-3.472,-21.52],[-43.616,2.576],[-3.348,-19.306],[-64.141,31.565],[0.002,-18.262],[-50.895,27.819],[3.739,-17.431],[-29.038,27.111],[2.554,-14.294],[-16.457,46.001],[4.192,-11.614],[-10.643,61.853],[6.528,-12.171],[7.719,52.216],[8.895,-14.393],[13.275,34.112],[10.222,-12.355],[26.825,31.666],[12.417,-11.04],[35.999,36.579],[14.675,-10.481],[49.25,44.887],[15.923,-11.135],[54.41,30.884],[17.017,-12.053],[59.976,24.143],[15.598,-15.029],[60.134,6.365],[15.406,-16.076],[56.972,-8.479],[17.766,-17.986],[90.136,-9.191],[19.955,-19.743],[79.759,-35.208],[20.474,-22.64],[63.92,-44.118],[18.736,-24.334],[63.006,-55.052],[17.431,-26.232],[77.149,-67.057],[16.295,-27.947],[47.537,-73.383],[14.878,-29.037],[41.274,-77.714],[13.733,-29.91],[25.971,-72.901],[12.306,-29.047],[19.524,-85.462],[9.122,-30.564]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.849,0.01],[7.184,-28.957],[3.052,-1.273],[-0.761,-58.423],[7.839,-5.353],[-24.563,-49.607],[9.192,-3.975],[-23.029,-36.198],[4.861,-7.946],[-25.563,-36.135],[12.25,-6.125],[-58.602,-65.452],[0.423,-3.502],[-17.26,-10.89],[11.497,-5.096],[-36.071,-9.509],[-2.201,-1.041],[-57.07,-10.364],[-1.998,-10.013],[-32.312,-6.962],[9.36,-30.715],[-105.454,24.735],[0.047,-4.178],[-23.672,4.686],[-7.461,-15.968],[-81.601,39.854],[-8.157,-7.347],[-44.083,18.039],[-3.026,-7.306],[-20.815,19.217],[-8.186,-10.792],[-28.842,51.901],[-12.022,-1.924],[-25.94,57.885],[-10.365,1.613],[-13.894,61.205],[-1.581,0.481],[-2.025,24.266],[-5.413,1.006],[7.876,21.576],[-4.573,1.132],[24.589,48.078],[-6.41,1.365],[27.072,28.648],[-4.858,2.346],[26.485,24.286],[-6.451,3.968],[47.266,33.8],[-2.771,2.906],[33.213,3.403],[-1.167,1.667],[46.083,3.696],[-1.333,9],[65.879,-4.134],[-5.083,7.361],[40.303,-18.354],[15.513,2.68],[30.702,-23.187],[1.943,7.096],[25.282,-27.999],[2.5,7.5],[47.12,-47.637],[6.155,7.421],[7.17,-19.139],[5.169,3.176],[15.641,-48.146],[3.103,0.727],[4.257,-19.437],[6.927,0.949],[11.76,-18.098]],"o":[[-5.323,-0.006],[-1.697,-54.919],[-3.052,1.273],[-20.594,-30.923],[-3.728,2.546],[-6.498,-7.737],[-4.346,1.879],[-6.647,-6.6],[-3.22,5.264],[-68.548,-49.463],[-6.872,3.436],[-40.921,-22.258],[-0.377,3.121],[0,0],[-6.756,2.995],[-99.173,-8.979],[3.585,1.695],[-11.602,0.322],[1.08,5.412],[0,0],[-1.42,4.661],[-38.77,17.671],[-0.025,2.213],[-14.575,10.054],[3.439,7.359],[-11.98,9.131],[3.354,3.021],[-28.218,29.53],[1.451,3.503],[-5.619,13.324],[3.041,4.009],[-3.855,13.277],[4.839,0.774],[0,0],[10.589,-1.648],[-2.849,62.516],[2.488,-0.757],[15.206,26.767],[5.413,-1.006],[14.09,15.019],[4.055,-1.004],[42.68,48.017],[6.41,-1.365],[15.989,10.107],[4.858,-2.346],[26.647,14.644],[5.257,-3.234],[52.364,12.754],[3.745,-3.927],[17.38,-4.263],[1.115,-1.592],[74.53,-7.789],[1.333,-9],[11.985,-16.998],[4.419,-6.4],[3.79,-15.061],[-5.258,-0.908],[11.752,-24.375],[-1.495,-5.458],[36.932,-49.434],[-2.202,-6.607],[0.901,-21.183],[-3.464,-4.176],[9.469,-36.552],[-5.169,-3.176],[-2.634,-13.929],[-5.658,-1.325],[-8.107,-4.533],[-6.628,-0.908],[-0.017,-9.362]],"v":[[3.02,-162.999],[8.243,-41.492],[-9.448,-140.273],[5.428,-41.577],[-66.581,-136.474],[-4.982,-50.303],[-94.937,-141.294],[-11.103,-50.883],[-91.631,-117.558],[-15.827,-48.412],[-150.75,-126.625],[-12.148,-33.673],[-76.677,-54.762],[-18.079,-33.683],[-125.935,-48.926],[-28.737,-33.315],[-144.516,-27.935],[-28.241,-30.355],[-129.957,-16.393],[-21.32,-26.218],[-189.443,52.219],[-21.179,-21.553],[-84.613,22.128],[-20.845,-15.595],[-143.927,91.798],[-11.831,-12.788],[-109.552,77.33],[-1.776,-10.549],[-60.574,69.369],[-4.963,-2.109],[-41.055,117.272],[-0.555,5.102],[-30.196,155.83],[5.729,3.604],[8.665,130.425],[12.099,-2.376],[18.32,81.416],[15.669,3.108],[41.962,76.131],[21.577,6.648],[62.49,91.451],[27.654,8.15],[95.923,118.365],[31.011,6.393],[102.975,84.18],[33.954,3.923],[112.957,71.446],[30.136,-4.087],[107.438,31.594],[29.62,-6.903],[94.5,0.667],[35.97,-12.045],[183.167,5],[41.86,-16.772],[147.562,-47.507],[43.258,-24.567],[106.809,-61.148],[38.582,-29.125],[103.057,-80.596],[35.068,-34.233],[141.167,-109],[32.012,-38.849],[76.865,-113.118],[28.198,-41.782],[66.503,-119.657],[25.119,-44.132],[37.324,-105.068],[21.279,-41.807],[29.931,-135.604],[12.71,-45.889]],"c":true}]},{"t":100,"s":[{"i":[[6.52,-0.499],[0,0],[7.552,-1.773],[0,0],[7.419,-3.974],[0,0],[5.063,-2.794],[0,0],[3.869,-4.058],[0,0],[3.25,-5.125],[0,0],[2.323,-7.262],[0,0],[1.065,-7.426],[0,0],[-0.016,-6.935],[0,0],[0.043,-8.393],[0,0],[-1.943,-5.281],[0,0],[-4.613,-6.872],[0,0],[-4.427,-4.702],[0,0],[-5.552,-5.67],[0,0],[-7.074,-5.131],[0,0],[-7.555,-2.728],[0,0],[-8.696,0.33],[0,0],[-5.835,-0.075],[0,0],[-5.179,-0.584],[0,0],[-7.538,4.131],[0,0],[-4.51,1.951],[0,0],[-7.077,4.865],[0,0],[-5.025,3.68],[0,0],[-5.043,6.946],[0,0],[-2.062,4.094],[0,0],[-1.5,7.666],[0,0],[-1.333,7.5],[0,0],[-0.438,6.493],[0,0],[2.309,7.852],[0,0],[1.057,4.404],[0,0],[1.667,6.5],[0,0],[6.365,6.382],[0,0],[3.503,2.843],[0,0],[5.324,3.432],[0,0],[2.931,0.896],[0,0]],"o":[[-6.521,0.499],[0,0],[-7.552,1.773],[0,0],[-7.419,3.974],[0,0],[-5.063,2.794],[0,0],[-3.869,4.058],[0,0],[-3.25,5.125],[0,0],[-2.323,7.262],[0,0],[-1.065,7.426],[0,0],[0.016,6.935],[0,0],[-0.043,8.393],[0,0],[1.943,5.281],[0,0],[4.613,6.872],[0,0],[4.427,4.702],[0,0],[5.552,5.67],[0,0],[7.074,5.131],[0,0],[7.555,2.728],[0,0],[8.696,-0.33],[0,0],[5.835,0.075],[0,0],[5.18,0.584],[0,0],[7.538,-4.131],[0,0],[4.51,-1.951],[0,0],[7.077,-4.865],[0,0],[5.025,-3.68],[0,0],[5.043,-6.946],[0,0],[2.062,-4.094],[0,0],[1.5,-7.666],[0,0],[1.333,-7.5],[0,0],[0.438,-6.493],[0,0],[-2.309,-7.852],[0,0],[-1.057,-4.404],[0,0],[-1.667,-6.5],[0,0],[-6.365,-6.382],[0,0],[-3.503,-2.843],[0,0],[-5.324,-3.432],[0,0],[-2.931,-0.896],[0,0]],"v":[[0.021,-238.999],[6.522,-22.25],[-22.948,-238.773],[6.486,-22.251],[-111.081,-205.974],[6.353,-22.363],[-136.437,-188.794],[6.274,-22.37],[-151.131,-175.058],[6.214,-22.339],[-176.75,-144.125],[6.261,-22.15],[-199.177,-102.262],[6.185,-22.15],[-209.935,-65.926],[6.048,-22.145],[-215.016,-31.435],[6.055,-22.107],[-215.457,-11.893],[6.143,-22.054],[-201.443,57.219],[6.145,-21.994],[-194.113,74.128],[6.149,-21.918],[-171.427,112.298],[6.265,-21.882],[-163.052,122.83],[6.394,-21.853],[-126.074,156.869],[6.353,-21.745],[-65.055,189.772],[6.41,-21.653],[-38.196,196.33],[6.49,-21.672],[9.165,202.425],[6.572,-21.748],[31.821,199.416],[6.618,-21.678],[80.962,187.631],[6.693,-21.633],[105.49,178.451],[6.771,-21.613],[127.923,167.865],[6.814,-21.636],[157.975,144.18],[6.852,-21.668],[174.957,125.946],[6.803,-21.77],[204.438,84.094],[6.796,-21.806],[223.5,34.166],[6.878,-21.872],[227.667,12],[6.953,-21.933],[227.062,-61.507],[6.971,-22.033],[213.309,-104.148],[6.911,-22.091],[198.057,-137.596],[6.866,-22.157],[195.667,-144],[6.827,-22.216],[142.865,-200.118],[6.778,-22.254],[122.503,-211.157],[6.739,-22.284],[84.324,-230.568],[6.689,-22.254],[51.431,-240.604],[6.58,-22.306]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":80},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.001,0.467,0.031,0.541,0.707,0.435,0.108,0.561,1,0.404,0.184,0.58]}},"s":{"a":0,"k":[4,-20]},"e":{"a":0,"k":[177.39,-20]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"picies2","sr":1,"ks":{"p":{"a":0,"k":[257.33,185.73,0]},"a":{"a":0,"k":[-265.67,-10.27,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,-0.35],[53.84,0],[-19.93,11.56],[-1,-40.01]],"o":[[0,50.03],[-31.67,-34.87],[39.26,-0.87],[0.01,0.35]],"v":[[-168.19,-10.27],[-265.67,80.32],[-266.5,-79.82],[-168.2,-11.32]],"c":true}]},{"t":35,"s":[{"i":[[0,-0.004],[0.613,0],[-0.227,0.132],[-0.011,-0.455]],"o":[[0,0.569],[-0.36,-0.397],[0.447,-0.01],[0,0.004]],"v":[[-145.03,70.7],[-146.14,71.731],[-146.149,69.909],[-145.03,70.688]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.5,-7],[15.65,-61.05],[-53.84,0]],"o":[[0,0],[0,-50.03],[0,0]],"v":[[-266.5,-79.82],[-363.15,-10.27],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.013,-0.036],[0.08,-0.312],[-0.275,0]],"o":[[0,0],[0,-0.256],[0,0]],"v":[[-383.165,-126.689],[-383.659,-126.333],[-383.161,-126.797]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.6,-49.55],[39.26,-0.87],[0,0]],"o":[[-1,-40.01],[-2.5,-7],[53.46,0]],"v":[[-168.2,-11.32],[-266.5,-79.82],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.018,-1.483],[1.175,-0.026],[0,0]],"o":[[-0.03,-1.198],[-0.075,-0.21],[1.6,0]],"v":[[-162.091,-102.75],[-165.034,-104.8],[-165.009,-105.43]],"c":true}]}]},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0,0.690196078431,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-31.67,-34.87],[0,50.03],[0,0]],"o":[[-53.84,0],[15.65,-61.05],[-19.93,11.56]],"v":[[-265.67,80.32],[-363.15,-10.27],[-266.5,-79.82]],"c":true}]},{"t":35,"s":[{"i":[[-0.099,-0.109],[0,0.156],[0,0]],"o":[[-0.168,0],[0.049,-0.191],[-0.062,0.036]],"v":[[-415.258,90.5],[-415.562,90.217],[-415.26,90]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0.529411764706,0,0.486274539723,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-314.41,0.25]},"a":{"a":0,"k":[-314.41,0.25]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0,0.274509803922,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":30,"op":35,"st":2,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"picies","sr":1,"ks":{"p":{"a":0,"k":[255,191.406,0]},"a":{"a":0,"k":[0,45.406,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-14.81,-13.46],[11.95,21.92],[1.11,16.11],[-22.44,-7.84],[-11.16,1.15]],"o":[[-22.91,4.11],[-6.67,-12.23],[5.79,24.31],[9.97,3.48],[-0.13,0.68]],"v":[[10.978,133.929],[-49.332,107.219],[-76.002,35.549],[-29.982,86.199],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[0.042,0.009],[-0.025,-0.045],[-0.002,-0.033],[0.03,0.046],[0.013,0.008]],"o":[[0.048,-0.009],[0.014,0.025],[-0.012,-0.05],[-0.009,-0.013],[-0.02,-0.013]],"v":[[-71.68,195.17],[-71.555,195.225],[-71.5,195.374],[-71.582,195.231],[-71.615,195.198]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-20.7,35.34],[6.66,-12.23],[15.67,-2.82],[0,0],[-0.13,0.68]],"o":[[-1.11,16.11],[-8.18,15],[0,0],[-14.81,-13.46],[25.91,-2.68]],"v":[[75.998,35.549],[49.338,107.219],[10.988,133.929],[10.978,133.929],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[-0.149,0.254],[0.048,-0.088],[0.112,-0.02],[0,0],[-0.001,0.005]],"o":[[-0.008,0.116],[-0.059,0.108],[0,0],[0.129,-0.1],[0.093,-0.157]],"v":[[73.967,180.898],[73.775,181.412],[73.5,181.604],[73.5,181.604],[73.665,181.395]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[4.69,-50.46],[25.91,-2.68],[9.97,3.48],[-5.65,29.96],[19.36,23.12]],"o":[[-20.7,35.34],[-11.16,1.15],[25.15,-11.39],[3.71,-19.59],[38.33,2.51]],"v":[[75.998,35.549],[2.028,89.909],[-29.982,86.199],[26.648,21.049],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.019,-0.202],[0.104,-0.011],[0.04,0.014],[-0.023,0.12],[0.077,0.092]],"o":[[-0.083,0.141],[-0.045,0.005],[0.101,-0.046],[0.015,-0.078],[0.153,0.01]],"v":[[154.424,34.876],[154.128,35.094],[154,35.079],[154.226,34.818],[154.144,34.559]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[3.71,-19.59],[21,-18.31],[-37.83,-2.49]],"o":[[-10.36,-22.61],[4.41,-44.16],[19.36,23.12]],"v":[[26.648,21.049],[-76.002,18.639],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.012,-0.061],[0.066,-0.057],[-0.118,-0.008]],"o":[[-0.032,-0.071],[0.014,-0.138],[0.06,0.072]],"v":[[1.192,-97.167],[0.872,-97.174],[1.128,-97.369]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-10.36,-22.61],[25.15,-11.39],[5.79,24.31],[-0.53,5.3]],"o":[[-5.65,29.96],[-22.44,-7.84],[-0.55,-5.97],[21,-18.31]],"v":[[26.648,21.049],[-29.982,86.199],[-76.002,35.549],[-76.002,18.639]],"c":true}]},{"t":36,"s":[{"i":[[-0.156,-0.229],[0.005,-0.198],[0.125,0.524],[-0.011,0.114]],"o":[[0.175,0.257],[-0.483,-0.169],[-0.012,-0.129],[0.113,0.148]],"v":[[-149.053,15.247],[-148.42,15.955],[-149.412,14.864],[-149.412,14.5]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0,0.690196078431,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 5","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0,0.274509803922,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,45.406]},"a":{"a":0,"k":[0,45.406]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":31,"op":36,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Null 3","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[256]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":21,"s":[257.445]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[251.735]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[262.162]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[256.384]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[256.888]},{"t":29,"s":[254.404]}]},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[198]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[190.425]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[197.133]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[186.523]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[194.791]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[186.058]},{"t":29,"s":[194.761]}]}},"a":{"a":0,"k":[50,50,0]}},"ao":0,"ip":20,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"Null 19","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[50,108,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[50,1,0]}]}},"ao":0,"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"blik","parent":6,"sr":1,"ks":{"p":{"a":0,"k":[20.897,-88.771,0]},"a":{"a":0,"k":[19.25,-92,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[98.282,62.507],[32.976,130.655],[10.893,-24.206]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[109.918,84.947],[41.535,169.497],[12.437,7.17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":8},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-131]},{"t":30,"s":[-5]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.571},"lc":2,"lj":2,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":2}},{"n":"g","nm":"gap","v":{"a":0,"k":12}},{"n":"d","nm":"dash2","v":{"a":0,"k":297}},{"n":"o","nm":"offset","v":{"a":0,"k":0}}],"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"rocket_cap","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,-33.889,0]},"a":{"a":0,"k":[0,-33.889,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[87.389,21.435],[22.083,89.583],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[97.776,39.412],[29.392,123.961],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0,0.690196078431,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[0,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[0,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[48.264,0],[0,40.168],[0,0]],"o":[[0,40.168],[-48.264,0],[0,-61.227],[0,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[53.838,0],[0,50.031],[0,0]],"o":[[0,50.031],[-53.838,0],[0,-77.778],[0,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.529411764706,0,0.486274539723,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-105]},"a":{"a":0,"k":[0,-105]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[-44.428,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[44.428,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-57.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-40.168],[48.264,0],[0,40.168],[-48.264,0]],"o":[[0,40.168],[-48.264,0],[0,-40.168],[48.264,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-51.296]],"c":true}]},{"t":30,"s":[{"i":[[0,-50.031],[53.838,0],[0,50.031],[-53.838,0]],"o":[[0,50.031],[-53.838,0],[0,-50.031],[53.838,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-51.176]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0,0.690196078431,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-33.889]},"a":{"a":0,"k":[0,-33.889]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.3,0,0.276439771465,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"rocket body 2 outlines","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0,0.274509803922,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":12},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"rocket body 2 shadows","parent":10,"sr":1,"ks":{"o":{"a":0,"k":50},"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0.667,-19.333],[7.333,22.167],[0,0]],"o":[[0,0],[0.167,0.667],[-3.217,-9.726],[0,0]],"v":[[-13.222,-18.222],[-12.667,177.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[0.167,-11.222],[18.833,29.278],[1.111,16.111]],"o":[[-1.111,16.111],[-15.833,-1.222],[-7.532,-11.709],[0,0]],"v":[[8,37.056],[7.333,133.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.3,0,0.274509803922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"lines2","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[-4.5,135.446,0]},"a":{"a":0,"k":[-4.5,135.446,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,23.25],[0,0],[-72.25,-0.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-66,-10.75],[65.25,58.5],[66.5,12.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[65.75,25],[68.5,-17]],"c":true}]},{"t":10,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[68.25,-15],[68.5,-17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-71.75,9],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-65,33.75],[-62.5,74.75],[60.75,137],[62.5,98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-66.5,2.75],[-65,41.25],[61.75,99],[65,63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[26,30.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-66,19.75],[62.75,70.5],[68,37]],"c":true}]},{"t":15,"s":[{"i":[[26,30.25],[0,0],[-54.75,16],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-65.5,15.25],[65.75,49],[71,14]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-56.25,160.5],[-56,160.5],[49.25,167.75],[49.75,168]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-54.5,154.25],[-54.25,154.25],[43,161.5],[43.5,161.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-53.75,148],[-53.5,148],[42.25,155.5],[42.75,155.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[17.5,26],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-52.5,136.25],[-52.75,136.25],[42.25,147.75],[42.5,147.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-57.25,102.5],[-55,120.25],[43.25,137.5],[44,133.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-59.25,89.5],[-54.25,106.75],[42.5,128],[48,118.75]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-58.5,71.75],[-53.5,89],[43.25,110.25],[48.75,101]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-58.5,158.5],[-58.25,158.5],[53.5,166],[54,165]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-57.25,147],[-57.25,147.5],[50.5,160],[50,161]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[24.25,45.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-60.5,106.5],[-58.75,138.5],[51,150],[51.25,149.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[24.25,45.5],[0,0],[-54.5,29.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-62.5,78],[-58.25,106.75],[49,141.75],[53.5,124.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,67.5],[-59.5,89.75],[50,121.5],[54.5,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,81.25],[52.25,106.5],[57.25,81]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,70.5],[56.5,84.75],[57.25,81]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-47,36.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.5,40.25]],"v":[[-61.5,114.75],[-59,155.75],[63.25,158],[63.5,157.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-55,45.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-62,77.5],[-60.75,112.25],[60.75,151.25],[59.5,132.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[25,44.25],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-64.25,50.75],[-60.75,80.5],[58.25,128],[60.75,101.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[25,39],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-65.5,33.75],[-63.75,59.5],[59,101.75],[61.5,76.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,49],[61,82.75],[63.75,62.25]],"c":true}]},{"t":25,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,54.75],[62.25,76.25],[63.75,62.25]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725490196,0.81568627451,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"rocket body","parent":4,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0,0.690196078431,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"t":31,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":4,"op":31,"st":4,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[255,394,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[258,356,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[255,327,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[261,292,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":6,"op":33,"st":6,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"t":28,"s":[256.5,371.5,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"t":28,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":8,"op":28,"st":8,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":29,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"t":29,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":2,"op":29,"st":2,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[234,298,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[259,328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[239,262,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[264,326,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":34,"st":0,"bm":0}]},{"id":"comp_5","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"picies2","sr":1,"ks":{"p":{"a":0,"k":[257.33,185.73,0]},"a":{"a":0,"k":[-265.67,-10.27,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,-0.35],[53.84,0],[-19.93,11.56],[-1,-40.01]],"o":[[0,50.03],[-31.67,-34.87],[39.26,-0.87],[0.01,0.35]],"v":[[-168.19,-10.27],[-265.67,80.32],[-266.5,-79.82],[-168.2,-11.32]],"c":true}]},{"t":35,"s":[{"i":[[0,-0.004],[0.613,0],[-0.227,0.132],[-0.011,-0.455]],"o":[[0,0.569],[-0.36,-0.397],[0.447,-0.01],[0,0.004]],"v":[[-145.03,70.7],[-146.14,71.731],[-146.149,69.909],[-145.03,70.688]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.5,-7],[15.65,-61.05],[-53.84,0]],"o":[[0,0],[0,-50.03],[0,0]],"v":[[-266.5,-79.82],[-363.15,-10.27],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.013,-0.036],[0.08,-0.312],[-0.275,0]],"o":[[0,0],[0,-0.256],[0,0]],"v":[[-383.165,-126.689],[-383.659,-126.333],[-383.161,-126.797]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.6,-49.55],[39.26,-0.87],[0,0]],"o":[[-1,-40.01],[-2.5,-7],[53.46,0]],"v":[[-168.2,-11.32],[-266.5,-79.82],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.018,-1.483],[1.175,-0.026],[0,0]],"o":[[-0.03,-1.198],[-0.075,-0.21],[1.6,0]],"v":[[-162.091,-102.75],[-165.034,-104.8],[-165.009,-105.43]],"c":true}]}]},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898039275525,0.898039275525,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-31.67,-34.87],[0,50.03],[0,0]],"o":[[-53.84,0],[15.65,-61.05],[-19.93,11.56]],"v":[[-265.67,80.32],[-363.15,-10.27],[-266.5,-79.82]],"c":true}]},{"t":35,"s":[{"i":[[-0.099,-0.109],[0,0.156],[0,0]],"o":[[-0.168,0],[0.049,-0.191],[-0.062,0.036]],"v":[[-415.258,90.5],[-415.562,90.217],[-415.26,90]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0.807843197093,0.643137254902,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-314.41,0.25]},"a":{"a":0,"k":[-314.41,0.25]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.647058823529,0.305882352941,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":30,"op":35,"st":2,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"picies","sr":1,"ks":{"p":{"a":0,"k":[255,191.406,0]},"a":{"a":0,"k":[0,45.406,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-14.81,-13.46],[11.95,21.92],[1.11,16.11],[-22.44,-7.84],[-11.16,1.15]],"o":[[-22.91,4.11],[-6.67,-12.23],[5.79,24.31],[9.97,3.48],[-0.13,0.68]],"v":[[10.978,133.929],[-49.332,107.219],[-76.002,35.549],[-29.982,86.199],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[0.042,0.009],[-0.025,-0.045],[-0.002,-0.033],[0.03,0.046],[0.013,0.008]],"o":[[0.048,-0.009],[0.014,0.025],[-0.012,-0.05],[-0.009,-0.013],[-0.02,-0.013]],"v":[[-71.68,195.17],[-71.555,195.225],[-71.5,195.374],[-71.582,195.231],[-71.615,195.198]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-20.7,35.34],[6.66,-12.23],[15.67,-2.82],[0,0],[-0.13,0.68]],"o":[[-1.11,16.11],[-8.18,15],[0,0],[-14.81,-13.46],[25.91,-2.68]],"v":[[75.998,35.549],[49.338,107.219],[10.988,133.929],[10.978,133.929],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[-0.149,0.254],[0.048,-0.088],[0.112,-0.02],[0,0],[-0.001,0.005]],"o":[[-0.008,0.116],[-0.059,0.108],[0,0],[0.129,-0.1],[0.093,-0.157]],"v":[[73.967,180.898],[73.775,181.412],[73.5,181.604],[73.5,181.604],[73.665,181.395]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[4.69,-50.46],[25.91,-2.68],[9.97,3.48],[-5.65,29.96],[19.36,23.12]],"o":[[-20.7,35.34],[-11.16,1.15],[25.15,-11.39],[3.71,-19.59],[38.33,2.51]],"v":[[75.998,35.549],[2.028,89.909],[-29.982,86.199],[26.648,21.049],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.019,-0.202],[0.104,-0.011],[0.04,0.014],[-0.023,0.12],[0.077,0.092]],"o":[[-0.083,0.141],[-0.045,0.005],[0.101,-0.046],[0.015,-0.078],[0.153,0.01]],"v":[[154.424,34.876],[154.128,35.094],[154,35.079],[154.226,34.818],[154.144,34.559]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[3.71,-19.59],[21,-18.31],[-37.83,-2.49]],"o":[[-10.36,-22.61],[4.41,-44.16],[19.36,23.12]],"v":[[26.648,21.049],[-76.002,18.639],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.012,-0.061],[0.066,-0.057],[-0.118,-0.008]],"o":[[-0.032,-0.071],[0.014,-0.138],[0.06,0.072]],"v":[[1.192,-97.167],[0.872,-97.174],[1.128,-97.369]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-10.36,-22.61],[25.15,-11.39],[5.79,24.31],[-0.53,5.3]],"o":[[-5.65,29.96],[-22.44,-7.84],[-0.55,-5.97],[21,-18.31]],"v":[[26.648,21.049],[-29.982,86.199],[-76.002,35.549],[-76.002,18.639]],"c":true}]},{"t":36,"s":[{"i":[[-0.156,-0.229],[0.005,-0.198],[0.125,0.524],[-0.011,0.114]],"o":[[0.175,0.257],[-0.483,-0.169],[-0.012,-0.129],[0.113,0.148]],"v":[[-149.053,15.247],[-148.42,15.955],[-149.412,14.864],[-149.412,14.5]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898039275525,0.898039275525,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 5","hd":false},{"ty":"st","c":{"a":0,"k":[0.647058823529,0.305882352941,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,45.406]},"a":{"a":0,"k":[0,45.406]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":31,"op":36,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Null 3","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[256]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":21,"s":[257.445]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[251.735]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[262.162]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[256.384]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[256.888]},{"t":29,"s":[254.404]}]},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[198]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[190.425]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[197.133]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[186.523]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[194.791]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[186.058]},{"t":29,"s":[194.761]}]}},"a":{"a":0,"k":[50,50,0]}},"ao":0,"ip":20,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"Null 19","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[50,108,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[50,1,0]}]}},"ao":0,"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"blik","parent":6,"sr":1,"ks":{"p":{"a":0,"k":[20.897,-88.771,0]},"a":{"a":0,"k":[19.25,-92,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[98.282,62.507],[32.976,130.655],[10.893,-24.206]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[109.918,84.947],[41.535,169.497],[12.437,7.17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":8},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-131]},{"t":30,"s":[-5]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.571},"lc":2,"lj":2,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":2}},{"n":"g","nm":"gap","v":{"a":0,"k":12}},{"n":"d","nm":"dash2","v":{"a":0,"k":297}},{"n":"o","nm":"offset","v":{"a":0,"k":0}}],"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"rocket_cap","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,-33.889,0]},"a":{"a":0,"k":[0,-33.889,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[87.389,21.435],[22.083,89.583],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[97.776,39.412],[29.392,123.961],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898039275525,0.898039275525,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[0,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[0,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[48.264,0],[0,40.168],[0,0]],"o":[[0,40.168],[-48.264,0],[0,-61.227],[0,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[53.838,0],[0,50.031],[0,0]],"o":[[0,50.031],[-53.838,0],[0,-77.778],[0,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.807843197093,0.643137254902,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-105]},"a":{"a":0,"k":[0,-105]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[-44.428,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[44.428,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-57.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-40.168],[48.264,0],[0,40.168],[-48.264,0]],"o":[[0,40.168],[-48.264,0],[0,-40.168],[48.264,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-51.296]],"c":true}]},{"t":30,"s":[{"i":[[0,-50.031],[53.838,0],[0,50.031],[-53.838,0]],"o":[[0,50.031],[-53.838,0],[0,-50.031],[53.838,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-51.176]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898039275525,0.898039275525,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-33.889]},"a":{"a":0,"k":[0,-33.889]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0.647058823529,0.305882352941,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"rocket body 2 outlines","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.647058823529,0.305882352941,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":12},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"rocket body 2 shadows","parent":10,"sr":1,"ks":{"o":{"a":0,"k":50},"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0.667,-19.333],[7.333,22.167],[0,0]],"o":[[0,0],[0.167,0.667],[-3.217,-9.726],[0,0]],"v":[[-13.222,-18.222],[-12.667,177.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[0.167,-11.222],[18.833,29.278],[1.111,16.111]],"o":[[-1.111,16.111],[-15.833,-1.222],[-7.532,-11.709],[0,0]],"v":[[8,37.056],[7.333,133.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.713725490196,0.38431372549,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"lines2","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[-4.5,135.446,0]},"a":{"a":0,"k":[-4.5,135.446,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,23.25],[0,0],[-72.25,-0.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-66,-10.75],[65.25,58.5],[66.5,12.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[65.75,25],[68.5,-17]],"c":true}]},{"t":10,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[68.25,-15],[68.5,-17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-71.75,9],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-65,33.75],[-62.5,74.75],[60.75,137],[62.5,98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-66.5,2.75],[-65,41.25],[61.75,99],[65,63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[26,30.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-66,19.75],[62.75,70.5],[68,37]],"c":true}]},{"t":15,"s":[{"i":[[26,30.25],[0,0],[-54.75,16],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-65.5,15.25],[65.75,49],[71,14]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-56.25,160.5],[-56,160.5],[49.25,167.75],[49.75,168]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-54.5,154.25],[-54.25,154.25],[43,161.5],[43.5,161.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-53.75,148],[-53.5,148],[42.25,155.5],[42.75,155.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[17.5,26],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-52.5,136.25],[-52.75,136.25],[42.25,147.75],[42.5,147.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-57.25,102.5],[-55,120.25],[43.25,137.5],[44,133.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-59.25,89.5],[-54.25,106.75],[42.5,128],[48,118.75]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-58.5,71.75],[-53.5,89],[43.25,110.25],[48.75,101]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-58.5,158.5],[-58.25,158.5],[53.5,166],[54,165]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-57.25,147],[-57.25,147.5],[50.5,160],[50,161]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[24.25,45.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-60.5,106.5],[-58.75,138.5],[51,150],[51.25,149.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[24.25,45.5],[0,0],[-54.5,29.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-62.5,78],[-58.25,106.75],[49,141.75],[53.5,124.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,67.5],[-59.5,89.75],[50,121.5],[54.5,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,81.25],[52.25,106.5],[57.25,81]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,70.5],[56.5,84.75],[57.25,81]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-47,36.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.5,40.25]],"v":[[-61.5,114.75],[-59,155.75],[63.25,158],[63.5,157.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-55,45.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-62,77.5],[-60.75,112.25],[60.75,151.25],[59.5,132.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[25,44.25],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-64.25,50.75],[-60.75,80.5],[58.25,128],[60.75,101.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[25,39],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-65.5,33.75],[-63.75,59.5],[59,101.75],[61.5,76.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,49],[61,82.75],[63.75,62.25]],"c":true}]},{"t":25,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,54.75],[62.25,76.25],[63.75,62.25]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0.109803921569,0.576470588235,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"rocket body","parent":4,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898039215686,0.898039215686,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"t":31,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":4,"op":31,"st":4,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[255,394,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[258,356,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[255,327,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[261,292,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":6,"op":33,"st":6,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"t":28,"s":[256.5,371.5,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"t":28,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":8,"op":28,"st":8,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":29,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"t":29,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":2,"op":29,"st":2,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[234,298,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[259,328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[239,262,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[264,326,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":34,"st":0,"bm":0}]},{"id":"comp_6","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"pink","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":100,"s":[0]}]},"p":{"a":0,"k":[245.75,225.75,0]},"a":{"a":0,"k":[2.75,-17.25,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.312,8.525],[3.244,0.766],[0.278,-4.348]],"o":[[-1.312,-8.525],[-5.358,-1.265],[-0.278,4.348]],"v":[[6.13,-24.571],[8.951,-66.768],[5.014,-23.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.55,23.061],[3.244,0.766],[0.753,-11.762]],"o":[[-3.55,-23.061],[-5.358,-1.265],[-0.753,11.762]],"v":[[11.788,-37.733],[14.47,-92.154],[8.769,-35.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.113,0.736],[3.244,0.766],[0.024,-0.376]],"o":[[-0.113,-0.736],[-5.358,-1.265],[-0.024,0.376]],"v":[[1.251,-14.165],[19.643,-137.56],[1.155,-14.085]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.014],[3.244,0.766],[0,-0.007]],"o":[[-0.002,-0.014],[-5.358,-1.265],[0,0.007]],"v":[[29.568,-215.114],[32.47,-250.154],[29.566,-215.113]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.775,14.209],[6.351,4.603],[2.652,-16.185]],"o":[[0.775,-14.209],[-4.056,-2.94],[-2.652,16.185]],"v":[[7.231,-23.969],[18.873,-61.186],[6.13,-24.571]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-2.096,38.439],[6.351,4.603],[7.173,-43.783]],"o":[[2.096,-38.439],[-4.056,-2.94],[-7.173,43.783]],"v":[[14.767,-36.105],[37.637,-108.647],[11.788,-37.733]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.067,1.227],[6.351,4.603],[0.229,-1.398]],"o":[[0.067,-1.227],[-4.056,-2.94],[-0.229,1.398]],"v":[[1.932,-14.242],[49.85,-146.868],[1.837,-14.294]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,0.023],[6.351,4.603],[0.004,-0.026]],"o":[[0.001,-0.023],[-4.056,-2.94],[-0.004,0.026]],"v":[[75.069,-225.113],[80.137,-241.647],[75.068,-225.114]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.749,6.829],[6.31,5.609],[1.359,-6.48]],"o":[[-0.749,-6.829],[-3.554,-3.159],[-1.359,6.48]],"v":[[8.596,-23.217],[31.24,-73.607],[7.231,-23.969]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.026,18.473],[6.31,5.609],[3.677,-17.531]],"o":[[-2.026,-18.473],[-3.554,-3.159],[-3.677,17.531]],"v":[[18.46,-34.07],[47.481,-104.355],[14.767,-36.105]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.065,0.59],[6.31,5.609],[0.117,-0.56]],"o":[[-0.065,-0.59],[-3.554,-3.159],[-0.117,0.56]],"v":[[2.166,-13.836],[63.43,-142.576],[2.048,-13.901]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.011],[6.31,5.609],[0.002,-0.011]],"o":[[-0.001,-0.011],[-3.554,-3.159],[-0.002,0.011]],"v":[[84.072,-198.612],[102.981,-237.355],[84.069,-198.613]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.199,15.089],[5.581,6.595],[12.758,-17.563]],"o":[[6.199,-15.089],[-2.72,-3.214],[-12.758,17.563]],"v":[[9.486,-22.203],[48.882,-61.987],[8.281,-23.532]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.769,40.819],[5.581,6.595],[34.513,-47.512]],"o":[[16.769,-40.819],[-2.72,-3.214],[-34.513,47.512]],"v":[[21.719,-30.475],[103.282,-109.764],[18.46,-34.07]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.535,1.303],[5.581,6.595],[1.102,-1.517]],"o":[[0.535,-1.303],[-2.72,-3.214],[-1.102,1.517]],"v":[[3.204,-13.341],[122.823,-131.604],[3.099,-13.456]],"c":true}]},{"t":100,"s":[{"i":[[-0.01,0.025],[5.581,6.595],[0.021,-0.029]],"o":[[0.01,-0.025],[-2.72,-3.214],[-0.021,0.029]],"v":[[156.574,-169.11],[171.282,-185.764],[156.572,-169.112]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.223,9.945],[2.258,6.104],[6.726,-10.205]],"o":[[4.223,-9.945],[-1.817,-4.912],[-6.726,10.205]],"v":[[11.177,-20.424],[48.778,-58.677],[9.801,-21.888]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-11.423,26.904],[2.258,6.104],[18.195,-27.606]],"o":[[11.423,-26.904],[-1.817,-4.912],[-18.195,27.606]],"v":[[25.439,-26.516],[74.48,-79.649],[21.719,-30.475]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.365,0.859],[2.258,6.104],[0.581,-0.882]],"o":[[0.365,-0.859],[-1.817,-4.912],[-0.581,0.882]],"v":[[3.264,-12.932],[105.66,-107.524],[3.146,-13.058]],"c":true}]},{"t":100,"s":[{"i":[[-0.007,0.016],[2.258,6.104],[0.011,-0.017]],"o":[[0.007,-0.016],[-1.817,-4.912],[-0.011,0.017]],"v":[[152.076,-147.108],[182.98,-176.649],[152.074,-147.11]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-3.334,6.648],[-1.799,5.518],[9.673,-9.931]],"o":[[3.334,-6.648],[1.878,-5.758],[-9.673,9.931]],"v":[[12.897,-19.193],[48.972,-44.204],[11.177,-20.424]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-9.018,17.983],[-1.799,5.518],[26.167,-26.865]],"o":[[9.018,-17.983],[1.878,-5.758],[-26.167,26.865]],"v":[[30.094,-23.186],[81.927,-62.022],[25.439,-26.516]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.288,0.574],[-1.799,5.518],[0.836,-0.858]],"o":[[0.288,-0.574],[1.878,-5.758],[-0.836,0.858]],"v":[[3.883,-12.491],[120.292,-83.862],[3.734,-12.597]],"c":true}]},{"t":100,"s":[{"i":[[-0.005,0.011],[-1.799,5.518],[0.016,-0.016]],"o":[[0.005,-0.011],[1.878,-5.758],[-0.016,0.016]],"v":[[188.579,-121.106],[215.427,-138.022],[188.576,-121.108]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.869,8.704],[-3.432,7.058],[12.009,-7.852]],"o":[[9.869,-8.704],[2.981,-6.13],[-12.009,7.852]],"v":[[12.832,-16.628],[74.374,-42.527],[12.897,-19.193]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-26.696,23.547],[-3.432,7.058],[32.485,-21.24]],"o":[[26.696,-23.547],[2.981,-6.13],[-32.485,21.24]],"v":[[29.916,-16.247],[117.42,-56.876],[30.094,-23.186]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.852,0.752],[-3.432,7.058],[1.037,-0.678]],"o":[[0.852,-0.752],[2.981,-6.13],[-1.037,0.678]],"v":[[3.897,-11.786],[151.618,-69.521],[3.902,-12.008]],"c":true}]},{"t":100,"s":[{"i":[[-0.016,0.014],[-3.432,7.058],[0.02,-0.013]],"o":[[0.016,-0.014],[2.981,-6.13],[-0.02,0.013]],"v":[[190.079,-83.601],[236.42,-100.876],[190.079,-83.606]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.199,3.553],[-2.249,4.962],[22.38,-4.873]],"o":[[22.287,-5.577],[4.049,-8.935],[-22.38,4.873]],"v":[[10.861,-15.141],[88.919,-15.854],[12.516,-16.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-38.412,9.611],[-2.249,4.962],[60.542,-13.183]],"o":[[60.291,-15.085],[4.049,-8.935],[-60.542,13.183]],"v":[[25.439,-11.372],[154.986,-15.381],[29.916,-16.247]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.227,0.307],[-2.249,4.962],[1.933,-0.421]],"o":[[1.925,-0.482],[4.049,-8.935],[-1.933,0.421]],"v":[[3.934,-10.704],[182.862,-13.944],[4.077,-10.859]],"c":true}]},{"t":100,"s":[{"i":[[-0.023,0.006],[-2.249,4.962],[0.036,-0.008]],"o":[[0.036,-0.009],[4.049,-8.935],[-0.036,0.008]],"v":[[204.076,-11.599],[251.986,-10.381],[204.079,-11.601]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.711,2.16],[-0.839,0.958],[12.251,-0.88]],"o":[[4.711,-2.16],[1.348,-1.539],[-12.251,0.88]],"v":[[9.079,-12.869],[39.383,-12.388],[10.861,-14.826]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.744,5.843],[-0.839,0.958],[33.14,-2.38]],"o":[[12.744,-5.843],[1.348,-1.539],[-33.14,2.38]],"v":[[20.619,-6.076],[78.015,-8.131],[25.439,-11.372]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.407,0.187],[-0.839,0.958],[1.058,-0.076]],"o":[[0.407,-0.187],[1.348,-1.539],[-1.058,0.076]],"v":[[4.224,-10.251],[128.305,-2.239],[4.378,-10.421]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,0.004],[-0.839,0.958],[0.02,-0.001]],"o":[[0.008,-0.004],[1.348,-1.539],[-0.02,0.001]],"v":[[238.573,10.405],[253.015,12.369],[238.576,10.401]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-19.702,-2.401],[-2.482,3.154],[14.29,0.398]],"o":[[19.702,2.401],[2.595,-3.297],[-14.29,-0.398]],"v":[[9.698,-12.307],[64.597,6.088],[9.395,-13.184]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-53.298,-6.494],[-2.482,3.154],[38.657,1.077]],"o":[[53.298,6.494],[2.595,-3.297],[-38.657,-1.077]],"v":[[21.439,-3.705],[93.137,16.968],[20.619,-6.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.702,-0.207],[-2.482,3.154],[1.234,0.034]],"o":[[1.702,0.207],[2.595,-3.297],[-1.234,-0.034]],"v":[[3.71,-9.493],[135.812,35.216],[3.683,-9.569]],"c":true}]},{"t":100,"s":[{"i":[[-0.032,-0.004],[-2.482,3.154],[0.023,0.001]],"o":[[0.032,0.004],[2.595,-3.297],[-0.023,-0.001]],"v":[[196.573,63.406],[241.637,80.468],[196.573,63.405]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.253,-3.386],[-5.064,4.293],[16.792,8.51]],"o":[[9.253,3.386],[4.126,-3.498],[-16.792,-8.51]],"v":[[11.313,-9.614],[54.159,17.809],[9.698,-11.992]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-25.032,-9.16],[-5.064,4.293],[45.426,23.022]],"o":[[25.032,9.16],[4.126,-3.498],[-45.426,-23.022]],"v":[[25.808,2.729],[103.197,50.764],[21.439,-3.705]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.799,-0.292],[-5.064,4.293],[1.451,0.735]],"o":[[0.799,0.292],[4.126,-3.498],[-1.451,-0.735]],"v":[[3.881,-8.702],[137.251,71.886],[3.742,-8.908]],"c":true}]},{"t":100,"s":[{"i":[[-0.015,-0.006],[-5.064,4.293],[0.027,0.014]],"o":[[0.015,0.006],[4.126,-3.498],[-0.027,-0.014]],"v":[[199.076,108.91],[221.697,124.264],[199.073,108.906]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":11,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.526,-3.215],[-3.502,3.162],[9.671,6.481]],"o":[[6.526,3.215],[3.502,-3.162],[-9.671,-6.481]],"v":[[10.491,-8.994],[73.057,40.569],[11.313,-9.929]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-17.653,-8.697],[-3.502,3.162],[26.163,17.532]],"o":[[17.653,8.697],[3.502,-3.162],[-26.163,-17.532]],"v":[[23.585,5.258],[96.236,63.117],[25.808,2.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.564,-0.278],[-3.502,3.162],[0.835,0.56]],"o":[[0.564,0.278],[3.502,-3.162],[-0.835,-0.56]],"v":[[3.102,-8.57],[126.267,90.274],[3.173,-8.651]],"c":true}]},{"t":100,"s":[{"i":[[-0.011,-0.005],[-3.502,3.162],[0.016,0.011]],"o":[[0.011,0.005],[3.502,-3.162],[-0.016,-0.011]],"v":[[144.075,112.911],[200.736,157.617],[144.076,112.91]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":12,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-13.475,-10.482],[-4.458,3.463],[10.073,7.849]],"o":[[13.475,10.482],[4.458,-3.463],[-10.073,-7.849]],"v":[[9.502,-7.951],[52.87,45.892],[10.491,-8.678]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-36.453,-28.355],[-4.458,3.463],[27.249,21.233]],"o":[[36.453,28.355],[4.458,-3.463],[-27.249,-21.233]],"v":[[20.909,7.226],[94.655,93.669],[23.585,5.258]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-1.164,-0.905],[-4.458,3.463],[0.87,0.678]],"o":[[1.164,0.905],[4.458,-3.463],[-0.87,-0.678]],"v":[[3.049,-7.986],[116.926,120.825],[3.134,-8.049]],"c":true}]},{"t":100,"s":[{"i":[[-0.022,-0.017],[-4.458,3.463],[0.016,0.013]],"o":[[0.022,0.017],[4.458,-3.463],[-0.016,-0.013]],"v":[[146.573,153.413],[172.155,188.169],[146.575,153.411]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":13,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.775,-3.087],[-3.488,2.449],[10.229,14.193]],"o":[[4.775,3.087],[3.488,-2.449],[-10.229,-14.193]],"v":[[7.167,-8.135],[48.091,56.332],[9.187,-7.951]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-12.917,-8.352],[-3.488,2.449],[27.671,38.395]],"o":[[12.917,8.352],[3.488,-2.449],[-27.671,-38.395]],"v":[[15.445,6.729],[62.124,74.78],[20.909,7.226]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.412,-0.267],[-3.488,2.449],[0.884,1.226]],"o":[[0.412,0.267],[3.488,-2.449],[-0.884,-1.226]],"v":[[2.321,-8.079],[84.827,113.576],[2.495,-8.063]],"c":true}]},{"t":100,"s":[{"i":[[-0.008,-0.005],[-3.488,2.449],[0.017,0.023]],"o":[[0.008,0.005],[3.488,-2.449],[-0.017,-0.023]],"v":[[103.57,147.412],[141.124,209.78],[103.573,147.413]],"c":true}]}]},"nm":"Path 14","hd":false},{"ind":14,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-5.362,-6.334],[-2.659,0.857],[3.694,6.735]],"o":[[5.361,6.334],[6.495,-2.093],[-3.694,-6.735]],"v":[[5.102,-9.295],[26.477,35.494],[7.167,-8.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.504,-17.136],[-2.659,0.857],[9.994,18.219]],"o":[[14.504,17.136],[6.495,-2.093],[-9.994,-18.219]],"v":[[9.859,4.445],[41.772,64.349],[15.445,6.729]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.463,-0.547],[-2.659,0.857],[0.319,0.582]],"o":[[0.463,0.547],[6.495,-2.093],[-0.319,-0.582]],"v":[[2.027,-7.553],[61.313,111.91],[2.205,-7.48]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,-0.01],[-2.659,0.857],[0.006,0.011]],"o":[[0.009,0.01],[6.495,-2.093],[-0.006,-0.011]],"v":[[94.566,193.911],[109.772,229.849],[94.57,193.912]],"c":true}]}]},"nm":"Path 15","hd":false},{"ind":15,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.43,-4.038],[-5.792,0.94],[0.557,8.126]],"o":[[0.43,4.038],[3.71,-0.602],[-0.557,-8.126]],"v":[[3.69,-10.876],[17.077,55.965],[5.102,-9.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-1.164,-10.924],[-5.792,0.94],[1.507,21.981]],"o":[[1.164,10.924],[3.71,-0.602],[-1.507,-21.981]],"v":[[6.039,0.167],[22.28,71.891],[9.859,4.445]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[-0.037,-0.349],[-5.792,0.94],[0.048,0.702]],"o":[[0.037,0.349],[3.71,-0.602],[-0.048,-0.702]],"v":[[1.242,-7.799],[31.62,122.9],[1.364,-7.663]],"c":true}]},{"t":100,"s":[{"i":[[-0.001,-0.007],[-5.792,0.94],[0.001,0.013]],"o":[[0.001,0.007],[3.71,-0.602],[-0.001,-0.013]],"v":[[43.064,185.408],[54.78,249.391],[43.066,185.411]],"c":true}]}]},"nm":"Path 16","hd":false},{"ind":16,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.268,-1.072],[-8.766,2.77],[-1.453,20.282]],"o":[[-0.268,1.072],[8.956,-2.83],[1.453,-20.282]],"v":[[2.258,-8.649],[11.352,48.031],[4.005,-10.876]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.726,-2.901],[-8.766,2.77],[-3.93,54.866]],"o":[[-0.726,2.901],[8.956,-2.83],[3.93,-54.866]],"v":[[1.312,6.192],[20.655,115.675],[6.039,0.167]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.023,-0.093],[-8.766,2.77],[-0.125,1.752]],"o":[[-0.023,0.093],[8.956,-2.83],[0.125,-1.752]],"v":[[0.956,-7.06],[24.966,155.333],[1.106,-7.252]],"c":true}]},{"t":100,"s":[{"i":[[0,-0.002],[-8.766,2.77],[-0.002,0.033]],"o":[[0,0.002],[8.956,-2.83],[0.002,-0.033]],"v":[[32.561,227.912],[35.655,253.675],[32.564,227.908]],"c":true}]}]},"nm":"Path 17","hd":false},{"ind":17,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.674,-5.118],[-9.34,-10.304],[-5.656,20.469]],"o":[[-0.674,5.118],[5.335,5.886],[5.656,-20.469]],"v":[[0.319,-7.862],[-7.754,79.004],[2.258,-8.649]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.822,-13.845],[-9.34,-10.304],[-15.299,55.372]],"o":[[-1.822,13.845],[5.335,5.886],[15.299,-55.372]],"v":[[-3.933,8.322],[-10.119,142.549],[1.312,6.192]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.058,-0.442],[-9.34,-10.304],[-0.489,1.768]],"o":[[-0.058,0.442],[5.335,5.886],[0.489,-1.768]],"v":[[0.157,-7.436],[-14.573,174.16],[0.325,-7.504]],"c":true}]},{"t":100,"s":[{"i":[[0.001,-0.008],[-9.34,-10.304],[-0.009,0.033]],"o":[[-0.001,0.008],[5.335,5.886],[0.009,-0.033]],"v":[[-16.442,193.413],[-25.619,252.549],[-16.439,193.412]],"c":true}]}]},"nm":"Path 18","hd":false},{"ind":18,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.134,-4.491],[-8.529,-8.273],[-6.696,18.034]],"o":[[-1.134,4.491],[3.166,3.071],[6.696,-18.034]],"v":[[-1.761,-9.64],[-13.598,51.106],[0.003,-7.546]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.068,-12.148],[-8.529,-8.273],[-18.113,48.786]],"o":[[-3.068,12.148],[3.166,3.071],[18.113,-48.786]],"v":[[-8.707,2.658],[-24.162,110.866],[-3.933,8.322]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.098,-0.388],[-8.529,-8.273],[-0.578,1.558]],"o":[[-0.098,0.388],[3.166,3.071],[0.578,-1.558]],"v":[[-0.446,-7.378],[-34.795,149.374],[-0.293,-7.198]],"c":true}]},{"t":100,"s":[{"i":[[0.002,-0.007],[-8.529,-8.273],[-0.011,0.029]],"o":[[-0.002,0.007],[3.166,3.071],[0.011,-0.029]],"v":[[-51.445,211.91],[-61.162,244.866],[-51.442,211.913]],"c":true}]}]},"nm":"Path 19","hd":false},{"ind":19,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.217,-13.161],[-2.977,-4.918],[-5.725,7.174]],"o":[[-9.217,13.161],[1.721,2.843],[5.725,-7.174]],"v":[[-1.154,-12.499],[-42.53,56.34],[-1.761,-9.64]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[24.934,-35.602],[-2.977,-4.918],[-15.488,19.406]],"o":[[-24.934,35.602],[1.721,2.843],[15.488,-19.406]],"v":[[-7.064,-5.076],[-47.418,71.95],[-8.707,2.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.796,-1.137],[-2.977,-4.918],[-0.495,0.62]],"o":[[-0.796,1.137],[1.721,2.843],[0.495,-0.62]],"v":[[-0.876,-8.404],[-71.414,113.188],[-0.929,-8.157]],"c":true}]},{"t":100,"s":[{"i":[[0.015,-0.021],[-2.977,-4.918],[-0.009,0.012]],"o":[[-0.015,0.021],[1.721,2.843],[0.009,-0.012]],"v":[[-88.944,151.405],[-130.918,215.45],[-88.945,151.41]],"c":true}]}]},"nm":"Path 20","hd":false},{"ind":20,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.626,-7.899],[-8.084,-5.313],[-13.235,7.936]],"o":[[-2.855,2.957],[3.306,2.173],[10.979,-6.583]],"v":[[-4.169,-12.723],[-45.434,37.243],[-0.839,-12.499]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.63,-21.369],[-8.084,-5.313],[-35.802,21.467]],"o":[[-7.724,8],[3.306,2.173],[29.699,-17.808]],"v":[[-16.072,-5.684],[-88.796,85.335],[-7.064,-5.076]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.659,-0.682],[-8.084,-5.313],[-1.143,0.686]],"o":[[-0.247,0.255],[3.306,2.173],[0.948,-0.569]],"v":[[-1.962,-8.308],[-113.223,114.36],[-1.674,-8.288]],"c":true}]},{"t":100,"s":[{"i":[[0.012,-0.013],[-8.084,-5.313],[-0.022,0.013]],"o":[[-0.005,0.005],[3.306,2.173],[0.018,-0.011]],"v":[[-150.949,160.405],[-173.796,186.335],[-150.944,160.405]],"c":true}]}]},"nm":"Path 21","hd":false},{"ind":21,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.117,-10.21],[-5.628,-14.818],[-24.822,15.796]],"o":[[-14.086,10.188],[3.081,4.733],[21.924,-13.951]],"v":[[-3.765,-15.075],[-82.448,63.651],[-4.484,-12.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[38.189,-27.621],[0.797,-25.979],[-67.149,42.73]],"o":[[-38.106,27.561],[-0.163,5.311],[59.307,-37.74]],"v":[[-14.127,-12.046],[-117.611,102.283],[-16.072,-5.684]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[1.219,-0.882],[-2.13,-20.894],[-2.144,1.364]],"o":[[-1.217,0.88],[1.315,5.048],[1.894,-1.205]],"v":[[-1.552,-9.148],[-137.871,121.393],[-1.614,-8.945]],"c":true}]},{"t":100,"s":[{"i":[[0.023,-0.017],[-9.389,-8.283],[-0.04,0.026]],"o":[[-0.023,0.017],[4.981,4.394],[0.036,-0.023]],"v":[[-123.948,110.901],[-188.111,168.783],[-123.949,110.905]],"c":true}]}]},"nm":"Path 22","hd":false},{"ind":22,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.794,-1.349],[0.656,-8.742],[-9.144,3.299]],"o":[[-0.388,0.187],[-0.279,3.717],[9.144,-3.298]],"v":[[-4.357,-15.318],[-39.206,7.131],[-3.283,-15.062]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[7.56,-3.648],[1.507,-8.661],[-24.737,8.919]],"o":[[-1.051,0.507],[-0.641,3.682],[24.737,-8.919]],"v":[[-17.032,-12.737],[-65.957,17.111],[-14.127,-12.046]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.241,-0.117],[1.12,-8.698],[-0.79,0.285]],"o":[[-0.034,0.016],[-0.476,3.698],[0.79,-0.285]],"v":[[-2.581,-9.26],[-111.172,47.264],[-2.489,-9.238]],"c":true}]},{"t":100,"s":[{"i":[[0.004,-0.003],[0.158,-8.79],[-0.014,0.008]],"o":[[-0.001,0],[-0.067,3.737],[0.014,-0.008]],"v":[[-196.685,103.922],[-223.294,122.037],[-196.683,103.922]],"c":true}]}]},"nm":"Path 23","hd":false},{"ind":23,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.652,-0.002],[9.621,-23.195],[-30.797,11.034]],"o":[[-0.652,0.002],[1.201,4.343],[30.797,-11.034]],"v":[[-5.938,-16.534],[-91.485,36.162],[-4.524,-15.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.764,-0.005],[34.94,-49.93],[-83.311,29.848]],"o":[[-1.764,0.005],[-2.448,3.499],[83.311,-29.848]],"v":[[-20.857,-15.139],[-161.337,74.163],[-17.032,-12.737]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.056,0],[23.404,-37.749],[-2.66,0.953]],"o":[[-0.056,0],[-0.786,3.883],[2.66,-0.953]],"v":[[-2.437,-9.678],[-180.879,84.077],[-2.314,-9.602]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0],[-5.203,-7.542],[-0.05,0.018]],"o":[[-0.001,0],[3.337,4.837],[0.05,-0.018]],"v":[[-175.952,77.399],[-229.337,108.663],[-175.95,77.401]],"c":true}]}]},"nm":"Path 24","hd":false},{"ind":24,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.079,-0.51],[0.18,-8.491],[-14.645,0.239]],"o":[[-3.079,0.51],[-0.099,4.7],[14.645,-0.239]],"v":[[-8.996,-17.288],[-60.714,-4.682],[-6.253,-16.534]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.33,-1.38],[0.18,-8.491],[-39.617,0.647]],"o":[[-8.33,1.38],[-0.099,4.7],[39.617,-0.647]],"v":[[-28.279,-17.178],[-119.213,6.829],[-20.857,-15.139]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.266,-0.044],[0.18,-8.491],[-1.265,0.021]],"o":[[-0.266,0.044],[-0.099,4.7],[1.265,-0.021]],"v":[[-3.288,-10.423],[-157.506,13.654],[-3.051,-10.357]],"c":true}]},{"t":100,"s":[{"i":[[0.005,-0.001],[0.18,-8.491],[-0.024,0]],"o":[[-0.005,0.001],[-0.099,4.7],[0.024,0]],"v":[[-223.707,24.648],[-252.463,30.579],[-223.702,24.649]],"c":true}]}]},"nm":"Path 25","hd":false},{"ind":25,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.002,-0.018],[4.376,-11.742],[-21.034,-0.505]],"o":[[-5.002,0.018],[-1,2.682],[21.034,0.505]],"v":[[-8.482,-18.09],[-80.041,-5.651],[-8.996,-16.972]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.533,-0.05],[4.376,-11.742],[-56.9,-1.366]],"o":[[-13.533,0.05],[-1,2.682],[56.9,1.366]],"v":[[-26.888,-20.202],[-133.179,-1.393],[-28.279,-17.178]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.432,-0.002],[4.376,-11.742],[-1.817,-0.044]],"o":[[-0.432,0.002],[-1,2.682],[1.817,0.044]],"v":[[-2.957,-10.802],[-167.52,2.271],[-3.002,-10.706]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0],[4.376,-11.742],[-0.034,-0.001]],"o":[[-0.008,0],[-1,2.682],[0.034,0.001]],"v":[[-201.456,2.646],[-252.679,11.357],[-201.457,2.648]],"c":true}]}]},"nm":"Path 26","hd":false},{"ind":26,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.015,0.648],[9.285,-5.938],[-12.687,-1.577]],"o":[[-1.837,-0.296],[-5.457,3.49],[12.687,1.577]],"v":[[-7.193,-19.109],[-55.539,-18.566],[-8.167,-18.09]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[10.862,1.752],[9.285,-5.938],[-34.32,-4.266]],"o":[[-4.969,-0.802],[-5.457,3.49],[34.32,4.266]],"v":[[-24.253,-22.959],[-119.714,-21.877],[-26.888,-20.202]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.347,0.056],[9.285,-5.938],[-1.096,-0.136]],"o":[[-0.159,-0.026],[-5.457,3.49],[1.096,0.136]],"v":[[-3.256,-11.254],[-157.719,-22.883],[-3.34,-11.166]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.001],[9.285,-5.938],[-0.021,-0.003]],"o":[[-0.003,0],[-5.457,3.49],[0.021,0.003]],"v":[[-231.204,-25.606],[-251.964,-25.377],[-231.206,-25.604]],"c":true}]}]},"nm":"Path 27","hd":false},{"ind":27,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.393,1.499],[5.601,-5.319],[-6.035,-3.074]],"o":[[-4.393,-1.499],[-2.043,1.94],[7.22,3.678]],"v":[[-5.608,-19.397],[-48.68,-27.903],[-7.508,-19.109]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[11.885,4.055],[5.601,-5.319],[-16.326,-8.316]],"o":[[-11.885,-4.055],[-2.043,1.94],[19.531,9.948]],"v":[[-19.113,-23.736],[-77.851,-34.052],[-24.253,-22.959]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.38,0.13],[5.601,-5.319],[-0.521,-0.266]],"o":[[-0.38,-0.129],[-2.043,1.94],[0.624,0.318]],"v":[[-2.828,-11.723],[-125.77,-43.679],[-2.992,-11.698]],"c":true}]},{"t":100,"s":[{"i":[[0.007,0.002],[5.601,-5.319],[-0.01,-0.005]],"o":[[-0.007,-0.002],[-2.043,1.94],[0.012,0.006]],"v":[[-210.701,-60.106],[-244.601,-67.552],[-210.704,-60.106]],"c":true}]}]},"nm":"Path 28","hd":false},{"ind":28,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.221,2.81],[2.362,-11.3],[-20.382,-17.294]],"o":[[-5.221,-2.81],[-1.358,6.576],[20.382,17.294]],"v":[[-7.193,-23.937],[-71.1,-48.972],[-5.293,-19.397]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[14.123,7.602],[4.156,-15.533],[-55.138,-46.784]],"o":[[-14.123,-7.602],[-2.317,8.659],[55.138,46.784]],"v":[[-24.253,-36.018],[-168.703,-94.857],[-19.113,-23.736]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.451,0.243],[3.339,-13.604],[-1.761,-1.494]],"o":[[-0.451,-0.243],[-1.88,7.71],[1.761,1.494]],"v":[[-2.925,-12.804],[-184.078,-101.754],[-2.761,-12.412]],"c":true}]},{"t":100,"s":[{"i":[[0.008,0.005],[1.312,-8.822],[-0.033,-0.028]],"o":[[-0.008,-0.005],[-0.797,5.357],[0.033,0.028]],"v":[[-205.454,-113.613],[-222.203,-118.857],[-205.451,-113.606]],"c":true}]}]},"nm":"Path 29","hd":false},{"ind":29,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.26,4.445],[7.011,-4.124],[-10.385,-10.766]],"o":[[-0.326,-0.199],[-7.011,4.124],[16.897,17.517]],"v":[[-5.801,-24.959],[-56.419,-56.973],[-7.193,-23.937]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[19.64,12.023],[7.011,-4.124],[-28.094,-29.123]],"o":[[-0.881,-0.54],[-7.011,4.124],[45.711,47.385]],"v":[[-20.488,-38.784],[-98.519,-86.459],[-24.253,-36.018]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.627,0.384],[7.011,-4.124],[-0.897,-0.93]],"o":[[-0.028,-0.017],[-7.011,4.124],[1.46,1.513]],"v":[[-2.277,-13.13],[-127.401,-106.145],[-2.397,-13.042]],"c":true}]},{"t":100,"s":[{"i":[[0.012,0.007],[7.011,-4.124],[-0.017,-0.018]],"o":[[-0.001,0],[-7.011,4.124],[0.028,0.029]],"v":[[-164.452,-132.115],[-199.019,-154.959],[-164.454,-132.113]],"c":true}]}]},"nm":"Path 30","hd":false},{"ind":30,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[23.866,20.95],[-0.775,-4.182],[-8.843,-10.116]],"o":[[-23.866,-20.95],[0.799,4.308],[8.843,10.116]],"v":[[-4.127,-25.389],[-47.359,-57.266],[-6.116,-25.275]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[64.562,56.675],[-0.775,-4.182],[-23.921,-27.366]],"o":[[-64.562,-56.675],[0.799,4.308],[23.921,27.366]],"v":[[-15.108,-39.093],[-105.227,-105.674],[-20.488,-38.784]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[2.062,1.81],[-0.775,-4.182],[-0.764,-0.874]],"o":[[-2.062,-1.81],[0.799,4.308],[0.764,0.874]],"v":[[-2.169,-13.514],[-128.217,-124.928],[-2.341,-13.504]],"c":true}]},{"t":100,"s":[{"i":[[0.039,0.034],[-0.775,-4.182],[-0.014,-0.016]],"o":[[-0.039,-0.034],[0.799,4.308],[0.014,0.016]],"v":[[-169.449,-161.115],[-185.227,-172.674],[-169.452,-161.115]],"c":true}]}]},"nm":"Path 31","hd":false},{"ind":31,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.861,0.835],[6.082,-5.676],[-10.296,-14.684]],"o":[[-0.861,-0.835],[-2.893,2.699],[10.296,14.684]],"v":[[-0.366,-23.104],[-55.133,-75.787],[-4.127,-25.389]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.329,2.258],[6.082,-5.676],[-27.852,-39.724]],"o":[[-2.329,-2.258],[-2.893,2.699],[27.852,39.724]],"v":[[-4.933,-32.911],[-79.889,-105.589],[-15.108,-39.093]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.074,0.072],[6.082,-5.676],[-0.889,-1.268]],"o":[[-0.074,-0.072],[-2.893,2.699],[0.889,1.268]],"v":[[-1.214,-13.207],[-103.885,-130.878],[-1.539,-13.404]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.001],[6.082,-5.676],[-0.017,-0.024]],"o":[[-0.001,-0.001],[-2.893,2.699],[0.017,0.024]],"v":[[-120.443,-152.612],[-163.389,-193.589],[-120.449,-152.615]],"c":true}]}]},"nm":"Path 32","hd":false},{"ind":32,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.542,19.181],[3.073,-0.981],[-0.152,-9.722]],"o":[[-3.542,-19.181],[-2.453,0.783],[0.152,9.722]],"v":[[0.539,-22.899],[-14.028,-61.928],[-0.366,-22.788]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.581,51.887],[3.073,-0.981],[-0.412,-26.3]],"o":[[-9.581,-51.887],[-2.453,0.783],[0.412,26.3]],"v":[[-2.483,-33.211],[-31.215,-116.327],[-4.933,-32.911]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.306,1.657],[3.073,-0.981],[-0.013,-0.84]],"o":[[-0.306,-1.657],[-2.453,0.783],[0.013,0.84]],"v":[[-0.517,-14.182],[-44.865,-152.105],[-0.596,-14.172]],"c":true}]},{"t":100,"s":[{"i":[[0.006,0.031],[3.073,-0.981],[0,-0.016]],"o":[[-0.006,-0.031],[-2.453,0.783],[0,0.016]],"v":[[-72.441,-227.612],[-78.715,-240.827],[-72.443,-227.612]],"c":true}]}]},"nm":"Path 33","hd":false},{"ind":33,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.512,3.311],[7.408,-2.515],[0.879,-9.578]],"o":[[-0.512,-3.311],[-4.274,1.451],[-0.879,9.578]],"v":[[1.755,-24.526],[-15.758,-89.049],[0.539,-22.899]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[1.386,8.956],[7.408,-2.515],[2.377,-25.91]],"o":[[-1.386,-8.956],[-4.274,1.451],[-2.377,25.91]],"v":[[0.805,-37.612],[-23.169,-137.772],[-2.483,-33.211]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.044,0.286],[7.408,-2.515],[0.076,-0.827]],"o":[[-0.044,-0.286],[-4.274,1.451],[-0.076,0.827]],"v":[[0.051,-14.02],[-30.928,-169.383],[-0.054,-13.879]],"c":true}]},{"t":100,"s":[{"i":[[0.001,0.005],[7.408,-2.515],[0.001,-0.016]],"o":[[-0.001,-0.005],[-4.274,1.451],[-0.001,0.016]],"v":[[-36.439,-204.114],[-50.169,-247.772],[-36.441,-204.112]],"c":true}]}]},"nm":"Path 34","hd":false},{"ind":34,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.275,0.477],[4.481,1.632],[2.961,-6.55],[-1.425,0.478]],"o":[[-2.55,-0.954],[-6.936,-2.526],[-1.48,3.275],[1.425,-0.478]],"v":[[5.014,-23.954],[2.623,-65.932],[2.07,-24.842],[3.754,-13.991]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.449,1.291],[4.481,1.632],[8.009,-17.719],[-3.855,1.292]],"o":[[-6.899,-2.581],[-6.936,-2.526],[-4.004,8.859],[3.855,-1.292]],"v":[[8.769,-35.211],[4.357,-117.808],[0.805,-37.612],[5.361,-8.261]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[{"i":[[0.11,0.041],[4.481,1.632],[0.256,-0.566],[-0.123,0.041]],"o":[[-0.22,-0.082],[-6.936,-2.526],[-0.128,0.283],[0.123,-0.041]],"v":[[0.788,-14.342],[3.064,-156.748],[0.534,-14.419],[0.679,-13.482]],"c":true}]},{"t":100,"s":[{"i":[[0.002,0.001],[4.481,1.632],[0.005,-0.011],[-0.002,0.001]],"o":[[-0.004,-0.002],[-6.936,-2.526],[-0.002,0.005],[0.002,-0.001]],"v":[[1.066,-235.113],[-0.143,-253.308],[1.061,-235.114],[1.064,-235.097]],"c":true}]}]},"nm":"Path 35","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,0.919,0.91,1,0.379,0.837,0.82,1,0.522,0.444,0.645,0.994,0.708,0.05,0.47,0.988,0.865,0.262,0.465,0.992,0.999,0.474,0.461,0.996,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[-12,-18]},"e":{"a":0,"k":[-123.596,-129.596]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-6.793,2.506]},"a":{"a":0,"k":[-6.793,2.506]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"white splashes precomp","refId":"comp_2","sr":1,"ks":{"p":{"a":0,"k":[243,243,0]},"a":{"a":0,"k":[243,243,0]}},"ao":0,"w":486,"h":486,"ip":-4,"op":99,"st":-5,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"ogonek5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":30,"s":[100]},{"t":45,"s":[0]}]},"p":{"a":0,"k":[241,232.25,0]},"a":{"a":0,"k":[-51,43,0]},"s":{"a":1,"k":[{"i":{"x":[0,0,0],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,15.828]},"t":30,"s":[0,0,100]},{"t":45,"s":[151,151,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[164,164]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":7,"k":{"a":0,"k":[0.166,1,1,1,0.291,0.886,0.886,0.99,0.379,0.773,0.773,0.98,0.522,0.386,0.644,0.967,0.708,0,0.516,0.953,0.865,0.203,0.631,0.969,0.999,0.405,0.746,0.984,0.166,1,0.291,1,0.379,1,0.522,0.9,0.708,0.8,0.865,0.8,0.999,0.8]}},"s":{"a":0,"k":[1,0.5]},"e":{"a":0,"k":[-61.596,-53.096]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 8","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":30,"op":45,"st":-45,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"rose splashes 80%","sr":1,"ks":{"o":{"a":0,"k":80},"p":{"a":0,"k":[283.287,244.6,0]},"a":{"a":0,"k":[40.287,1.6,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.458,2.584],[-1.178,1.927]],"o":[[0,0],[1.178,-1.927]],"v":[[47.396,-2.495],[66.132,8.305]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[17.915,5.472],[-2.495,4.082]],"o":[[0,0],[2.494,-4.082]],"v":[[127.416,14.655],[167.1,37.528]],"c":true}]},{"t":100,"s":[{"i":[[2.922,0.892],[-0.407,0.666]],"o":[[0,0],[0.407,-0.666]],"v":[[231.544,79.714],[238.016,83.445]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-7.371,11.75],[-2.605,-2.954]],"o":[[0,0],[2.605,2.954]],"v":[[-19.417,21.61],[-33.613,50.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-16.511,26.322],[-5.835,-6.617]],"o":[[0,0],[5.835,6.617]],"v":[[-54.289,78.774],[-86.09,143.637]],"c":true}]},{"t":100,"s":[{"i":[[-2.019,3.219],[-0.714,-0.809]],"o":[[0,0],[0.714,0.809]],"v":[[-120,208.391],[-123.889,216.322]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.272,18.752],[3.489,0]],"o":[[0,0],[-2.919,0]],"v":[[13.337,36.564],[18.266,63.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[9.5,41.701],[7.758,0]],"o":[[0,0],[-6.491,0]],"v":[[34.44,120.578],[45.401,181.583]],"c":true}]},{"t":100,"s":[{"i":[[1.211,5.316],[0.989,0]],"o":[[0,0],[-0.827,0]],"v":[[49.981,239.625],[51.378,247.402]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.357,10.649],[2.065,-1.671]],"o":[[0,0],[-2.092,1.693]],"v":[[27.785,38.344],[37.752,60.836]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.682,25.21],[4.889,-3.955]],"o":[[0,0],[-4.953,4.007]],"v":[[73.965,124.33],[97.561,177.576]],"c":true}]},{"t":100,"s":[{"i":[[1.068,2.124],[0.412,-0.333]],"o":[[0,0],[-0.417,0.338]],"v":[[112.746,219.25],[114.734,223.735]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[7.125,6.764],[2.818,-3.288]],"o":[[0,0],[-1.952,2.278]],"v":[[39.186,19.394],[56.431,42.171]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[16.508,15.671],[6.529,-7.617]],"o":[[0,0],[-4.523,5.277]],"v":[[103.804,73.868],[143.76,126.64]],"c":true}]},{"t":100,"s":[{"i":[[1.631,1.548],[0.645,-0.753]],"o":[[0,0],[-0.447,0.521]],"v":[[178.352,168.75],[182.3,173.964]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.003,-18.483],[-2.995,-2.598]],"o":[[0,0],[2.346,2.035]],"v":[[19.896,-54.149],[37.88,-77.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[31.33,-41.355],[-6.701,-5.813]],"o":[[0,0],[5.249,4.553]],"v":[[52.828,-125.71],[93.066,-177.974]],"c":true}]},{"t":100,"s":[{"i":[[3.858,-5.092],[-0.825,-0.716]],"o":[[0,0],[0.646,0.561]],"v":[[119.615,-214],[124.57,-220.435]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.092,-13.223],[3.225,-0.461]],"o":[[0,0],[-3.225,0.461]],"v":[[-11.7,-53.501],[-23.447,-74.576]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-13.694,-29.721],[7.248,-1.036]],"o":[[0,0],[-7.248,1.036]],"v":[[-33.744,-123.528],[-60.149,-170.902]],"c":true}]},{"t":100,"s":[{"i":[[-1.641,-3.562],[0.869,-0.124]],"o":[[0,0],[-0.869,0.124]],"v":[[-92.793,-229.25],[-95.958,-234.928]],"c":true}]}]},"nm":"Path 7","hd":false},{"ty":"fl","c":{"a":0,"k":[0.399169562845,0.676376941157,0.988235294118,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 7","hd":false},{"ty":"tr","p":{"a":0,"k":[40.287,1.6]},"a":{"a":0,"k":[40.287,1.6]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"rose splashes 40%","sr":1,"ks":{"o":{"a":0,"k":40},"p":{"a":0,"k":[255.462,250.532,0]},"a":{"a":0,"k":[12.462,7.532,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.498,-1.717],[-2.802,-3.967]],"o":[[-1.32,0.907],[0,0]],"v":[[-27.909,-69.864],[-23.485,-62.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[5.583,-3.836],[-6.261,-8.864]],"o":[[-2.949,2.026],[0,0]],"v":[[-77.365,-168.395],[-67.479,-152.872]],"c":true}]},{"t":100,"s":[{"i":[[0.692,-0.476],[-0.776,-1.099]],"o":[[-0.366,0.251],[0,0]],"v":[[-104.452,-204.425],[-103.226,-202.5]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.758,-1.202],[3.089,-1.172]],"o":[[0,0],[-3.089,1.172]],"v":[[-40.584,-41.866],[-51.165,-45.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-10.775,-2.722],[6.996,-2.654]],"o":[[0,0],[-6.996,2.654]],"v":[[-111.836,-92.023],[-135.799,-100.881]],"c":true}]},{"t":100,"s":[{"i":[[-1.235,-0.312],[0.802,-0.304]],"o":[[0,0],[-0.802,0.304]],"v":[[-194.867,-116.25],[-197.612,-117.265]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-6.418,17.711],[-4.713,-1.091]],"o":[[0,0],[2.758,0.638]],"v":[[-22.297,35.041],[-30.452,64.628]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-14.835,40.938],[-10.895,-2.522]],"o":[[0,0],[6.375,1.475]],"v":[[-62.088,115.52],[-80.938,183.907]],"c":true}]},{"t":100,"s":[{"i":[[-1.49,4.112],[-1.094,-0.253]],"o":[[0,0],[0.64,0.148]],"v":[[-89,203.172],[-90.893,210.041]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.125,2.009],[-1.205,-2.41]],"o":[[-0.644,-1.15],[1.205,2.41]],"v":[[60.208,34.488],[58.28,36.577]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[2.266,4.046],[-2.428,-4.856]],"o":[[-1.297,-2.316],[2.428,4.856]],"v":[[161.46,114.372],[157.576,118.58]],"c":true}]},{"t":100,"s":[{"i":[[0.457,0.815],[-0.489,-0.978]],"o":[[-0.261,-0.467],[0.489,0.978]],"v":[[178.425,143.467],[177.643,144.315]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0.378,1.888],[-0.054,-1.294]],"o":[[-0.244,-1.218],[0.054,1.294]],"v":[[57.201,-37.513],[53.318,-36.704]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0.721,3.602],[-0.103,-2.47]],"o":[[-0.465,-2.323],[0.103,2.47]],"v":[[152.987,-80.688],[145.577,-79.144]],"c":true}]},{"t":100,"s":[{"i":[[0.177,0.884],[-0.025,-0.606]],"o":[[-0.114,-0.57],[0.025,0.606]],"v":[[207.62,-96.485],[205.801,-96.106]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.033,1.484],[-0.082,-1.894]],"o":[[0.031,-1.392],[0.082,1.894]],"v":[[53.595,-30.294],[48.408,-29.669]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-0.074,3.328],[-0.185,-4.247]],"o":[[0.069,-3.121],[0.185,4.247]],"v":[[143.792,-61.221],[132.159,-59.821]],"c":true}]},{"t":100,"s":[{"i":[[-0.009,0.404],[-0.022,-0.516]],"o":[[0.008,-0.379],[0.022,0.516]],"v":[[216.285,-76.436],[214.873,-76.266]],"c":true}]}]},"nm":"Path 6","hd":false},{"ty":"fl","c":{"a":0,"k":[0.4,0.674509803922,0.988235294118,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 6","hd":false},{"ty":"tr","p":{"a":0,"k":[12.462,7.532]},"a":{"a":0,"k":[12.462,7.532]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"violet","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[33.333]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[100]},{"t":70,"s":[0]}]},"p":{"a":0,"k":[250.172,221.61,0]},"a":{"a":0,"k":[7.172,-21.39,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.629,0.629,0.629],"y":[0,0,0]},"t":30,"s":[43.235,43.235,100]},{"t":40,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[8.424,-5.071],[2.653,-10.693],[8.493,-0.25],[-0.281,-21.575],[8.206,2.479],[-9.071,-18.319],[10.163,-0.826],[-8.504,-13.367],[7.925,-6.142],[-9.44,-13.344],[2.854,-8.942],[-21.641,-24.17],[6.753,-1.287],[-6.374,-4.022],[10.533,-2.098],[-13.32,-3.511],[-1.839,-6.483],[-21.075,-3.827],[-5.954,-6.816],[-11.932,-2.571],[3.257,-17.575],[-38.942,9.134],[-0.325,-7.706],[-8.742,1.73],[-8.801,-7.785],[-30.134,14.717],[-9.382,-4.129],[-16.279,6.661],[1.088,-8.515],[-7.687,7.097],[-6.012,-8.868],[-10.651,19.166],[-10.35,0.696],[-9.579,21.376],[-8.09,4.605],[-5.131,22.602],[-3.808,-4.758],[-0.748,8.961],[-7.254,-2.788],[2.909,7.968],[-7.635,-1.047],[9.08,17.754],[-7.507,3.193],[9.997,10.579],[-6.351,4.692],[9.781,8.968],[0.178,6.817],[17.454,12.482],[0.03,6.973],[12.265,1.257],[-5.162,4.439],[17.018,1.365],[-5.218,7.12],[24.328,-1.527],[-3.121,9.666],[14.883,-6.778],[10.864,5.993],[11.338,-8.563],[5.168,9.097],[9.336,-10.339],[5.422,9.555],[17.401,-17.591],[8.409,7.467],[2.648,-7.068],[8.104,5.903],[5.776,-17.779],[7.39,-3.513],[1.572,-7.178],[9.221,3.529],[4.343,-6.683]],"o":[[-7.125,5.075],[-0.627,-20.281],[-8.492,0.25],[-7.605,-11.419],[-6.68,-3.509],[-2.4,-2.857],[-8.37,0.053],[-2.455,-2.437],[-7.318,5.151],[-25.313,-18.266],[-0.866,7.957],[-15.111,-8.219],[-6.731,1.147],[0,0],[-8.775,1.322],[-36.623,-3.316],[2.35,6.725],[-4.284,0.119],[5.62,5.119],[0,0],[-0.325,7.953],[-14.317,6.526],[0.333,6.979],[-5.382,3.713],[7.32,4.607],[-4.424,3.372],[7.613,2.532],[-10.42,10.905],[-1.668,7.104],[-2.075,4.92],[4.11,6.36],[-1.424,4.903],[7.699,-1.121],[0,0],[8.176,-4.621],[-1.052,23.086],[4.14,4.652],[5.615,9.885],[7.25,2.786],[5.203,5.546],[7.441,1.093],[15.761,17.732],[7.507,-3.193],[5.904,3.732],[6.351,-4.692],[9.84,5.408],[-0.622,-6.552],[19.337,4.71],[0.329,-7.351],[6.418,-1.574],[5.14,-4.409],[27.522,-2.876],[5.215,-7.117],[4.426,-6.277],[2.875,-9.309],[1.399,-5.562],[-7.079,-5.34],[4.34,-9.001],[-5.002,-8.493],[13.638,-18.255],[-5.312,-9.225],[0.333,-7.822],[-7.414,-6.268],[3.497,-13.498],[-8.104,-5.903],[-0.973,-5.144],[-8.335,3.293],[-2.994,-1.674],[-9.108,-3.513],[-0.006,-3.457]],"v":[[5.228,-95.512],[7.462,-28.929],[-2.195,-87.293],[6.416,-28.961],[-31.261,-81.602],[2.547,-32.204],[-43.849,-81.375],[0.273,-32.419],[-44.643,-71.2],[-1.483,-31.501],[-68.757,-71.437],[-0.116,-26.024],[-42.303,-41.201],[-2.32,-26.028],[-60.656,-35.365],[-6.28,-25.891],[-67.569,-24.781],[-6.096,-24.791],[-61.84,-18.285],[-3.524,-23.253],[-83.167,12.168],[-3.472,-21.52],[-43.616,2.576],[-3.348,-19.306],[-64.141,31.565],[0.002,-18.262],[-50.895,27.819],[3.739,-17.431],[-29.038,27.111],[2.554,-14.294],[-16.457,46.001],[4.192,-11.614],[-10.643,61.853],[6.528,-12.171],[7.719,52.216],[8.895,-14.393],[13.275,34.112],[10.222,-12.355],[26.825,31.666],[12.417,-11.04],[35.999,36.579],[14.675,-10.481],[49.25,44.887],[15.923,-11.135],[54.41,30.884],[17.017,-12.053],[59.976,24.143],[15.598,-15.029],[60.134,6.365],[15.406,-16.076],[56.972,-8.479],[17.766,-17.986],[90.136,-9.191],[19.955,-19.743],[79.759,-35.208],[20.474,-22.64],[63.92,-44.118],[18.736,-24.334],[63.006,-55.052],[17.431,-26.232],[77.149,-67.057],[16.295,-27.947],[47.537,-73.383],[14.878,-29.037],[41.274,-77.714],[13.733,-29.91],[25.971,-72.901],[12.306,-29.047],[19.524,-85.462],[9.122,-30.564]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[8.849,0.01],[7.184,-28.957],[3.052,-1.273],[-0.761,-58.423],[7.839,-5.353],[-24.563,-49.607],[9.192,-3.975],[-23.029,-36.198],[4.861,-7.946],[-25.563,-36.135],[12.25,-6.125],[-58.602,-65.452],[0.423,-3.502],[-17.26,-10.89],[11.497,-5.096],[-36.071,-9.509],[-2.201,-1.041],[-57.07,-10.364],[-1.998,-10.013],[-32.312,-6.962],[9.36,-30.715],[-105.454,24.735],[0.047,-4.178],[-23.672,4.686],[-7.461,-15.968],[-81.601,39.854],[-8.157,-7.347],[-44.083,18.039],[-3.026,-7.306],[-20.815,19.217],[-8.186,-10.792],[-28.842,51.901],[-12.022,-1.924],[-25.94,57.885],[-10.365,1.613],[-13.894,61.205],[-1.581,0.481],[-2.025,24.266],[-5.413,1.006],[7.876,21.576],[-4.573,1.132],[24.589,48.078],[-6.41,1.365],[27.072,28.648],[-4.858,2.346],[26.485,24.286],[-6.451,3.968],[47.266,33.8],[-2.771,2.906],[33.213,3.403],[-1.167,1.667],[46.083,3.696],[-1.333,9],[65.879,-4.134],[-5.083,7.361],[40.303,-18.354],[15.513,2.68],[30.702,-23.187],[1.943,7.096],[25.282,-27.999],[2.5,7.5],[47.12,-47.637],[6.155,7.421],[7.17,-19.139],[5.169,3.176],[15.641,-48.146],[3.103,0.727],[4.257,-19.437],[6.927,0.949],[11.76,-18.098]],"o":[[-5.323,-0.006],[-1.697,-54.919],[-3.052,1.273],[-20.594,-30.923],[-3.728,2.546],[-6.498,-7.737],[-4.346,1.879],[-6.647,-6.6],[-3.22,5.264],[-68.548,-49.463],[-6.872,3.436],[-40.921,-22.258],[-0.377,3.121],[0,0],[-6.756,2.995],[-99.173,-8.979],[3.585,1.695],[-11.602,0.322],[1.08,5.412],[0,0],[-1.42,4.661],[-38.77,17.671],[-0.025,2.213],[-14.575,10.054],[3.439,7.359],[-11.98,9.131],[3.354,3.021],[-28.218,29.53],[1.451,3.503],[-5.619,13.324],[3.041,4.009],[-3.855,13.277],[4.839,0.774],[0,0],[10.589,-1.648],[-2.849,62.516],[2.488,-0.757],[15.206,26.767],[5.413,-1.006],[14.09,15.019],[4.055,-1.004],[42.68,48.017],[6.41,-1.365],[15.989,10.107],[4.858,-2.346],[26.647,14.644],[5.257,-3.234],[52.364,12.754],[3.745,-3.927],[17.38,-4.263],[1.115,-1.592],[74.53,-7.789],[1.333,-9],[11.985,-16.998],[4.419,-6.4],[3.79,-15.061],[-5.258,-0.908],[11.752,-24.375],[-1.495,-5.458],[36.932,-49.434],[-2.202,-6.607],[0.901,-21.183],[-3.464,-4.176],[9.469,-36.552],[-5.169,-3.176],[-2.634,-13.929],[-5.658,-1.325],[-8.107,-4.533],[-6.628,-0.908],[-0.017,-9.362]],"v":[[3.02,-162.999],[8.243,-41.492],[-9.448,-140.273],[5.428,-41.577],[-66.581,-136.474],[-4.982,-50.303],[-94.937,-141.294],[-11.103,-50.883],[-91.631,-117.558],[-15.827,-48.412],[-150.75,-126.625],[-12.148,-33.673],[-76.677,-54.762],[-18.079,-33.683],[-125.935,-48.926],[-28.737,-33.315],[-144.516,-27.935],[-28.241,-30.355],[-129.957,-16.393],[-21.32,-26.218],[-189.443,52.219],[-21.179,-21.553],[-84.613,22.128],[-20.845,-15.595],[-143.927,91.798],[-11.831,-12.788],[-109.552,77.33],[-1.776,-10.549],[-60.574,69.369],[-4.963,-2.109],[-41.055,117.272],[-0.555,5.102],[-30.196,155.83],[5.729,3.604],[8.665,130.425],[12.099,-2.376],[18.32,81.416],[15.669,3.108],[41.962,76.131],[21.577,6.648],[62.49,91.451],[27.654,8.15],[95.923,118.365],[31.011,6.393],[102.975,84.18],[33.954,3.923],[112.957,71.446],[30.136,-4.087],[107.438,31.594],[29.62,-6.903],[94.5,0.667],[35.97,-12.045],[183.167,5],[41.86,-16.772],[147.562,-47.507],[43.258,-24.567],[106.809,-61.148],[38.582,-29.125],[103.057,-80.596],[35.068,-34.233],[141.167,-109],[32.012,-38.849],[76.865,-113.118],[28.198,-41.782],[66.503,-119.657],[25.119,-44.132],[37.324,-105.068],[21.279,-41.807],[29.931,-135.604],[12.71,-45.889]],"c":true}]},{"t":100,"s":[{"i":[[6.52,-0.499],[0,0],[7.552,-1.773],[0,0],[7.419,-3.974],[0,0],[5.063,-2.794],[0,0],[3.869,-4.058],[0,0],[3.25,-5.125],[0,0],[2.323,-7.262],[0,0],[1.065,-7.426],[0,0],[-0.016,-6.935],[0,0],[0.043,-8.393],[0,0],[-1.943,-5.281],[0,0],[-4.613,-6.872],[0,0],[-4.427,-4.702],[0,0],[-5.552,-5.67],[0,0],[-7.074,-5.131],[0,0],[-7.555,-2.728],[0,0],[-8.696,0.33],[0,0],[-5.835,-0.075],[0,0],[-5.179,-0.584],[0,0],[-7.538,4.131],[0,0],[-4.51,1.951],[0,0],[-7.077,4.865],[0,0],[-5.025,3.68],[0,0],[-5.043,6.946],[0,0],[-2.062,4.094],[0,0],[-1.5,7.666],[0,0],[-1.333,7.5],[0,0],[-0.438,6.493],[0,0],[2.309,7.852],[0,0],[1.057,4.404],[0,0],[1.667,6.5],[0,0],[6.365,6.382],[0,0],[3.503,2.843],[0,0],[5.324,3.432],[0,0],[2.931,0.896],[0,0]],"o":[[-6.521,0.499],[0,0],[-7.552,1.773],[0,0],[-7.419,3.974],[0,0],[-5.063,2.794],[0,0],[-3.869,4.058],[0,0],[-3.25,5.125],[0,0],[-2.323,7.262],[0,0],[-1.065,7.426],[0,0],[0.016,6.935],[0,0],[-0.043,8.393],[0,0],[1.943,5.281],[0,0],[4.613,6.872],[0,0],[4.427,4.702],[0,0],[5.552,5.67],[0,0],[7.074,5.131],[0,0],[7.555,2.728],[0,0],[8.696,-0.33],[0,0],[5.835,0.075],[0,0],[5.18,0.584],[0,0],[7.538,-4.131],[0,0],[4.51,-1.951],[0,0],[7.077,-4.865],[0,0],[5.025,-3.68],[0,0],[5.043,-6.946],[0,0],[2.062,-4.094],[0,0],[1.5,-7.666],[0,0],[1.333,-7.5],[0,0],[0.438,-6.493],[0,0],[-2.309,-7.852],[0,0],[-1.057,-4.404],[0,0],[-1.667,-6.5],[0,0],[-6.365,-6.382],[0,0],[-3.503,-2.843],[0,0],[-5.324,-3.432],[0,0],[-2.931,-0.896],[0,0]],"v":[[0.021,-238.999],[6.522,-22.25],[-22.948,-238.773],[6.486,-22.251],[-111.081,-205.974],[6.353,-22.363],[-136.437,-188.794],[6.274,-22.37],[-151.131,-175.058],[6.214,-22.339],[-176.75,-144.125],[6.261,-22.15],[-199.177,-102.262],[6.185,-22.15],[-209.935,-65.926],[6.048,-22.145],[-215.016,-31.435],[6.055,-22.107],[-215.457,-11.893],[6.143,-22.054],[-201.443,57.219],[6.145,-21.994],[-194.113,74.128],[6.149,-21.918],[-171.427,112.298],[6.265,-21.882],[-163.052,122.83],[6.394,-21.853],[-126.074,156.869],[6.353,-21.745],[-65.055,189.772],[6.41,-21.653],[-38.196,196.33],[6.49,-21.672],[9.165,202.425],[6.572,-21.748],[31.821,199.416],[6.618,-21.678],[80.962,187.631],[6.693,-21.633],[105.49,178.451],[6.771,-21.613],[127.923,167.865],[6.814,-21.636],[157.975,144.18],[6.852,-21.668],[174.957,125.946],[6.803,-21.77],[204.438,84.094],[6.796,-21.806],[223.5,34.166],[6.878,-21.872],[227.667,12],[6.953,-21.933],[227.062,-61.507],[6.971,-22.033],[213.309,-104.148],[6.911,-22.091],[198.057,-137.596],[6.866,-22.157],[195.667,-144],[6.827,-22.216],[142.865,-200.118],[6.778,-22.254],[122.503,-211.157],[6.739,-22.284],[84.324,-230.568],[6.689,-22.254],[51.431,-240.604],[6.58,-22.306]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":80},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.001,0.031,0.138,0.537,0.707,0.106,0.275,0.555,1,0.182,0.412,0.573]}},"s":{"a":0,"k":[4,-20]},"e":{"a":0,"k":[177.39,-20]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":-4,"op":99,"st":-65,"bm":0}]},{"id":"comp_7","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"picies2","sr":1,"ks":{"p":{"a":0,"k":[257.33,185.73,0]},"a":{"a":0,"k":[-265.67,-10.27,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,-0.35],[53.84,0],[-19.93,11.56],[-1,-40.01]],"o":[[0,50.03],[-31.67,-34.87],[39.26,-0.87],[0.01,0.35]],"v":[[-168.19,-10.27],[-265.67,80.32],[-266.5,-79.82],[-168.2,-11.32]],"c":true}]},{"t":35,"s":[{"i":[[0,-0.004],[0.613,0],[-0.227,0.132],[-0.011,-0.455]],"o":[[0,0.569],[-0.36,-0.397],[0.447,-0.01],[0,0.004]],"v":[[-145.03,70.7],[-146.14,71.731],[-146.149,69.909],[-145.03,70.688]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.5,-7],[15.65,-61.05],[-53.84,0]],"o":[[0,0],[0,-50.03],[0,0]],"v":[[-266.5,-79.82],[-363.15,-10.27],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.013,-0.036],[0.08,-0.312],[-0.275,0]],"o":[[0,0],[0,-0.256],[0,0]],"v":[[-383.165,-126.689],[-383.659,-126.333],[-383.161,-126.797]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.6,-49.55],[39.26,-0.87],[0,0]],"o":[[-1,-40.01],[-2.5,-7],[53.46,0]],"v":[[-168.2,-11.32],[-266.5,-79.82],[-265.67,-100.86]],"c":true}]},{"t":35,"s":[{"i":[[-0.018,-1.483],[1.175,-0.026],[0,0]],"o":[[-0.03,-1.198],[-0.075,-0.21],[1.6,0]],"v":[[-162.091,-102.75],[-165.034,-104.8],[-165.009,-105.43]],"c":true}]}]},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.360784313725,0.698039215686,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-31.67,-34.87],[0,50.03],[0,0]],"o":[[-53.84,0],[15.65,-61.05],[-19.93,11.56]],"v":[[-265.67,80.32],[-363.15,-10.27],[-266.5,-79.82]],"c":true}]},{"t":35,"s":[{"i":[[-0.099,-0.109],[0,0.156],[0,0]],"o":[[-0.168,0],[0.049,-0.191],[-0.062,0.036]],"v":[[-415.258,90.5],[-415.562,90.217],[-415.26,90]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.286274509804,0.552941176471,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 3","hd":false},{"ty":"tr","p":{"a":0,"k":[-314.41,0.25]},"a":{"a":0,"k":[-314.41,0.25]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0.207843152214,0.400000029919,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-265.67,-10.27]},"a":{"a":0,"k":[-265.67,-10.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":30,"op":35,"st":2,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"picies","sr":1,"ks":{"p":{"a":0,"k":[255,191.406,0]},"a":{"a":0,"k":[0,45.406,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-14.81,-13.46],[11.95,21.92],[1.11,16.11],[-22.44,-7.84],[-11.16,1.15]],"o":[[-22.91,4.11],[-6.67,-12.23],[5.79,24.31],[9.97,3.48],[-0.13,0.68]],"v":[[10.978,133.929],[-49.332,107.219],[-76.002,35.549],[-29.982,86.199],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[0.042,0.009],[-0.025,-0.045],[-0.002,-0.033],[0.03,0.046],[0.013,0.008]],"o":[[0.048,-0.009],[0.014,0.025],[-0.012,-0.05],[-0.009,-0.013],[-0.02,-0.013]],"v":[[-71.68,195.17],[-71.555,195.225],[-71.5,195.374],[-71.582,195.231],[-71.615,195.198]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-20.7,35.34],[6.66,-12.23],[15.67,-2.82],[0,0],[-0.13,0.68]],"o":[[-1.11,16.11],[-8.18,15],[0,0],[-14.81,-13.46],[25.91,-2.68]],"v":[[75.998,35.549],[49.338,107.219],[10.988,133.929],[10.978,133.929],[2.028,89.909]],"c":true}]},{"t":36,"s":[{"i":[[-0.149,0.254],[0.048,-0.088],[0.112,-0.02],[0,0],[-0.001,0.005]],"o":[[-0.008,0.116],[-0.059,0.108],[0,0],[0.129,-0.1],[0.093,-0.157]],"v":[[73.967,180.898],[73.775,181.412],[73.5,181.604],[73.5,181.604],[73.665,181.395]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[4.69,-50.46],[25.91,-2.68],[9.97,3.48],[-5.65,29.96],[19.36,23.12]],"o":[[-20.7,35.34],[-11.16,1.15],[25.15,-11.39],[3.71,-19.59],[38.33,2.51]],"v":[[75.998,35.549],[2.028,89.909],[-29.982,86.199],[26.648,21.049],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.019,-0.202],[0.104,-0.011],[0.04,0.014],[-0.023,0.12],[0.077,0.092]],"o":[[-0.083,0.141],[-0.045,0.005],[0.101,-0.046],[0.015,-0.078],[0.153,0.01]],"v":[[154.424,34.876],[154.128,35.094],[154,35.079],[154.226,34.818],[154.144,34.559]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[3.71,-19.59],[21,-18.31],[-37.83,-2.49]],"o":[[-10.36,-22.61],[4.41,-44.16],[19.36,23.12]],"v":[[26.648,21.049],[-76.002,18.639],[6.078,-43.891]],"c":true}]},{"t":36,"s":[{"i":[[0.012,-0.061],[0.066,-0.057],[-0.118,-0.008]],"o":[[-0.032,-0.071],[0.014,-0.138],[0.06,0.072]],"v":[[1.192,-97.167],[0.872,-97.174],[1.128,-97.369]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-10.36,-22.61],[25.15,-11.39],[5.79,24.31],[-0.53,5.3]],"o":[[-5.65,29.96],[-22.44,-7.84],[-0.55,-5.97],[21,-18.31]],"v":[[26.648,21.049],[-29.982,86.199],[-76.002,35.549],[-76.002,18.639]],"c":true}]},{"t":36,"s":[{"i":[[-0.156,-0.229],[0.005,-0.198],[0.125,0.524],[-0.011,0.114]],"o":[[0.175,0.257],[-0.483,-0.169],[-0.012,-0.129],[0.113,0.148]],"v":[[-149.053,15.247],[-148.42,15.955],[-149.412,14.864],[-149.412,14.5]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.360784313725,0.698039215686,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 5","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.207843137255,0.4,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,45.406]},"a":{"a":0,"k":[0,45.406]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":31,"op":36,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Null 3","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[256]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":21,"s":[257.445]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[251.735]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[262.162]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[256.384]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[256.888]},{"t":29,"s":[254.404]}]},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20,"s":[198]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[190.425]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[197.133]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[186.523]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[194.791]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26,"s":[186.058]},{"t":29,"s":[194.761]}]}},"a":{"a":0,"k":[50,50,0]}},"ao":0,"ip":20,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"Null 19","parent":3,"sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[50,108,0],"to":[0,0,0],"ti":[0,0,0]},{"t":30,"s":[50,1,0]}]}},"ao":0,"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"blik","parent":6,"sr":1,"ks":{"p":{"a":0,"k":[20.897,-88.771,0]},"a":{"a":0,"k":[19.25,-92,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[98.282,62.507],[32.976,130.655],[10.893,-24.206]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[109.918,84.947],[41.535,169.497],[12.437,7.17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":8},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-131]},{"t":30,"s":[-5]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8.571},"lc":2,"lj":2,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":2}},{"n":"g","nm":"gap","v":{"a":0,"k":12}},{"n":"d","nm":"dash2","v":{"a":0,"k":297}},{"n":"o","nm":"offset","v":{"a":0,"k":0}}],"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":-60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"rocket_cap","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,-33.889,0]},"a":{"a":0,"k":[0,-33.889,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.427,-0.298],[-30.5,146.5]],"o":[[0,13.193],[-55,1.5],[-0.5,0]],"v":[[80.444,-33.889],[0,-10],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[24.905,-1.3],[-8.202,27.448]],"o":[[0,40.169],[-45,-4.333],[2.417,-2.431]],"v":[[87.389,21.435],[22.083,89.583],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[23.059,-1.647],[-4.109,3.995]],"o":[[0,50.031],[-47.216,-6.039],[3.294,-3.203]],"v":[[97.776,39.412],[29.392,123.961],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.360784313725,0.698039215686,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[0,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[0,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-200]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-61.227],[48.264,0],[0,40.168],[0,0]],"o":[[0,40.168],[-48.264,0],[0,-61.227],[0,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-65.278]],"c":true}]},{"t":30,"s":[{"i":[[0,-77.778],[53.838,0],[0,50.031],[0,0]],"o":[[0,50.031],[-53.838,0],[0,-77.778],[0,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-38.366]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.286274509804,0.552941176471,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-105]},"a":{"a":0,"k":[0,-105]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 2","bm":0,"hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-13.193],[44.428,0],[0,13.193],[-44.428,0]],"o":[[0,13.193],[-44.428,0],[0,-13.193],[44.428,0]],"v":[[80.444,-33.889],[0,-10],[-80.444,-33.889],[0,-57.778]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,-40.168],[48.264,0],[0,40.168],[-48.264,0]],"o":[[0,40.168],[-48.264,0],[0,-40.168],[48.264,0]],"v":[[87.389,21.435],[0,94.167],[-87.389,21.435],[0,-51.296]],"c":true}]},{"t":30,"s":[{"i":[[0,-50.031],[53.838,0],[0,50.031],[-53.838,0]],"o":[[0,50.031],[-53.838,0],[0,-50.031],[53.838,0]],"v":[[97.776,39.412],[0.294,130],[-97.187,39.412],[0.294,-51.176]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.360784313725,0.698039215686,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-33.889]},"a":{"a":0,"k":[0,-33.889]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false},{"ty":"st","c":{"a":0,"k":[0,0.207843137255,0.4,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":24},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"rocket body 2 outlines","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.207843137255,0.4,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":12},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"rocket body 2 shadows","parent":10,"sr":1,"ks":{"o":{"a":0,"k":50},"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0.667,-19.333],[7.333,22.167],[0,0]],"o":[[0,0],[0.167,0.667],[-3.217,-9.726],[0,0]],"v":[[-13.222,-18.222],[-12.667,177.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[0.167,-11.222],[18.833,29.278],[1.111,16.111]],"o":[[-1.111,16.111],[-15.833,-1.222],[-7.532,-11.709],[0,0]],"v":[[8,37.056],[7.333,133.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.207843137255,0.4,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"lines2","parent":10,"sr":1,"ks":{"p":{"a":0,"k":[-4.5,135.446,0]},"a":{"a":0,"k":[-4.5,135.446,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,23.25],[0,0],[-72.25,-0.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-66,-10.75],[65.25,58.5],[66.5,12.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[65.75,25],[68.5,-17]],"c":true}]},{"t":10,"s":[{"i":[[19,23.25],[0,0],[-70.25,-2.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-45,-7]],"v":[[-67.5,-34.25],[-67,-26.25],[68.25,-15],[68.5,-17]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-71.75,9],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-65,33.75],[-62.5,74.75],[60.75,137],[62.5,98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-66.5,2.75],[-65,41.25],[61.75,99],[65,63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[26,30.25],[0,0],[-71.75,10.5],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-66,19.75],[62.75,70.5],[68,37]],"c":true}]},{"t":15,"s":[{"i":[[26,30.25],[0,0],[-54.75,16],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50,5]],"v":[[-68.5,-6.75],[-65.5,15.25],[65.75,49],[71,14]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-56.25,160.5],[-56,160.5],[49.25,167.75],[49.75,168]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-54.5,154.25],[-54.25,154.25],[43,161.5],[43.5,161.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[20,16.5],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[13.25,13.75],[-0.25,0],[-50.75,19]],"v":[[-53.75,148],[-53.5,148],[42.25,155.5],[42.75,155.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[17.5,26],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-52.5,136.25],[-52.75,136.25],[42.25,147.75],[42.5,147.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-57.25,102.5],[-55,120.25],[43.25,137.5],[44,133.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-59.25,89.5],[-54.25,106.75],[42.5,128],[48,118.75]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-58.5,71.75],[-53.5,89],[43.25,110.25],[48.75,101]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-58.5,158.5],[-58.25,158.5],[53.5,166],[54,165]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[19,27.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-57.25,147],[-57.25,147.5],[50.5,160],[50,161]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[24.25,45.5],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-60.5,106.5],[-58.75,138.5],[51,150],[51.25,149.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[24.25,45.5],[0,0],[-54.5,29.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.75,19]],"v":[[-62.5,78],[-58.25,106.75],[49,141.75],[53.5,124.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.25,35.75],[0,0],[-53.25,24.25],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,67.5],[-59.5,89.75],[50,121.5],[54.5,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,81.25],[52.25,106.5],[57.25,81]],"c":true}]},{"t":30,"s":[{"i":[[21.25,35.75],[0,0],[-49.75,27],[0,0]],"o":[[-0.25,0.25],[11.75,20.5],[-0.25,0],[-50.75,19]],"v":[[-62.5,63.25],[-60.75,70.5],[56.5,84.75],[57.25,81]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[25,44.25],[0,0],[-47,36.25],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-50.5,40.25]],"v":[[-61.5,114.75],[-59,155.75],[63.25,158],[63.5,157.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[25,44.25],[0,0],[-55,45.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-62,77.5],[-60.75,112.25],[60.75,151.25],[59.5,132.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[25,44.25],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-64.25,50.75],[-60.75,80.5],[58.25,128],[60.75,101.25]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[25,39],[0,0],[-58.5,22],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-65.5,33.75],[-63.75,59.5],[59,101.75],[61.5,76.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,49],[61,82.75],[63.75,62.25]],"c":true}]},{"t":25,"s":[{"i":[[25,39],[0,0],[-55.75,26.75],[0,0]],"o":[[-0.25,0.25],[13.75,25.75],[-0.25,0],[-51,12.25]],"v":[[-69.5,30],[-65,54.75],[62.25,76.25],[63.75,62.25]],"c":true}]}]},"nm":"Path 4","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.360784313725,0.698039215686,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"rocket body","parent":4,"sr":1,"ks":{"p":{"a":0,"k":[0,71.389,0]},"a":{"a":0,"k":[0,71.389,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[2.222,-10],[7.734,34.804],[0,0]],"o":[[0,0],[-7.676,34.543],[-2.222,-10],[0,0]],"v":[[68.778,-37.222],[59.333,153.333],[-59.333,153.333],[-68.778,-37.222]],"c":true}]},{"t":30,"s":[{"i":[[0,0],[6.667,-12.222],[20.133,36.91],[1.111,16.111]],"o":[[-1.111,16.111],[-20.133,36.911],[-6.667,-12.222],[0,0]],"v":[[76,35.556],[49.333,107.222],[-49.333,107.222],[-76,35.556]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.815686334348,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":30,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"t":31,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":4,"op":31,"st":4,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[255,394,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[258,356,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[255,327,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[261,292,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":6,"op":33,"st":6,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"t":28,"s":[256.5,371.5,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"t":28,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":8,"op":28,"st":8,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[283,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[257,472,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[283,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[262,427.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[280,323,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[279,288,0],"to":[0,0,0],"ti":[0,0,0]},{"t":29,"s":[259,328,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"t":29,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":2,"op":29,"st":2,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[231,397,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[252,494,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[232,354,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[254,428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[230,336,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[256.5,371.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[234,298,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[259,328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[239,262,0],"to":[0,0,0],"ti":[0,0,0]},{"t":33,"s":[264,326,0]}]},"a":{"a":0,"k":[-28,116,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"t":33,"s":[20,20,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[56,56]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.956862745098,0.854901960784,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-28,116]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":34,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"1536_fireworks_3 sec","refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[768,768,0]},"s":{"a":0,"k":[33.333,33.333,100]}},"ao":0,"w":1536,"h":1536,"ip":0,"op":180,"st":0,"bm":0}]}
\ No newline at end of file
diff --git a/Tests/LottieMesh/Resources/SUPER Fire.json b/Tests/LottieMesh/Resources/SUPER Fire.json
deleted file mode 100644
index a98220cd49..0000000000
--- a/Tests/LottieMesh/Resources/SUPER Fire.json
+++ /dev/null
@@ -1 +0,0 @@
-{"tgs":1,"v":"5.5.2","fr":60,"ip":0,"op":180,"w":512,"h":512,"nm":"!!!1536 scaled 512","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 21","sr":1,"ks":{"p":{"a":0,"k":[1066,1130,0]},"a":{"a":0,"k":[298,362,0]},"s":{"a":0,"k":[33,33,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-100,-560]],"o":[[0,0],[0,0]],"v":[[508,168],[-4,696]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-28,-356]],"o":[[0,0],[0,0]],"v":[[508,168],[244,604]],"c":false}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[44,-216]],"o":[[0,0],[0,0]],"v":[[508,168],[572,612]],"c":false}},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-48,-180]],"o":[[0,0],[0,0]],"v":[[508,168],[728,208]],"c":false}},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[92,-480]],"o":[[0,0],[0,0]],"v":[[508,168],[-192,392]],"c":false}},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[232,-220]],"o":[[0,0],[-194.813,184.737]],"v":[[508,168],[-68,-20]],"c":false}},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[124,-16]],"o":[[0,0],[0,0]],"v":[[508,168],[112,-288]],"c":false}},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[404,-348]],"c":false}},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[532,-464]],"c":false}},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[700,-100]],"c":false}},"nm":"Path 10","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[4]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"t":16,"s":[4]}]},"e":{"a":0,"k":5},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[115]},{"t":16,"s":[341]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.960784375668,0.717647075653,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.996078491211,0.745098054409,0.337254911661,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":32},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":1,"op":16,"st":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 22","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[100]},{"t":32,"s":[0]}]},"p":{"a":0,"k":[1066,1130,0]},"a":{"a":0,"k":[298,362,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[104,-684]],"o":[[0,0],[0,0]],"v":[[508,168],[236,412]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-12,-324]],"o":[[0,0],[0,0]],"v":[[508,168],[356,520]],"c":false}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[44,-216]],"o":[[0,0],[0,0]],"v":[[508,168],[612,440]],"c":false}},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[-16,-144]],"o":[[0,0],[0,0]],"v":[[508,168],[720,156]],"c":false}},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[92,-480]],"o":[[0,0],[0,0]],"v":[[508,168],[132,336]],"c":false}},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[236,-128]],"o":[[0,0],[-236,128]],"v":[[508,168],[40,116]],"c":false}},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[156,-128]],"o":[[0,0],[-156,128]],"v":[[508,168],[-20,-180]],"c":false}},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[244,-192]],"c":false}},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[708,-332]],"c":false}},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[724,-56]],"c":false}},"nm":"Path 10","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[168]},{"t":32,"s":[341]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.956862807274,0.68235296011,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.996078491211,0.643137276173,0.200000017881,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":32},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":5,"op":32,"st":5,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 20","sr":1,"ks":{"p":{"a":0,"k":[1066,1130,0]},"a":{"a":0,"k":[298,362,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[104,-684]],"o":[[0,0],[0,0]],"v":[[508,168],[88,556]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[476,708]],"c":false}},"nm":"Path 2","hd":false},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[44,-216]],"o":[[0,0],[0,0]],"v":[[508,168],[676,580]],"c":false}},"nm":"Path 3","hd":false},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[20,-228]],"o":[[0,0],[0,0]],"v":[[508,168],[712,288]],"c":false}},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[92,-480]],"o":[[0,0],[0,0]],"v":[[508,168],[24,300]],"c":false}},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[236,-128]],"o":[[0,0],[-236,128]],"v":[[508,168],[20,36]],"c":false}},"nm":"Path 6","hd":false},{"ind":6,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[108,-220]],"c":false}},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[340,-264]],"c":false}},"nm":"Path 8","hd":false},{"ind":8,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[644,-444]],"c":false}},"nm":"Path 9","hd":false},{"ind":9,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[508,168],[700,-100]],"c":false}},"nm":"Path 10","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3,"s":[115]},{"t":18,"s":[341]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.698039233685,0.215686291456,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.988235354424,0.341176480055,0.074509806931,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":32},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":3,"op":18,"st":3,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"smoke","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[90]},{"t":60,"s":[0]}]},"p":{"a":0,"k":[1264,984,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[141,141,100]}},"ao":0,"w":512,"h":768,"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"03 fire small wide cycle end 2","refId":"comp_2","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[-0.376]},{"t":87,"s":[4.959]}]},"p":{"a":0,"k":[740,1512.8,0]},"a":{"a":0,"k":[256,512,0]}},"ao":0,"w":512,"h":512,"ip":40,"op":88,"st":40,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"smoke2_36 sek","refId":"comp_5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[90]},{"t":86,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[736,1400,0],"to":[0,0,0],"ti":[0,0,0]},{"t":86,"s":[736,880,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-130,130,100]}},"ao":0,"w":512,"h":768,"ip":50,"op":86,"st":50,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[34.527,76.078],[108,-470]],"o":[[-118,-260],[-30.762,133.873]],"v":[[784,-84],[214,-262]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[0]},{"t":27,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[1,1,1,1]},{"t":27,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[32]},{"t":27,"s":[8]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[1,0.905882418156,0.298039227724,1]},{"t":27,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[48]},{"t":27,"s":[24]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":7,"op":27,"st":-73,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.598,83.469],[108,-470]],"o":[[-10,-232],[-30.762,133.873]],"v":[[756,84],[338,326]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"t":25,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[1,1,1,1]},{"t":25,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[32]},{"t":25,"s":[48]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[1,0.905882418156,0.298039227724,1]},{"t":25,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[48]},{"t":25,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":5,"op":25,"st":-75,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[54.505,63.318],[-124,-722]],"o":[[-334,-388],[23.251,135.38]],"v":[[756,84],[-54,706]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"t":22,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[1,1,1,1]},{"t":22,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[32]},{"t":22,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[1,0.905882418156,0.298039227724,1]},{"t":22,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[48]},{"t":22,"s":[80]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":2,"op":22,"st":-78,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Shape Layer 16","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[34.527,76.078],[108,-470]],"o":[[-118,-260],[-30.762,133.873]],"v":[[784,-84],[94,102]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":20,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1,1,1,1]},{"t":20,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[32]},{"t":20,"s":[48]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1,0.905882418156,0.298039227724,1]},{"t":20,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[48]},{"t":20,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":1,"op":21,"st":-80,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 18","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-51.827,65.529],[260,-30]],"o":[[174,-220],[-136.456,15.745]],"v":[[716,52],[426,-438]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"t":45,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[1,1,1,1]},{"t":46,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[32]},{"t":45,"s":[8]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[1,0.905882418156,0.298039227724,1]},{"t":46,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[48]},{"t":45,"s":[24]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":26,"op":45,"st":-55,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-51.827,65.529],[182,-228]],"o":[[174,-220],[-85.694,107.353]],"v":[[920,-16],[710,-234]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":20,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1,1,1,1]},{"t":20,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[32]},{"t":20,"s":[8]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1,0.905882418156,0.298039227724,1]},{"t":20,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[48]},{"t":20,"s":[24]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":1,"op":20,"st":-80,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"03 fire small wide1","refId":"comp_6","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[-4.281]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0.51]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[3.655]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[-3.133]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[-5.791]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[-0.014]},{"t":142,"s":[0]}]},"p":{"a":0,"k":[1152,1488.8,0]},"a":{"a":0,"k":[256,512,0]}},"ao":0,"w":512,"h":512,"ip":49,"op":173,"st":49,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"smoke2_36 sek 2","refId":"comp_9","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":144,"s":[90]},{"t":157,"s":[0]}]},"p":{"a":0,"k":[1176,1384,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[130,130,100]}},"ao":0,"w":512,"h":768,"ip":121,"op":157,"st":121,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 17","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[28.912,78.384],[204,-678]],"o":[[-90,-244],[-39.577,131.537]],"v":[[804,140],[290,690]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":40,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[1,1,1,1]},{"t":40,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[32]},{"t":40,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[1,0.905882418156,0.298039227724,1]},{"t":40,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[48]},{"t":40,"s":[80]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":20,"op":40,"st":-60,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[28.912,78.384],[-96,-702]],"o":[[-90,-244],[18.611,136.095]],"v":[[900,148],[650,678]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"t":49,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[1,1,1,1]},{"t":49,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[32]},{"t":49,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[1,0.905882418156,0.298039227724,1]},{"t":49,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[48]},{"t":49,"s":[80]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":29,"op":49,"st":-51,"bm":0},{"ddd":0,"ind":17,"ty":0,"nm":"02 fire middle","refId":"comp_10","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[5.472]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[1.181]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[3.12]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[-4.096]},{"t":107,"s":[0]}]},"p":{"a":0,"k":[372,1440,0]},"a":{"a":0,"k":[256,768,0]},"s":{"a":0,"k":[120,120,100]}},"ao":0,"w":512,"h":768,"ip":22,"op":142,"st":22,"bm":0},{"ddd":0,"ind":18,"ty":0,"nm":"smoke","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":140,"s":[90]},{"t":160,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[416,1348,0],"to":[0,0,0],"ti":[0,0,0]},{"t":160,"s":[416,1060,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[145,145,100]}},"ao":0,"w":512,"h":768,"ip":100,"op":160,"st":100,"bm":0},{"ddd":0,"ind":19,"ty":0,"nm":"01 fire small 3","refId":"comp_18","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[-0.87]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[9.498]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[5.62]},{"t":131,"s":[0]}]},"p":{"a":0,"k":[744,1316,0]},"a":{"a":0,"k":[256,512,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":70,"op":162,"st":70,"bm":0},{"ddd":0,"ind":20,"ty":0,"nm":"smoke 2","refId":"comp_24","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":154,"s":[90]},{"t":174,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[732,1248.798,0],"to":[0,0,0],"ti":[0,0,0]},{"t":174,"s":[732,1008.798,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-120,120,100]}},"ao":0,"w":512,"h":768,"ip":114,"op":174,"st":114,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Shape Layer 14","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[28.912,78.384],[64,-690]],"o":[[-90,-244],[-12.686,136.775]],"v":[[900,148],[298,506]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"t":70,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[1,1,1,1]},{"t":70,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[32]},{"t":70,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[1,0.905882418156,0.298039227724,1]},{"t":70,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[48]},{"t":70,"s":[80]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":50,"op":70,"st":-30,"bm":0},{"ddd":0,"ind":22,"ty":0,"nm":"smoke 2","refId":"comp_24","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[90]},{"t":131,"s":[0]}]},"p":{"a":0,"k":[784,1070.383,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[120,120,100]}},"ao":0,"w":512,"h":768,"ip":71,"op":131,"st":71,"bm":0},{"ddd":0,"ind":23,"ty":0,"nm":"02 fire middle 3","refId":"comp_25","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[-0.766]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[5.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[3.823]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[5.884]},{"t":106,"s":[1.622]}]},"p":{"a":0,"k":[792,1144,0]},"a":{"a":0,"k":[256,768,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":25,"op":113,"st":25,"bm":0},{"ddd":0,"ind":24,"ty":0,"nm":"smoke2_36 sek 2","refId":"comp_9","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[90]},{"t":134,"s":[0]}]},"p":{"a":0,"k":[596,764,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":98,"op":134,"st":98,"bm":0},{"ddd":0,"ind":25,"ty":0,"nm":"01 fire small wide2","refId":"comp_26","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[5.76]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[-1.041]},{"t":144,"s":[4.242]}]},"p":{"a":0,"k":[593.436,820.784,0]},"a":{"a":0,"k":[256,512,0]},"s":{"a":0,"k":[-80,80,100]}},"ao":0,"w":512,"h":512,"ip":60,"op":152,"st":60,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"Shape Layer 13","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[34.527,76.078],[108,-470]],"o":[[-118,-260],[-30.762,133.873]],"v":[[784,-84],[94,102]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"t":60,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[1,1,1,1]},{"t":60,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[32]},{"t":60,"s":[48]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[1,0.905882418156,0.298039227724,1]},{"t":60,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[48]},{"t":60,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":40,"op":60,"st":-40,"bm":0},{"ddd":0,"ind":27,"ty":0,"nm":"03 fire small wide cycle end 2","refId":"comp_2","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-3.983]},{"t":82,"s":[0]}]},"p":{"a":0,"k":[244,1056.8,0]},"a":{"a":0,"k":[256,512,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":35,"op":83,"st":35,"bm":0},{"ddd":0,"ind":28,"ty":0,"nm":"smoke2_36 sek 3","refId":"comp_27","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[90]},{"t":83,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":47,"s":[236,1004,0],"to":[0,0,0],"ti":[0,0,0]},{"t":83,"s":[236,732,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[110,110,100]}},"ao":0,"w":512,"h":768,"ip":47,"op":83,"st":47,"bm":0},{"ddd":0,"ind":29,"ty":0,"nm":"01 fire small","refId":"comp_28","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[-2.909]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0.418]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[-6.58]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[-1.563]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[5.03]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[7.741]},{"t":135,"s":[0]}]},"p":{"a":0,"k":[1152.795,555.98,0]},"a":{"a":0,"k":[256,512,0]}},"ao":0,"w":512,"h":512,"ip":20,"op":176,"st":20,"bm":0},{"ddd":0,"ind":30,"ty":0,"nm":"smoke 2","refId":"comp_24","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":119,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":129,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":159,"s":[90]},{"t":179,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[1192,500,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[1192,636,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":119,"op":179,"st":119,"bm":0},{"ddd":0,"ind":31,"ty":0,"nm":"smoke2_36 sek 2","refId":"comp_9","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":144,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":154,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":167,"s":[90]},{"t":180,"s":[0]}]},"p":{"a":0,"k":[296,644,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":144,"op":180,"st":144,"bm":0},{"ddd":0,"ind":32,"ty":0,"nm":"02 fire middle 2","refId":"comp_29","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[1.238]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[-3.101]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[-8.156]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-5.302]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[4.013]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":107,"s":[8.136]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":116,"s":[4.606]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[-7.186]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":141,"s":[-11.857]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[-7.113]},{"t":165,"s":[5.607]}]},"p":{"a":0,"k":[292.283,677.379,0]},"a":{"a":0,"k":[256,768,0]},"s":{"a":0,"k":[80,80,100]}},"ao":0,"w":512,"h":768,"ip":28,"op":180,"st":28,"bm":0},{"ddd":0,"ind":33,"ty":0,"nm":"smoke2_36 sek","refId":"comp_5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[90]},{"t":76,"s":[0]}]},"p":{"a":0,"k":[576,848,0]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":40,"op":76,"st":40,"bm":0},{"ddd":0,"ind":34,"ty":0,"nm":"03 fire small wide cycle end 2","refId":"comp_2","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0.759]},{"t":67,"s":[1.63]}]},"p":{"a":0,"k":[564,920.8,0]},"a":{"a":0,"k":[256,512,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"w":512,"h":512,"ip":20,"op":68,"st":20,"bm":0},{"ddd":0,"ind":35,"ty":0,"nm":"02 fire middle 3","refId":"comp_25","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[-0.899]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[-5.017]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[0.569]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[4.675]},{"t":108,"s":[0.39]}]},"p":{"a":0,"k":[657.596,487.985,0]},"a":{"a":0,"k":[256,768,0]},"s":{"a":0,"k":[50,50,100]}},"ao":0,"w":512,"h":768,"ip":27,"op":115,"st":27,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"Shape Layer 19","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.598,83.469],[184,-738]],"o":[[-10,-232],[-33.23,133.282]],"v":[[756,84],[-222,246]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"t":35,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[1,1,1,1]},{"t":35,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[32]},{"t":35,"s":[48]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[1,0.905882418156,0.298039227724,1]},{"t":35,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[48]},{"t":35,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":15,"op":35,"st":-65,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"p":{"a":0,"k":[527.164,1021,0]},"a":{"a":0,"k":[77.164,253,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.598,83.469],[496,-534]],"o":[[-10,-232],[-93.483,100.645]],"v":[[756,84],[-206,-122]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"t":28,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[1,1,1,1]},{"t":28,"s":[1,0.905882418156,0.298039227724,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[32]},{"t":28,"s":[48]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[1,0.905882418156,0.298039227724,1]},{"t":28,"s":[0.992156922817,0.321568638086,0.078431375325,1]}]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[48]},{"t":28,"s":[64]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":8,"op":28,"st":-72,"bm":0},{"ddd":0,"ind":38,"ty":0,"nm":"03 fire small wide cycle end 2","refId":"comp_2","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[-1.396]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[0.803]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[2.307]},{"t":92,"s":[0.387]}]},"p":{"a":0,"k":[900,364.8,0]},"a":{"a":0,"k":[256,512,0]},"s":{"a":0,"k":[70,70,100]}},"ao":0,"w":512,"h":512,"ip":45,"op":93,"st":45,"bm":0},{"ddd":0,"ind":39,"ty":0,"nm":"smoke 3","refId":"comp_30","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[90]},{"t":140,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[662,458,0],"to":[0,0,0],"ti":[0,0,0]},{"t":140,"s":[662,554,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[-90,90,100]}},"ao":0,"w":512,"h":768,"ip":80,"op":140,"st":80,"bm":0},{"ddd":0,"ind":40,"ty":0,"nm":"smoke2_36 sek 2","refId":"comp_9","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[90]},{"t":88,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[916,324,0],"to":[0,0,0],"ti":[0,0,0]},{"t":88,"s":[916,576,0]}]},"a":{"a":0,"k":[276,668,0]},"s":{"a":0,"k":[90,90,100]}},"ao":0,"w":512,"h":768,"ip":52,"op":88,"st":52,"bm":0},{"ddd":0,"ind":41,"ty":0,"nm":"smoke verkh","refId":"comp_31","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[90]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":139,"s":[90]},{"t":180,"s":[0]}]},"p":{"a":0,"k":[768,768,0]},"a":{"a":0,"k":[768,768,0]}},"ao":0,"w":1536,"h":1536,"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":42,"ty":0,"nm":"nakal4","refId":"comp_32","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[100]},{"t":166,"s":[0]}]},"p":{"a":0,"k":[768,768,0]},"a":{"a":0,"k":[768,768,0]}},"ao":0,"w":1536,"h":1536,"ip":0,"op":180,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[4.186,6.698],[-41.687,-10.636]],"o":[[-10.293,-16.469],[55.022,14.038]],"v":[[7.834,173.427],[18.299,221.462]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[14.361,7.522],[-30.261,-6.497]],"o":[[-24.248,-12.701],[34.72,7.454]],"v":[[35.139,128.628],[12.401,185.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":31,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.795,-2.463],[-22.463,0.136]],"o":[[-6.751,9.267],[21.909,-0.132]],"v":[[28.78,287.216],[26.463,308]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.778,-9.304],[-84.843,0.513]],"o":[[-25.5,35],[82.75,-0.5]],"v":[[35,213],[26.25,291.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[41.584,-3.199],[-34.387,-1.279]],"o":[[-37.621,2.894],[34.387,1.279]],"v":[[41.616,212.199],[44.975,259.221]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.857,-0.643],[-6.643,-0.429]],"o":[[-9.65,0.629],[6.643,0.429]],"v":[[38.138,192.643],[39.103,203.571]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[21.707,90.214],[22.029,93.857]],"c":true}]},{"t":41,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[19.707,-427.786],[20.029,-424.143]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[47.81,-67.072],[-25.632,9.313]],"o":[[-93.246,48.698],[25.632,-9.313]],"v":[[-74.754,121.302],[-13.132,182.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[16.302,-91.514],[22.297,-55.155]],"o":[[-51.846,41.486],[63.795,-25.293]],"v":[[-77.654,-43.486],[-14.297,37.655]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[65.508,-110.844],[-62.172,37.016]],"o":[[-46.719,4.672],[111.508,-8.984]],"v":[[-77.508,-81.156],[-31.508,-13.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[44.392,-34.904],[-43.656,10.635]],"o":[[-57.534,8.63],[43.656,-10.635]],"v":[[-64.892,-151.596],[-43.156,-90.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[45.056,-54.944],[-36.611,29.426]],"o":[[-75.944,-2.944],[74.944,33.426]],"v":[[-55.556,-184.556],[-45.389,-150.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[14.5,-3],[-14.25,5.5]],"o":[[-14.5,3],[14.25,-5.5]],"v":[[-44.875,-250.5],[-40.375,-234]],"c":true}]},{"t":60,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[38.071,2.586],[-51.674,3.841],[-14.328,5.136]],"o":[[-71.639,-4.866],[8.07,11.41],[22.966,-8.233]],"v":[[122.074,242.366],[89.943,278.535],[130.995,288.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[20.869,-12.454],[-146.79,82.022],[-12.062,30.104]],"o":[[-112.454,-96.052],[15.663,4.937],[27.265,-8.079]],"v":[[157.954,39.052],[123.79,100.978],[169.735,69.137]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[74.55,-67.464],[-92.612,89.3],[0.78,32.797]],"o":[[-175.95,-43.988],[-28.612,-55.2],[57.28,16.797]],"v":[[109.45,-30.036],[99.612,30.2],[150.72,14.703]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[79.321,-50.136],[-20.934,-21.241],[-26.364,9.073]],"o":[[-58.179,-42.136],[17.914,18.177],[76.169,29.621]],"v":[[102.679,-76.364],[46.086,-27.677],[111.331,-23.621]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[62.617,-21.138],[-8.337,-17.814],[-11.971,0.122]],"o":[[-29.444,-9.815],[3.681,7.865],[67.802,31.907]],"v":[[103.66,-125.362],[70.352,-89.569],[93.689,-75.907]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[19.334,0],[-4.841,-5.763],[-4.486,0.179]],"o":[[-13.412,0],[2.137,2.544],[14.647,-0.586]],"v":[[106.839,-168.5],[96.133,-153.01],[106.253,-148.873]],"c":true}]},{"t":60,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[29.237,-0.424],[18.659,-25.84],[-78.306,-8.932],[-2.4,-26.987],[0.564,-42.682],[30.491,12.722]],"o":[[-3.4,-14.426],[-41.473,-22.64],[-12.806,-41.432],[1.048,11.781],[27.835,19.62],[5.813,-25.223]],"v":[[106.649,132.4],[49.973,125.64],[49.306,238.932],[79.9,226.987],[116.436,225.182],[131.993,185.252]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[18.356,-65.631],[1.004,-68.279],[-92.58,7.072],[-16.188,1.28],[-17.016,-0.736],[29.057,17.998]],"o":[[12.356,-49.631],[-116.996,-73.279],[18.803,-1.436],[15.763,-1.246],[26.568,1.15],[25.666,-30.324]],"v":[[114.644,-62.369],[48.996,-92.721],[50.08,17.428],[99.158,-10.713],[145.932,9.85],[160.334,-37.676]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[40.408,-8.621],[8.905,-22.866],[-63.43,19.052],[-2.553,-27.854],[-0.664,-27.112],[37.995,7.577]],"o":[[-15.642,-10.077],[-92.499,-21.673],[-3,-37.948],[6.447,-39.854],[25.263,14.209],[-3.038,-25.183]],"v":[[102.472,-151.481],[53.507,-145.134],[65,-51.052],[106.553,-41.146],[153.664,-66.888],[163.996,-115.133]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[25.979,-38.681],[-12.816,-22.414],[-71.606,9.11],[-7.652,-23.023],[-8.541,18],[3.417,17.237]],"o":[[6.479,-39.181],[-74.816,-41.414],[-4.106,-29.39],[7.848,-31.023],[7.401,-15.598],[-5.628,-28.395]],"v":[[80.521,-174.319],[39.316,-172.086],[38.606,-82.61],[103.652,-89.977],[145.259,-114.137],[152.031,-167.148]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[35.852,-24.204],[6.121,-6.787],[-30.147,-5.617],[-12.364,11.19],[-4.863,14.486],[5.544,11.648]],"o":[[-15.19,-0.044],[-18.957,21.021],[11.029,2.055],[17.765,0.658],[4.214,-12.553],[-9.133,-19.188]],"v":[[66.426,-225.746],[34.942,-214.601],[66.05,-144.055],[101.841,-156.26],[135.809,-181.382],[133.83,-220.533]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[11.188,-2.48],[2.145,-2.133],[-8.537,-4.421],[-3.25,0.288],[-2.088,4.234],[1.472,3.752]],"o":[[-5.164,1.145],[-6.643,6.608],[3.123,1.618],[6.515,-0.577],[1.81,-3.669],[-2.424,-6.18]],"v":[[99.368,-273.52],[88.579,-268.455],[96.629,-247.5],[106.444,-245.289],[119.333,-253.457],[119.83,-265.206]],"c":true}]},{"t":60,"s":[{"i":[[2.469,0.044],[0.542,-0.415],[-1.676,-1.418],[-0.709,0.023],[-0.595,0.897],[0.16,0.894]],"o":[[-1.158,-0.021],[-1.68,1.285],[0.613,0.519],[1.347,-0.043],[0.516,-0.777],[-0.264,-1.473]],"v":[[96.518,-299.069],[93.999,-298.426],[94.96,-292.841],[96.99,-292.023],[99.944,-293.62],[100.503,-296.249]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-3.499,-24.848],[-6.884,-16.478],[-0.301,7.46],[-4.644,0.228],[-25.003,12.782],[33.341,-4.053]],"o":[[-34.078,22.449],[3.276,7.842],[1.294,-32.082],[19.012,20.499],[85.358,33.282],[-6.489,-19.362]],"v":[[-102.261,200.848],[-133.404,262.516],[-118.294,281.082],[-102.012,287.001],[-31.997,296.218],[-11.544,205.996]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-0.747,-48.874],[-2.455,-35.731],[-40.679,19.746],[-10.189,-28.494],[-11.643,4.734],[85.039,22.458]],"o":[[-21.211,-29.874],[-35.532,22.641],[-1.215,-25.539],[22.811,19.506],[80.357,20.734],[29.075,-42.399]],"v":[[-100.253,19.874],[-169.932,40.216],[-144.785,98.539],[-93.811,115.494],[-40.357,117.266],[-14.075,40.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[4.596,-2.157],[-2.838,-33.101],[-23.392,21.782],[64.52,-34.091],[-7.412,7.454],[7.166,18.65]],"o":[[-43.115,-41.195],[-25.698,17.837],[-20.978,-41.699],[20.24,22.409],[13.576,-13.654],[-5.083,-13.23]],"v":[[-78.36,-37.305],[-165.347,-14.561],[-142.022,35.199],[-94.52,47.591],[-39.74,43.428],[-28.273,-12.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.586,24.077],[1.481,-16.058],[-4.9,-5.507],[-10.179,0.727],[8.719,-39.971],[89.45,-41.348]],"o":[[-19.447,-7.56],[-0.705,7.642],[4.542,5.105],[-3.153,-23.324],[83.219,35.029],[-14.55,-40.348]],"v":[[-113.586,-84.077],[-147.276,-60.135],[-141.231,-39.204],[-119.347,-31.676],[-66.219,-26.529],[-64.45,-76.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.764,-16.52],[-0.797,-14.42],[-5.435,-4.397],[-9.222,1.812],[-4.425,5.611],[7.725,10.732]],"o":[[-22.868,-5.87],[0.379,6.863],[5.039,4.077],[14.57,16.763],[8.105,-10.278],[-5.48,-7.613]],"v":[[-80.463,-124.48],[-113.116,-101.094],[-104.345,-83.066],[-82.915,-78.763],[-39.977,-80.996],[-37.614,-117.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[9.081,-4.12],[1.941,-4.856],[-0.074,-2.217],[-1.433,-1.373],[-2.412,2.764],[3.877,5.235]],"o":[[-4.629,2.1],[-0.924,2.311],[0.069,2.056],[11.907,11.408],[4.417,-5.063],[-2.75,-3.714]],"v":[[-75.274,-166.527],[-85.585,-154.758],[-86.926,-147.859],[-85.155,-142.261],[-54.718,-143.901],[-53.648,-161.404]],"c":true}]},{"t":60,"s":[{"i":[[0.601,-0.289],[0.013,-0.847],[-0.221,-0.37],[-0.364,-0.269],[-0.704,0.652],[0.934,1.027]],"o":[[-1.307,0.628],[-0.006,0.403],[0.205,0.343],[0.87,0.643],[1.289,-1.194],[-0.662,-0.729]],"v":[[-79.613,-181.42],[-81.494,-179.083],[-81.161,-177.91],[-80.299,-176.982],[-73.89,-177.455],[-73.114,-181.387]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":20,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.101,9.761],[-60.75,-15.5]],"o":[[-15,-24],[80.183,20.458]],"v":[[0,163],[15.25,233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21,11],[-44.25,-9.5]],"o":[[-35.458,-18.573],[50.771,10.9]],"v":[[35,125],[1.75,207.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":31,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.795,-2.463],[-22.463,0.136]],"o":[[-6.751,9.267],[21.909,-0.132]],"v":[[28.78,287.216],[26.463,308]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.778,-9.304],[-84.843,0.513]],"o":[[-25.5,35],[82.75,-0.5]],"v":[[35,213],[26.25,291.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[65,-5],[-53.75,-2]],"o":[[-58.805,4.523],[53.75,2]],"v":[[34,209.5],[39.25,283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[23,-1.5],[-15.5,-1]],"o":[[-22.516,1.468],[15.5,1]],"v":[[35.5,190.5],[37.75,216]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[21.707,90.214],[22.029,93.857]],"c":true}]},{"t":41,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[19.707,-427.786],[20.029,-424.143]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[69.5,-97.5],[-113.5,45]],"o":[[-66.5,8.5],[86.092,-34.134]],"v":[[-90.5,124.5],[-22,227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[22,-123.5],[-113.5,45]],"o":[[-41.5,7],[86.092,-34.134]],"v":[[-91.5,-56.5],[-6,53]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[29.5,-125],[-86.5,51.5]],"o":[[-65,6.5],[164.5,11.5]],"v":[[-87.5,-87],[-23.5,-7.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[71,-76.5],[-34.5,28]],"o":[[-90,13.5],[106.5,47.5]],"v":[[-68.5,-157.5],[-34.5,-62.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[48.5,-66],[-34.5,28]],"o":[[-81,3],[106.5,47.5]],"v":[[-57.5,-194],[-53,-132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[29,-6],[-28.5,11]],"o":[[-29,6],[28.5,-11]],"v":[[-46,-251.5],[-37,-218.5]],"c":true}]},{"t":60,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[70.414,4.783],[-95.574,7.104],[-26.5,9.5]],"o":[[-132.5,-9],[14.926,21.104],[42.478,-15.228]],"v":[[116,239],[56.574,305.896],[132.5,325]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[31,-18.5],[-168.751,36.203],[-17.918,44.718]],"o":[[-248,-61.5],[23.267,7.334],[40.5,-12]],"v":[[167,24],[116.251,135.297],[184.5,88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[101,-20.5],[-133.016,57.816],[-23.678,31.225]],"o":[[-222,-55.5],[17.83,12.614],[53,-13]],"v":[[114.5,-57.5],[94.516,65.184],[159,45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[108,-21],[-25.045,-34.694],[-37.826,13.017]],"o":[[-46.826,-19.424],[11.058,15.318],[78.5,26]],"v":[[96,-99.5],[40.628,-7.406],[112,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[78.5,-26.5],[-10.452,-22.332],[-15.008,0.153]],"o":[[-36.913,-12.304],[4.615,9.86],[85,40]],"v":[[101.5,-126.5],[59.744,-81.628],[89,-64.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[33,0],[-8.262,-9.837],[-7.657,0.306]],"o":[[-22.893,0],[3.648,4.343],[25,-1]],"v":[[103,-170],[84.726,-143.561],[102,-136.5]],"c":true}]},{"t":60,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[40.224,-0.584],[25.671,-35.551],[-117.344,4.076],[-13.845,-2.09],[-15.219,20.222],[41.95,17.503]],"o":[[-4.678,-19.848],[-63.829,-76.551],[7.749,18.334],[16.09,2.429],[38.296,26.994],[7.997,-34.703]],"v":[[108.178,121.348],[34.329,117.551],[25.844,278.924],[70,279],[118.204,260.006],[148.55,186.497]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[42.564,-6.226],[40.813,-50.225],[-85.297,31.262],[-32.063,3.791],[-15.43,23.796],[36.231,22.442]],"o":[[-6.076,-18.138],[-120.187,-27.225],[8.47,17.96],[23.983,5.161],[35.183,9.711],[3.616,-40.885]],"v":[[125.779,-104.633],[37.687,-123.775],[35.297,47.238],[94,72],[154.817,37.789],[175.269,-33.942]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[50.807,-10.84],[11.197,-28.751],[-79.754,23.956],[-21.881,6.283],[-12.991,22.817],[47.774,9.527]],"o":[[-19.668,-12.67],[-116.303,-27.251],[12.896,12.677],[24.971,6.064],[31.765,17.866],[-3.819,-31.664]],"v":[[94.869,-161.73],[33.303,-153.749],[47.754,-35.456],[100,-23],[159.235,-55.366],[172.226,-116.027]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[61.33,-27.94],[13.035,-11.794],[-88,34.498],[-24.613,14.871],[-11.285,23.783],[4.514,22.775]],"o":[[-22.734,-8.189],[-81.69,0.79],[16.437,2.441],[24.287,7.59],[9.779,-20.609],[-7.436,-37.518]],"v":[[69.474,-198.525],[15.69,-190.29],[42.5,-42.998],[104,-60],[158.974,-91.922],[167.923,-161.964]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[49.628,-33.504],[8.473,-9.395],[-41.73,-7.776],[-17.115,15.49],[-6.732,20.052],[7.675,16.124]],"o":[[-21.027,-0.06],[-26.241,29.098],[15.267,2.845],[24.591,0.911],[5.833,-17.376],[-12.642,-26.561]],"v":[[48.978,-222.185],[5.396,-206.758],[48.457,-109.106],[98,-126],[145.019,-160.775],[142.281,-214.968]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[20.595,-4.565],[3.948,-3.927],[-15.714,-8.139],[-5.982,0.53],[-3.844,7.794],[2.709,6.906]],"o":[[-9.506,2.107],[-12.229,12.163],[5.749,2.978],[11.992,-1.063],[3.331,-6.754],[-4.463,-11.376]],"v":[[87.975,-274.467],[68.116,-265.142],[82.934,-226.569],[101,-222.5],[124.726,-237.535],[125.642,-259.162]],"c":true}]},{"t":60,"s":[{"i":[[4.312,0.077],[0.947,-0.725],[-2.927,-2.476],[-1.238,0.04],[-1.039,1.566],[0.28,1.562]],"o":[[-2.023,-0.036],[-2.933,2.244],[1.071,0.906],[2.353,-0.076],[0.9,-1.357],[-0.461,-2.572]],"v":[[95.675,-299.303],[91.277,-298.18],[92.954,-288.429],[96.5,-287],[101.657,-289.789],[102.633,-294.38]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-4.046,-28.733],[-7.961,-19.055],[-7.058,-4.972],[-5.37,0.263],[-10.383,14.21],[38.553,-4.686]],"o":[[-39.406,25.959],[3.789,9.068],[6.543,4.609],[20.166,40.644],[98.704,38.486],[-7.504,-22.39]],"v":[[-106.454,196.733],[-142.466,268.042],[-124.994,289.511],[-106.166,296.356],[-25.204,307.014],[-1.553,202.686]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[7.754,-10.103],[-2.864,-41.686],[-47.459,23.038],[-17.819,6.695],[-11.001,13.349],[99.213,26.201]],"o":[[-24.746,-34.853],[-41.454,26.415],[10.089,11.703],[9.571,21.591],[45.708,87.19],[-6.546,-22.901]],"v":[[-105.754,6.853],[-187.046,30.585],[-146.041,114.963],[-104.071,125.409],[-34.708,136.81],[-5.213,30.799]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[5.648,-2.651],[-3.488,-40.68],[-28.748,26.769],[-22.563,7.933],[-9.109,9.161],[8.807,22.921]],"o":[[-52.986,-50.627],[-31.582,21.921],[15.404,15.153],[24.874,27.539],[16.685,-16.781],[-6.247,-16.259]],"v":[[-65.014,-36.373],[-171.918,-8.421],[-143.252,52.731],[-84.874,67.961],[-17.551,62.845],[-3.459,-5.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.861,-24.879],[2.389,-25.903],[-7.904,-8.883],[-16.419,1.173],[-8.619,13.394],[50.602,-9.162]],"o":[[-31.37,-12.195],[-1.137,12.327],[7.327,8.235],[20.153,51.095],[59.455,-7.707],[-9.228,-15.356]],"v":[[-114.361,-87.621],[-168.705,-49.001],[-158.954,-15.239],[-123.653,-3.095],[-37.955,5.207],[-35.102,-74.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.907,-25.093],[-1.21,-21.904],[-8.256,-6.68],[-14.008,2.753],[-6.721,8.523],[11.735,16.301]],"o":[[-34.736,-8.916],[0.576,10.424],[7.654,6.192],[22.131,25.463],[12.311,-15.612],[-8.324,-11.564]],"v":[[-85.407,-125.907],[-135.006,-90.384],[-121.683,-62.999],[-89.131,-56.463],[-23.909,-59.855],[-20.32,-115.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[16.089,-7.299],[3.439,-8.602],[-0.131,-3.928],[-2.539,-2.432],[-4.273,4.897],[6.868,9.275]],"o":[[-8.201,3.721],[-1.637,4.094],[0.122,3.642],[21.095,20.211],[7.826,-8.97],[-4.872,-6.579]],"v":[[-77.089,-167.201],[-95.356,-146.351],[-97.732,-134.128],[-94.595,-124.211],[-40.671,-127.117],[-38.776,-158.124]],"c":true}]},{"t":60,"s":[{"i":[[1.463,-0.702],[0.031,-2.062],[-0.538,-0.9],[-0.887,-0.655],[-1.713,1.587],[2.273,2.5]],"o":[[-3.182,1.528],[-0.015,0.981],[0.498,0.834],[2.118,1.565],[3.138,-2.907],[-1.612,-1.773]],"v":[[-78.589,-181.314],[-83.167,-175.626],[-82.357,-172.772],[-80.258,-170.512],[-64.659,-171.663],[-62.771,-181.234]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 12","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,495,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"t":8,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":28,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"core","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"t":20,"s":[0]}]},"p":{"a":0,"k":[4.85,-0.729,0]},"a":{"a":0,"k":[-51.438,222.044,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[18.197,16.546],[-41.985,0.511],[69.85,68.547]],"o":[[-53.725,57.166],[41.194,-0.501],[-14.905,76.809]],"v":[[-60.485,-15.773],[2.147,99.863],[27.617,-48.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0.068,-0.429],[-35.745,0.435],[65.918,79.024]],"o":[[-55.611,56.567],[35.071,-0.427],[-0.687,-0.216]],"v":[[-9.918,-30.798],[-3.59,87.929],[-8.638,-29.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.069,-0.44],[-31.286,-32.594],[40.368,45.715]],"o":[[-28.033,10.909],[28.162,-20.704],[-0.705,-0.222]],"v":[[18.029,13.22],[1.286,91.311],[19.344,14.083]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.086,-0.545],[-13.305,-8.903],[-4.886,23.805]],"o":[[-34.696,13.502],[52.246,-21.612],[-0.872,-0.275]],"v":[[0.536,-65.183],[9.914,2.038],[2.164,-64.114]],"c":true}]},{"t":20,"s":[{"i":[[0.128,-0.814],[-10.891,-11.311],[27.696,1.589]],"o":[[20.128,26.186],[43.109,-11.311],[-1.304,-0.411]],"v":[[11.872,-133.186],[21.891,-73.689],[14.304,-131.589]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"second","parent":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"t":20,"s":[0]}]},"p":{"a":0,"k":[2,-97,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[112.946,110.839]],"o":[[-86.872,92.436],[66.609,-0.811],[-1.054,155.839]],"v":[[-75.128,-84.436],[1.891,99.311],[22.054,-139.839]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0.128,-0.814],[-67.889,0.826],[125.196,150.089]],"o":[[-105.622,107.436],[66.609,-0.811],[-1.304,-0.411]],"v":[[-13.128,-140.186],[-1.109,85.311],[-10.696,-138.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.128,-0.814],[-57.891,-60.311],[74.696,84.589]],"o":[[-51.872,20.186],[52.109,-38.311],[-1.304,-0.411]],"v":[[33.872,-53.186],[2.891,91.311],[36.304,-51.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.128,-0.814],[-19.891,-13.311],[-7.304,35.589]],"o":[[-51.872,20.186],[78.109,-32.311],[-1.304,-0.411]],"v":[[-2.128,-99.186],[11.891,1.311],[0.304,-97.589]],"c":true}]},{"t":20,"s":[{"i":[[0.128,-0.814],[-10.891,-11.311],[27.696,1.589]],"o":[[20.128,26.186],[43.109,-11.311],[-1.304,-0.411]],"v":[[11.872,-133.186],[21.891,-73.689],[14.304,-131.589]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"main 2","parent":1,"sr":1,"ks":{"p":{"a":0,"k":[0,-111,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-49.509,44.388],[123.533,-38.986]],"o":[[-17.509,54.388],[-101.467,-137.986]],"v":[[138.509,-106.388],[72.467,102.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-54.652,117.814],[96.514,-88.952]],"o":[[39.848,36.814],[-55.486,-82.702]],"v":[[122.902,-122.064],[135.986,59.452]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-69.795,121.239],[25.494,-72.919]],"o":[[-6.795,25.239],[-9.506,-27.419]],"v":[[118.295,-144.739],[157.506,-8.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-47.393,78.823],[5.657,-37.203]],"o":[[-20.938,53.232],[-20.343,-15.203]],"v":[[125.938,-167.732],[170.343,-77.797]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-14.581,12.011],[1.034,-14.274]],"o":[[-8.51,26.743],[-24.109,4.012]],"v":[[132.081,-191.511],[118.466,-138.726]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[-8.189,4.595],[5.817,-6.951]],"o":[[0.811,6.877],[-3.683,-1.451]],"v":[[129.689,-209.345],[131.183,-194.049]],"c":true}]},{"t":20,"s":[{"i":[[-8.189,4.595],[5.817,-6.951]],"o":[[0.811,6.877],[-3.683,-1.451]],"v":[[139.689,-425.345],[141.183,-410.049]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[116.786,0],[11,144.667]],"o":[[-317,-127.726],[249,149.667]],"v":[[-1,113.726],[-1,-153.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[120.519,-22.794],[-202.241,204.246]],"o":[[-143.695,27.178],[23.759,129.246]],"v":[[0.481,97.794],[0.241,-202.246]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[168.037,-36.863],[3.518,139.825]],"o":[[-193.963,-76.863],[211.518,139.825]],"v":[[1.963,81.863],[-26.518,-251.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[78.037,-55.931],[-63.722,35.404]],"o":[[-42.963,-53.931],[-21.722,38.404]],"v":[[2.963,-132.069],[27.722,-295.404]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[3.963,-346],[3.963,-347.983]],"c":true}]},{"t":17,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[25.963,-410],[25.963,-411.983]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[150.97,-29.436],[-7.904,50.282],[-29.987,22.93],[31.343,22.513]],"o":[[-171.03,-96.436],[20.614,30.124],[20.013,43.93],[96.97,73.457]],"v":[[0.03,113.436],[-84.471,-110.907],[-1.013,-82.93],[77.03,-95.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[263.97,-70.436],[41.784,65.595],[-24.463,-11.448],[-17.438,27.049]],"o":[[-288.03,-110.436],[28.054,20.833],[28.268,13.229],[-17.53,86.457]],"v":[[0.03,113.436],[-88.471,-144.407],[-8.648,-91.164],[61.53,-104.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[150.97,-29.436],[-32.029,33.907],[-26.789,24.397],[-10.737,32.946]],"o":[[-259.03,-106.436],[23.879,14.802],[25.211,25.397],[-2.03,120.457]],"v":[[0.03,113.436],[-60.471,-110.407],[27.789,-112.897],[118.03,-147.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[182.97,-93.436],[-9.029,35.657],[0,0],[-0.28,-0.293]],"o":[[-109.03,-114.436],[-0.029,0.657],[0,0],[30.72,63.707]],"v":[[0.03,113.436],[31.029,-60.657],[31.387,-61.673],[31.28,-60.707]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[122.605,-62.61],[-52.544,10.197],[0,0],[-0.187,-0.196]],"o":[[-64.272,-70.959],[-0.019,0.44],[0,0],[-33.712,34.231]],"v":[[10.772,31.459],[11.544,-98.197],[11.784,-98.878],[11.712,-98.231]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[62.24,-31.783],[36.94,34.738],[0,0],[-0.095,-0.1]],"o":[[-19.515,-27.482],[-0.01,0.223],[0,0],[53.855,13.755]],"v":[[21.515,-50.518],[-7.94,-135.738],[-7.818,-136.083],[-7.855,-135.755]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[16.966,-8.664],[-0.837,3.306],[0,0],[-0.026,-0.027]],"o":[[-10.11,-10.611],[-0.003,0.061],[0,0],[2.849,5.907]],"v":[[-8.428,-142],[-5.554,-158.143],[-5.52,-158.237],[-5.53,-158.148]],"c":true}]},{"t":24,"s":[{"i":[[16.966,-8.664],[-0.837,3.306],[0,0],[-0.026,-0.027]],"o":[[-10.11,-10.611],[-0.003,0.061],[0,0],[2.849,5.907]],"v":[[51.572,-404],[54.446,-420.143],[54.48,-420.237],[54.47,-420.148]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-264.439,24.845],[-27.183,-36.451]],"o":[[-162.439,62.845],[-14.183,-2.451]],"v":[[74.439,-222.845],[77.183,-95.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[-14.552,17.164],[-84.524,-59.247]],"o":[[4.448,44.164],[-177.524,-58.247]],"v":[[76.552,-245.164],[28.524,-132.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-46.666,12.482],[4.635,-22.542]],"o":[[58.334,48.482],[-2.365,-44.042]],"v":[[60.666,-261.482],[-6.135,-173.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[15.828,22.8],[39.365,-19.981]],"o":[[49.828,24.8],[12.365,-29.981]],"v":[[40.172,-270.8],[41.635,-201.019]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-12.679,33.618],[0.739,-12.776]],"o":[[16.321,12.118],[-23.904,-12.919]],"v":[[19.679,-280.118],[73.404,-244.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[-10.439,3.845],[-2.183,-5.451]],"o":[[2.561,7.845],[-14.183,-2.451]],"v":[[-0.561,-309.845],[6.183,-290.549]],"c":true}]},{"t":12,"s":[{"i":[[-10.439,3.845],[-2.183,-5.451]],"o":[[2.561,7.845],[-14.183,-2.451]],"v":[[-2.561,-427.845],[4.183,-408.549]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-22.717,11.53],[16.682,-16.21]],"o":[[4.283,8.53],[5.682,-20.71]],"v":[[101.967,-233.03],[88.818,-188.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-6.346,4.147],[-0.366,-3.08]],"o":[[5.543,2.722],[-7.337,1.322]],"v":[[88.467,-258.53],[94.818,-248.54]],"c":true}]},{"t":4,"s":[{"i":[[-6.346,4.147],[-0.366,-3.08]],"o":[[5.543,2.722],[-7.337,1.322]],"v":[[84.467,-412.53],[90.818,-402.54]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-46.009,12.388],[74.033,-0.611]],"o":[[-4.509,11.388],[-46.967,-107.486]],"v":[[125.509,71.112],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-9.509,76.388],[74.033,-0.611]],"o":[[26.991,165.888],[-12.967,-113.486]],"v":[[146.509,-65.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-3.591,66.715],[93.702,-33.599]],"o":[[45.409,68.715],[-23.798,-99.599]],"v":[[124.591,-101.715],[86.798,98.599]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-28.673,100.041],[18.871,-121.211]],"o":[[23.327,45.041],[-11.272,-74.766]],"v":[[102.673,-138.041],[146.129,39.211]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-86.521,83.201],[0.04,-46.057]],"o":[[-27.521,44.701],[-27.46,-39.557]],"v":[[104.521,-178.201],[147.46,-53.443]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-78.37,43.361],[-9.836,-38.494]],"o":[[-9.37,31.361],[-29.009,-15.779]],"v":[[124.37,-218.361],[102.836,-129.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-12.932,20.02],[8.931,-18.574]],"o":[[5.568,15.02],[-11.069,-5.574]],"v":[[124.432,-260.02],[122.069,-212.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[{"i":[[1.395,4.24],[0.439,-5.367]],"o":[[4.195,4.04],[-8.094,-2.167]],"v":[[109.605,-288.64],[115.494,-276.366]],"c":true}]},{"t":28,"s":[{"i":[[1.395,4.24],[0.439,-5.367]],"o":[[4.195,4.04],[-8.094,-2.167]],"v":[[121.605,-432.64],[127.494,-420.366]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-8.509,21.888],[109.533,-35.486]],"o":[[30.991,64.388],[-33.467,-95.486]],"v":[[-84.491,-110.888],[-138.033,56.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[22.118,49.473],[122.558,9.2]],"o":[[68.618,31.473],[6.558,-41.3]],"v":[[-88.618,-143.473],[-141.058,-21.7]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.746,26.057],[53.583,-9.114]],"o":[[69.246,2.557],[28.083,-45.614]],"v":[[-106.746,-172.057],[-96.083,-90.386]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-2.806,9.641],[17.287,-6.213]],"o":[[11.944,10.391],[-8.963,-20.463]],"v":[[-100.944,-206.641],[-102.787,-160.537]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-0.532,1.368],[6.846,-2.218]],"o":[[1.937,4.024],[-2.092,-5.968]],"v":[[-95.281,-232.141],[-96.877,-218.399]],"c":true}]},{"t":16,"s":[{"i":[[-0.532,1.368],[6.846,-2.218]],"o":[[1.937,4.024],[-2.092,-5.968]],"v":[[-97.281,-426.141],[-98.877,-412.399]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[3.874,33.283],[9.817,-3.451]],"o":[[36.874,61.283],[-1.183,-15.951]],"v":[[-146.374,-134.783],[-180.817,-70.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-0.126,16.712],[9.817,-3.451]],"o":[[22.088,11.14],[-1.755,-10.237]],"v":[[-156.088,-168.64],[-145.102,-130.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-3.126,4.283],[9.817,-3.451]],"o":[[4.874,3.783],[-2.183,-5.951]],"v":[[-152.874,-195.783],[-156.817,-182.549]],"c":true}]},{"t":8,"s":[{"i":[[-3.126,4.283],[9.817,-3.451]],"o":[[4.874,3.783],[-2.183,-5.951]],"v":[[-156.874,-419.783],[-160.817,-406.549]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-14.009,113.888],[9.033,-147.486]],"o":[[54.491,45.388],[-75.467,-0.611]],"v":[[-160.991,-29.888],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-32.96,22.468],[39.256,-132.515]],"o":[[9.54,49.968],[-101.244,-47.015]],"v":[[-141.04,-64.468],[-79.756,102.515]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.912,19.047],[-5.522,-58.543]],"o":[[45.088,50.047],[-57.022,-89.543]],"v":[[-121.088,-99.047],[-141.978,53.043]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.17,68.493],[6.251,-19.805]],"o":[[67.67,54.493],[-2.749,-44.305]],"v":[[-115.67,-138.993],[-160.251,-25.195]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[2.752,16.439],[33.524,-10.567]],"o":[[46.252,26.939],[13.524,-31.067]],"v":[[-121.252,-178.939],[-123.524,-94.933]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-7.345,7.385],[14.19,-7.615]],"o":[[22.798,13.885],[-2.31,-14.115]],"v":[[-118.655,-218.885],[-120.19,-175.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[-2.042,3.844],[4.939,-3.65]],"o":[[5.208,4.094],[-3.144,-0.025]],"v":[[-116.708,-248.844],[-117.689,-236.6]],"c":true}]},{"t":24,"s":[{"i":[[-2.042,3.844],[4.939,-3.65]],"o":[[5.208,4.094],[-3.144,-0.025]],"v":[[-120.708,-416.844],[-121.689,-404.6]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,76.641]},"e":{"a":0,"k":[0,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":28,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[246,253.2,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":8,"op":40,"st":8,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"01 fire small left flame twirl","refId":"comp_4","sr":1,"ks":{"p":{"a":0,"k":[246,253.2,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":8,"op":40,"st":8,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-139.238,137.226],[-214.402,227]],"o":[[110.598,-109],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[409.598,33]],"o":[[-231.402,-99],[-100.91,-8.13]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"t":48,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[8]},{"t":48,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[24]},{"t":48,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":9,"op":48,"st":-1,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[302,241]],"o":[[-231.402,-99],[-79.13,-63.147]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"t":47,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[8]},{"t":47,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[24]},{"t":47,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":9,"op":47,"st":9,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-189.52,47.962],[-214.402,227]],"o":[[407,-103],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"t":42,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[8]},{"t":42,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[24]},{"t":42,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":2,"op":42,"st":2,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main 4","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[65.688,1.123],[19.556,69.083]],"o":[[-41.977,-0.718],[0.056,0.083]],"v":[[0,105],[-106.556,17.417]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[56.878,-11.304],[-71.136,145.476]],"o":[[-40.253,8],[-9.136,65.476]],"v":[[20.467,102.986],[-125.864,-38.476]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[24.289,-77.906],[35.914,15.981]],"o":[[-62.711,-56.906],[43.914,-19.019]],"v":[[-127.289,-23.094],[-176.914,-135.981]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-7.43,-47.184],[26.355,-15.403]],"o":[[-46.274,-7.369],[16.386,-25.431]],"v":[[-126.57,-102.816],[-189.726,-126.053]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-39.149,-16.463],[16.796,-46.787]],"o":[[-29.838,42.168],[-11.142,-31.843]],"v":[[-151.851,-136.537],[-228.539,-70.125]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-20.866,7.057],[-9.552,-23.948]],"o":[[2.898,26.635],[-15.271,-8.542]],"v":[[-209.791,-103.936],[-216.762,-51.783]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-3.95,10.396],[-12.397,-3.967]],"o":[[11.308,7.423],[-8.231,3.207]],"v":[[-222.283,-63.444],[-204.202,-43.982]],"c":true}]},{"t":32,"s":[{"i":[[-0.203,0.069],[-0.093,-0.233]],"o":[[0.028,0.259],[-0.148,-0.083]],"v":[[-180.901,-36],[-180.969,-35.493]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[-0.803,78.641]},"e":{"a":0,"k":[5.941,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":36,"st":-24,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main 5","sr":1,"ks":{"p":{"a":0,"k":[281.589,353.586,0]},"a":{"a":0,"k":[-25.411,84.586,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[35.726,95.092],[9.957,-101.911],[-13.539,42.608]],"o":[[76.726,173.092],[-45.603,-22.126],[34,-107]],"v":[[20.274,-202.092],[-45.957,94.911],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[28.539,79.666],[15.271,-30.792],[63.294,-24.571]],"o":[[89.467,109.928],[-7.636,15.397],[-160.84,62.44]],"v":[[-4.803,-241.627],[21.701,-28.613],[-27.163,-45.068]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[27.035,22.744],[-7.411,-52.025],[34.341,-66.85]],"o":[[98.144,67.203],[4.153,29.149],[-14.835,28.88]],"v":[[-66.918,-295.641],[41.698,-130.341],[-50.963,-169.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[38.174,25.145],[-12.055,-52.934],[22.231,-50.177]],"o":[[93.649,22.392],[6.204,24.263],[-19.381,32.447]],"v":[[-114.032,-311.296],[26.995,-175.344],[-61.336,-205.289]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[51.836,22.143],[-19.073,-53.622],[17.852,-32.908]],"o":[[74.884,-18.277],[7.052,19.825],[-21.585,39.789]],"v":[[-157.371,-308.755],[11.042,-212.473],[-74.322,-234.122]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[{"i":[[47.388,-0.852],[-20.633,-42.246],[-6.679,-39.947]],"o":[[79.829,-60.96],[7.911,20.621],[3.631,36.916]],"v":[[-192.262,-284.999],[-12.601,-245.703],[-93.247,-262.886]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[30.066,-23.944],[-27.45,-33.052],[-38.7,-24.364]],"o":[[34.202,-118.986],[16.55,19.928],[26.108,16.437]],"v":[[-220.042,-233.02],[-52.086,-285.918],[-140.713,-280.698]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[21.559,-53.406],[-42.556,-12.395],[-39.454,-8.254]],"o":[[-21.52,-112.915],[26.583,7.597],[22.752,4.36]],"v":[[-217.817,-188.862],[-94.492,-311.817],[-150.4,-267.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-8.081,-76.532],[-44.505,14.451],[-34.813,5.036]],"o":[[-66.788,-82.682],[28.609,-9.29],[15.471,-2.238]],"v":[[-197.892,-143.194],[-148.445,-308.584],[-158.488,-252.15]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[-42.015,-57.434],[-26.817,31.143],[-39.824,16.539]],"o":[[-92.051,-33.255],[19.332,-22.828],[22.33,-8.449]],"v":[[-156.547,-114.04],[-197.313,-273.38],[-168.13,-223.209]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-61.367,-22.786],[-3.433,35.391],[-37.643,36.993]],"o":[[-86.784,22.985],[2.883,-29.724],[23.519,-23.113]],"v":[[-107.757,-110.853],[-225.28,-214.573],[-166.864,-196.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[-48.255,8.824],[11.318,24.14],[-10.048,38.28]],"o":[[-47.05,48.04],[-9.546,-20.238],[6.238,-23.914]],"v":[[-81.839,-126.076],[-197.225,-147.861],[-152.608,-158.445]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-22.599,23.564],[15.508,8.665],[9.557,24.582]],"o":[[-6.616,44.216],[-13.049,-7.172],[-6.032,-15.307]],"v":[[-64.671,-149.022],[-135.368,-115.824],[-115.418,-138.897]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.335,16.115],[8.871,-0.948],[11.06,7.121]],"o":[[10.116,19.764],[-7.341,0.908],[-6.895,-4.334]],"v":[[-43.565,-175.386],[-62.601,-141.49],[-61.167,-156.623]],"c":true}]},{"t":32,"s":[{"i":[[-0.068,-0.18],[-0.019,0.193],[0.026,-0.081]],"o":[[-0.145,-0.328],[0.086,0.042],[-0.064,0.203]],"v":[[-36.242,-198.937],[-36.116,-199.5],[-36.01,-199.275]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[-0.803,78.641]},"e":{"a":0,"k":[5.941,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":-40,"bm":0}]},{"id":"comp_5","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[4.186,6.698],[-41.687,-10.636]],"o":[[-10.293,-16.469],[55.022,14.038]],"v":[[7.834,173.427],[18.299,221.462]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[14.361,7.522],[-30.261,-6.497]],"o":[[-24.248,-12.701],[34.72,7.454]],"v":[[35.139,128.628],[12.401,185.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":19,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[47.81,-67.072],[-25.632,9.313]],"o":[[-93.246,48.698],[25.632,-9.313]],"v":[[-74.754,121.302],[-13.132,182.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[16.302,-91.514],[22.297,-55.155]],"o":[[-51.846,41.486],[63.795,-25.293]],"v":[[-77.654,-43.486],[-14.297,37.655]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[65.508,-110.844],[-62.172,37.016]],"o":[[-46.719,4.672],[111.508,-8.984]],"v":[[-77.508,-81.156],[-31.508,-13.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[44.392,-34.904],[-43.656,10.635]],"o":[[-57.534,8.63],[43.656,-10.635]],"v":[[-64.892,-151.596],[-43.156,-90.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[45.056,-54.944],[-36.611,29.426]],"o":[[-75.944,-2.944],[74.944,33.426]],"v":[[-55.556,-184.556],[-45.389,-150.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.5,-3],[-14.25,5.5]],"o":[[-14.5,3],[14.25,-5.5]],"v":[[-44.875,-250.5],[-40.375,-234]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[38.071,2.586],[-51.674,3.841],[-14.328,5.136]],"o":[[-71.639,-4.866],[8.07,11.41],[22.966,-8.233]],"v":[[122.074,242.366],[89.943,278.535],[130.995,288.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[20.869,-12.454],[-146.79,82.022],[-12.062,30.104]],"o":[[-112.454,-96.052],[15.663,4.937],[27.265,-8.079]],"v":[[157.954,39.052],[123.79,100.978],[169.735,69.137]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[74.55,-67.464],[-92.612,89.3],[0.78,32.797]],"o":[[-175.95,-43.988],[-28.612,-55.2],[57.28,16.797]],"v":[[109.45,-30.036],[99.612,30.2],[150.72,14.703]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[79.321,-50.136],[-20.934,-21.241],[-26.364,9.073]],"o":[[-58.179,-42.136],[17.914,18.177],[76.169,29.621]],"v":[[102.679,-76.364],[46.086,-27.677],[111.331,-23.621]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[62.617,-21.138],[-8.337,-17.814],[-11.971,0.122]],"o":[[-29.444,-9.815],[3.681,7.865],[67.802,31.907]],"v":[[103.66,-125.362],[70.352,-89.569],[93.689,-75.907]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.334,0],[-4.841,-5.763],[-4.486,0.179]],"o":[[-13.412,0],[2.137,2.544],[14.647,-0.586]],"v":[[106.839,-168.5],[96.133,-153.01],[106.253,-148.873]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-3.499,-24.848],[-6.884,-16.478],[-0.301,7.46],[-4.644,0.228],[-25.003,12.782],[33.341,-4.053]],"o":[[-34.078,22.449],[3.276,7.842],[1.294,-32.082],[19.012,20.499],[85.358,33.282],[-6.489,-19.362]],"v":[[-102.261,200.848],[-133.404,262.516],[-118.294,281.082],[-102.012,287.001],[-31.997,296.218],[-11.544,205.996]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[-0.747,-48.874],[-2.455,-35.731],[-40.679,19.746],[-10.189,-28.494],[-11.643,4.734],[85.039,22.458]],"o":[[-21.211,-29.874],[-35.532,22.641],[-1.215,-25.539],[22.811,19.506],[80.357,20.734],[29.075,-42.399]],"v":[[-100.253,19.874],[-169.932,40.216],[-144.785,98.539],[-93.811,115.494],[-40.357,117.266],[-14.075,40.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[4.596,-2.157],[-2.838,-33.101],[-23.392,21.782],[64.52,-34.091],[-7.412,7.454],[7.166,18.65]],"o":[[-43.115,-41.195],[-25.698,17.837],[-20.978,-41.699],[20.24,22.409],[13.576,-13.654],[-5.083,-13.23]],"v":[[-78.36,-37.305],[-165.347,-14.561],[-142.022,35.199],[-94.52,47.591],[-39.74,43.428],[-28.273,-12.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[19.586,24.077],[1.481,-16.058],[-4.9,-5.507],[-10.179,0.727],[8.719,-39.971],[89.45,-41.348]],"o":[[-19.447,-7.56],[-0.705,7.642],[4.542,5.105],[-3.153,-23.324],[83.219,35.029],[-14.55,-40.348]],"v":[[-113.586,-84.077],[-147.276,-60.135],[-141.231,-39.204],[-119.347,-31.676],[-66.219,-26.529],[-64.45,-76.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[13.764,-16.52],[-0.797,-14.42],[-5.435,-4.397],[-9.222,1.812],[-4.425,5.611],[7.725,10.732]],"o":[[-22.868,-5.87],[0.379,6.863],[5.039,4.077],[14.57,16.763],[8.105,-10.278],[-5.48,-7.613]],"v":[[-80.463,-124.48],[-113.116,-101.094],[-104.345,-83.066],[-82.915,-78.763],[-39.977,-80.996],[-37.614,-117.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.081,-4.12],[1.941,-4.856],[-0.074,-2.217],[-1.433,-1.373],[-2.412,2.764],[3.877,5.235]],"o":[[-4.629,2.1],[-0.924,2.311],[0.069,2.056],[11.907,11.408],[4.417,-5.063],[-2.75,-3.714]],"v":[[-75.274,-166.527],[-85.585,-154.758],[-86.926,-147.859],[-85.155,-142.261],[-54.718,-143.901],[-53.648,-161.404]],"c":true}]},{"t":36,"s":[{"i":[[0.601,-0.289],[0.013,-0.847],[-0.221,-0.37],[-0.364,-0.269],[-0.704,0.652],[0.934,1.027]],"o":[[-1.307,0.628],[-0.006,0.403],[0.205,0.343],[0.87,0.643],[1.289,-1.194],[-0.662,-0.729]],"v":[[-79.613,-181.42],[-81.494,-179.083],[-81.161,-177.91],[-80.299,-176.982],[-73.89,-177.455],[-73.114,-181.387]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":12,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[6.101,9.761],[-60.75,-15.5]],"o":[[-15,-24],[80.183,20.458]],"v":[[0,163],[15.25,233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[21,11],[-44.25,-9.5]],"o":[[-35.458,-18.573],[50.771,10.9]],"v":[[35,125],[1.75,207.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":19,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[69.5,-97.5],[-113.5,45]],"o":[[-66.5,8.5],[86.092,-34.134]],"v":[[-90.5,124.5],[-22,227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[22,-123.5],[-113.5,45]],"o":[[-41.5,7],[86.092,-34.134]],"v":[[-91.5,-56.5],[-6,53]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[29.5,-125],[-86.5,51.5]],"o":[[-65,6.5],[164.5,11.5]],"v":[[-87.5,-87],[-23.5,-7.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[71,-76.5],[-34.5,28]],"o":[[-90,13.5],[106.5,47.5]],"v":[[-68.5,-157.5],[-34.5,-62.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[48.5,-66],[-34.5,28]],"o":[[-81,3],[106.5,47.5]],"v":[[-57.5,-194],[-53,-132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[29,-6],[-28.5,11]],"o":[[-29,6],[28.5,-11]],"v":[[-46,-251.5],[-37,-218.5]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[70.414,4.783],[-95.574,7.104],[-26.5,9.5]],"o":[[-132.5,-9],[14.926,21.104],[42.478,-15.228]],"v":[[116,239],[56.574,305.896],[132.5,325]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[31,-18.5],[-168.751,36.203],[-17.918,44.718]],"o":[[-248,-61.5],[23.267,7.334],[40.5,-12]],"v":[[167,24],[116.251,135.297],[184.5,88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[101,-20.5],[-133.016,57.816],[-23.678,31.225]],"o":[[-222,-55.5],[17.83,12.614],[53,-13]],"v":[[114.5,-57.5],[94.516,65.184],[159,45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[108,-21],[-25.045,-34.694],[-37.826,13.017]],"o":[[-46.826,-19.424],[11.058,15.318],[78.5,26]],"v":[[96,-99.5],[40.628,-7.406],[112,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[78.5,-26.5],[-10.452,-22.332],[-15.008,0.153]],"o":[[-36.913,-12.304],[4.615,9.86],[85,40]],"v":[[101.5,-126.5],[59.744,-81.628],[89,-64.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[33,0],[-8.262,-9.837],[-7.657,0.306]],"o":[[-22.893,0],[3.648,4.343],[25,-1]],"v":[[103,-170],[84.726,-143.561],[102,-136.5]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-4.046,-28.733],[-7.961,-19.055],[-7.058,-4.972],[-5.37,0.263],[-10.383,14.21],[38.553,-4.686]],"o":[[-39.406,25.959],[3.789,9.068],[6.543,4.609],[20.166,40.644],[98.704,38.486],[-7.504,-22.39]],"v":[[-106.454,196.733],[-142.466,268.042],[-124.994,289.511],[-106.166,296.356],[-25.204,307.014],[-1.553,202.686]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[7.754,-10.103],[-2.864,-41.686],[-47.459,23.038],[-17.819,6.695],[-11.001,13.349],[99.213,26.201]],"o":[[-24.746,-34.853],[-41.454,26.415],[10.089,11.703],[9.571,21.591],[45.708,87.19],[-6.546,-22.901]],"v":[[-105.754,6.853],[-187.046,30.585],[-146.041,114.963],[-104.071,125.409],[-34.708,136.81],[-5.213,30.799]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[5.648,-2.651],[-3.488,-40.68],[-28.748,26.769],[-22.563,7.933],[-9.109,9.161],[8.807,22.921]],"o":[[-52.986,-50.627],[-31.582,21.921],[15.404,15.153],[24.874,27.539],[16.685,-16.781],[-6.247,-16.259]],"v":[[-65.014,-36.373],[-171.918,-8.421],[-143.252,52.731],[-84.874,67.961],[-17.551,62.845],[-3.459,-5.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[19.861,-24.879],[2.389,-25.903],[-7.904,-8.883],[-16.419,1.173],[-8.619,13.394],[50.602,-9.162]],"o":[[-31.37,-12.195],[-1.137,12.327],[7.327,8.235],[20.153,51.095],[59.455,-7.707],[-9.228,-15.356]],"v":[[-114.361,-87.621],[-168.705,-49.001],[-158.954,-15.239],[-123.653,-3.095],[-37.955,5.207],[-35.102,-74.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[20.907,-25.093],[-1.21,-21.904],[-8.256,-6.68],[-14.008,2.753],[-6.721,8.523],[11.735,16.301]],"o":[[-34.736,-8.916],[0.576,10.424],[7.654,6.192],[22.131,25.463],[12.311,-15.612],[-8.324,-11.564]],"v":[[-85.407,-125.907],[-135.006,-90.384],[-121.683,-62.999],[-89.131,-56.463],[-23.909,-59.855],[-20.32,-115.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[16.089,-7.299],[3.439,-8.602],[-0.131,-3.928],[-2.539,-2.432],[-4.273,4.897],[6.868,9.275]],"o":[[-8.201,3.721],[-1.637,4.094],[0.122,3.642],[21.095,20.211],[7.826,-8.97],[-4.872,-6.579]],"v":[[-77.089,-167.201],[-95.356,-146.351],[-97.732,-134.128],[-94.595,-124.211],[-40.671,-127.117],[-38.776,-158.124]],"c":true}]},{"t":36,"s":[{"i":[[1.463,-0.702],[0.031,-2.062],[-0.538,-0.9],[-0.887,-0.655],[-1.713,1.587],[2.273,2.5]],"o":[[-3.182,1.528],[-0.015,0.981],[0.498,0.834],[2.118,1.565],[3.138,-2.907],[-1.612,-1.773]],"v":[[-78.589,-181.314],[-83.167,-175.626],[-82.357,-172.772],[-80.258,-170.512],[-64.659,-171.663],[-62.771,-181.234]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0}]},{"id":"comp_6","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 12","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,495,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":8,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":37,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":64,"s":[60,60,100]},{"t":76,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":124,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"03 fire small wide cycle end","parent":1,"refId":"comp_7","sr":1,"ks":{"p":{"a":0,"k":[0,-239,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":64,"op":92,"st":64,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"03 fire small wide cycle","parent":1,"refId":"comp_8","sr":1,"ks":{"p":{"a":0,"k":[0,-239,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"03 fire small wide cycle","parent":1,"refId":"comp_8","sr":1,"ks":{"p":{"a":0,"k":[0,-239,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-139.238,137.226],[-214.402,227]],"o":[[110.598,-109],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[409.598,33]],"o":[[-231.402,-99],[-100.91,-8.13]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"t":124,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[8]},{"t":124,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[24]},{"t":124,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":64,"op":124,"st":64,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[302,241]],"o":[[-231.402,-99],[-79.13,-63.147]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"t":114,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[8]},{"t":114,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[24]},{"t":114,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":64,"op":114,"st":64,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-189.52,47.962],[-214.402,227]],"o":[[407,-103],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"t":109,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[8]},{"t":109,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[24]},{"t":109,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":69,"op":109,"st":69,"bm":0}]},{"id":"comp_7","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"t":20,"s":[0]}]},"p":{"a":0,"k":[260.85,494.271,0]},"a":{"a":0,"k":[-51.438,222.044,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[18.197,16.546],[-41.985,0.511],[69.85,68.547]],"o":[[-53.725,57.166],[41.194,-0.501],[-14.905,76.809]],"v":[[-60.485,-15.773],[2.147,99.863],[27.617,-48.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0.068,-0.429],[-35.745,0.435],[65.918,79.024]],"o":[[-55.611,56.567],[35.071,-0.427],[-0.687,-0.216]],"v":[[-9.918,-30.798],[-3.59,87.929],[-8.638,-29.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.069,-0.44],[-31.286,-32.594],[40.368,45.715]],"o":[[-28.033,10.909],[28.162,-20.704],[-0.705,-0.222]],"v":[[18.029,13.22],[1.286,91.311],[19.344,14.083]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.086,-0.545],[-13.305,-8.903],[-4.886,23.805]],"o":[[-34.696,13.502],[52.246,-21.612],[-0.872,-0.275]],"v":[[0.536,-65.183],[9.914,2.038],[2.164,-64.114]],"c":true}]},{"t":20,"s":[{"i":[[0.128,-0.814],[-10.891,-11.311],[27.696,1.589]],"o":[[20.128,26.186],[43.109,-11.311],[-1.304,-0.411]],"v":[[11.872,-133.186],[21.891,-73.689],[14.304,-131.589]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"t":20,"s":[0]}]},"p":{"a":0,"k":[258,398,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[112.946,110.839]],"o":[[-86.872,92.436],[66.609,-0.811],[-1.054,155.839]],"v":[[-75.128,-84.436],[1.891,99.311],[22.054,-139.839]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0.128,-0.814],[-67.889,0.826],[125.196,150.089]],"o":[[-105.622,107.436],[66.609,-0.811],[-1.304,-0.411]],"v":[[-13.128,-140.186],[-1.109,85.311],[-10.696,-138.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.128,-0.814],[-57.891,-60.311],[74.696,84.589]],"o":[[-51.872,20.186],[52.109,-38.311],[-1.304,-0.411]],"v":[[33.872,-53.186],[2.891,91.311],[36.304,-51.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.128,-0.814],[-19.891,-13.311],[-7.304,35.589]],"o":[[-51.872,20.186],[78.109,-32.311],[-1.304,-0.411]],"v":[[-2.128,-99.186],[11.891,1.311],[0.304,-97.589]],"c":true}]},{"t":20,"s":[{"i":[[0.128,-0.814],[-10.891,-11.311],[27.696,1.589]],"o":[[20.128,26.186],[43.109,-11.311],[-1.304,-0.411]],"v":[[11.872,-133.186],[21.891,-73.689],[14.304,-131.589]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"main 2","sr":1,"ks":{"p":{"a":0,"k":[256,384,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-49.509,44.388],[123.533,-38.986]],"o":[[-17.509,54.388],[-101.467,-137.986]],"v":[[138.509,-106.388],[72.467,102.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-54.652,117.814],[96.514,-88.952]],"o":[[39.848,36.814],[-55.486,-82.702]],"v":[[122.902,-122.064],[135.986,59.452]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-69.795,121.239],[25.494,-72.919]],"o":[[-6.795,25.239],[-9.506,-27.419]],"v":[[118.295,-144.739],[157.506,-8.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-47.393,78.823],[5.657,-37.203]],"o":[[-20.938,53.232],[-20.343,-15.203]],"v":[[125.938,-167.732],[170.343,-77.797]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-14.581,12.011],[1.034,-14.274]],"o":[[-8.51,26.743],[-24.109,4.012]],"v":[[132.081,-191.511],[118.466,-138.726]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[-8.189,4.595],[5.817,-6.951]],"o":[[0.811,6.877],[-3.683,-1.451]],"v":[[129.689,-209.345],[131.183,-194.049]],"c":true}]},{"t":20,"s":[{"i":[[-8.189,4.595],[5.817,-6.951]],"o":[[0.811,6.877],[-3.683,-1.451]],"v":[[139.689,-425.345],[141.183,-410.049]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[116.786,0],[11,144.667]],"o":[[-317,-127.726],[249,149.667]],"v":[[-1,113.726],[-1,-153.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[120.519,-22.794],[-202.241,204.246]],"o":[[-143.695,27.178],[23.759,129.246]],"v":[[0.481,97.794],[0.241,-202.246]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[168.037,-36.863],[3.518,139.825]],"o":[[-193.963,-76.863],[211.518,139.825]],"v":[[1.963,81.863],[-26.518,-251.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[78.037,-55.931],[-63.722,35.404]],"o":[[-42.963,-53.931],[-21.722,38.404]],"v":[[2.963,-132.069],[27.722,-295.404]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[3.963,-346],[3.963,-347.983]],"c":true}]},{"t":17,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[25.963,-410],[25.963,-411.983]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[150.97,-29.436],[-7.904,50.282],[-29.987,22.93],[31.343,22.513]],"o":[[-171.03,-96.436],[20.614,30.124],[20.013,43.93],[96.97,73.457]],"v":[[0.03,113.436],[-84.471,-110.907],[-1.013,-82.93],[77.03,-95.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[263.97,-70.436],[41.784,65.595],[-24.463,-11.448],[-17.438,27.049]],"o":[[-288.03,-110.436],[28.054,20.833],[28.268,13.229],[-17.53,86.457]],"v":[[0.03,113.436],[-88.471,-144.407],[-8.648,-91.164],[61.53,-104.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[150.97,-29.436],[-32.029,33.907],[-26.789,24.397],[-10.737,32.946]],"o":[[-259.03,-106.436],[23.879,14.802],[25.211,25.397],[-2.03,120.457]],"v":[[0.03,113.436],[-60.471,-110.407],[27.789,-112.897],[118.03,-147.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[182.97,-93.436],[-9.029,35.657],[0,0],[-0.28,-0.293]],"o":[[-109.03,-114.436],[-0.029,0.657],[0,0],[30.72,63.707]],"v":[[0.03,113.436],[31.029,-60.657],[31.387,-61.673],[31.28,-60.707]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[122.605,-62.61],[-52.544,10.197],[0,0],[-0.187,-0.196]],"o":[[-64.272,-70.959],[-0.019,0.44],[0,0],[-33.712,34.231]],"v":[[10.772,31.459],[11.544,-98.197],[11.784,-98.878],[11.712,-98.231]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[62.24,-31.783],[36.94,34.738],[0,0],[-0.095,-0.1]],"o":[[-19.515,-27.482],[-0.01,0.223],[0,0],[53.855,13.755]],"v":[[21.515,-50.518],[-7.94,-135.738],[-7.818,-136.083],[-7.855,-135.755]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[16.966,-8.664],[-0.837,3.306],[0,0],[-0.026,-0.027]],"o":[[-10.11,-10.611],[-0.003,0.061],[0,0],[2.849,5.907]],"v":[[-8.428,-142],[-5.554,-158.143],[-5.52,-158.237],[-5.53,-158.148]],"c":true}]},{"t":24,"s":[{"i":[[16.966,-8.664],[-0.837,3.306],[0,0],[-0.026,-0.027]],"o":[[-10.11,-10.611],[-0.003,0.061],[0,0],[2.849,5.907]],"v":[[51.572,-404],[54.446,-420.143],[54.48,-420.237],[54.47,-420.148]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-264.439,24.845],[-27.183,-36.451]],"o":[[-162.439,62.845],[-14.183,-2.451]],"v":[[74.439,-222.845],[77.183,-95.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[-14.552,17.164],[-84.524,-59.247]],"o":[[4.448,44.164],[-177.524,-58.247]],"v":[[76.552,-245.164],[28.524,-132.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-46.666,12.482],[4.635,-22.542]],"o":[[58.334,48.482],[-2.365,-44.042]],"v":[[60.666,-261.482],[-6.135,-173.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[15.828,22.8],[39.365,-19.981]],"o":[[49.828,24.8],[12.365,-29.981]],"v":[[40.172,-270.8],[41.635,-201.019]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-12.679,33.618],[0.739,-12.776]],"o":[[16.321,12.118],[-23.904,-12.919]],"v":[[19.679,-280.118],[73.404,-244.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[-10.439,3.845],[-2.183,-5.451]],"o":[[2.561,7.845],[-14.183,-2.451]],"v":[[-0.561,-309.845],[6.183,-290.549]],"c":true}]},{"t":12,"s":[{"i":[[-10.439,3.845],[-2.183,-5.451]],"o":[[2.561,7.845],[-14.183,-2.451]],"v":[[-2.561,-427.845],[4.183,-408.549]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-22.717,11.53],[16.682,-16.21]],"o":[[4.283,8.53],[5.682,-20.71]],"v":[[101.967,-233.03],[88.818,-188.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-6.346,4.147],[-0.366,-3.08]],"o":[[5.543,2.722],[-7.337,1.322]],"v":[[88.467,-258.53],[94.818,-248.54]],"c":true}]},{"t":4,"s":[{"i":[[-6.346,4.147],[-0.366,-3.08]],"o":[[5.543,2.722],[-7.337,1.322]],"v":[[84.467,-412.53],[90.818,-402.54]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-46.009,12.388],[74.033,-0.611]],"o":[[-4.509,11.388],[-46.967,-107.486]],"v":[[125.509,71.112],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-9.509,76.388],[74.033,-0.611]],"o":[[26.991,165.888],[-12.967,-113.486]],"v":[[146.509,-65.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-3.591,66.715],[93.702,-33.599]],"o":[[45.409,68.715],[-23.798,-99.599]],"v":[[124.591,-101.715],[86.798,98.599]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-28.673,100.041],[18.871,-121.211]],"o":[[23.327,45.041],[-11.272,-74.766]],"v":[[102.673,-138.041],[146.129,39.211]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-86.521,83.201],[0.04,-46.057]],"o":[[-27.521,44.701],[-27.46,-39.557]],"v":[[104.521,-178.201],[147.46,-53.443]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-78.37,43.361],[-9.836,-38.494]],"o":[[-9.37,31.361],[-29.009,-15.779]],"v":[[124.37,-218.361],[102.836,-129.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-12.932,20.02],[8.931,-18.574]],"o":[[5.568,15.02],[-11.069,-5.574]],"v":[[124.432,-260.02],[122.069,-212.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[{"i":[[1.395,4.24],[0.439,-5.367]],"o":[[4.195,4.04],[-8.094,-2.167]],"v":[[109.605,-288.64],[115.494,-276.366]],"c":true}]},{"t":28,"s":[{"i":[[1.395,4.24],[0.439,-5.367]],"o":[[4.195,4.04],[-8.094,-2.167]],"v":[[121.605,-432.64],[127.494,-420.366]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-8.509,21.888],[109.533,-35.486]],"o":[[30.991,64.388],[-33.467,-95.486]],"v":[[-84.491,-110.888],[-138.033,56.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[22.118,49.473],[122.558,9.2]],"o":[[68.618,31.473],[6.558,-41.3]],"v":[[-88.618,-143.473],[-141.058,-21.7]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.746,26.057],[53.583,-9.114]],"o":[[69.246,2.557],[28.083,-45.614]],"v":[[-106.746,-172.057],[-96.083,-90.386]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-2.806,9.641],[17.287,-6.213]],"o":[[11.944,10.391],[-8.963,-20.463]],"v":[[-100.944,-206.641],[-102.787,-160.537]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-0.532,1.368],[6.846,-2.218]],"o":[[1.937,4.024],[-2.092,-5.968]],"v":[[-95.281,-232.141],[-96.877,-218.399]],"c":true}]},{"t":16,"s":[{"i":[[-0.532,1.368],[6.846,-2.218]],"o":[[1.937,4.024],[-2.092,-5.968]],"v":[[-97.281,-426.141],[-98.877,-412.399]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[3.874,33.283],[9.817,-3.451]],"o":[[36.874,61.283],[-1.183,-15.951]],"v":[[-146.374,-134.783],[-180.817,-70.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-0.126,16.712],[9.817,-3.451]],"o":[[22.088,11.14],[-1.755,-10.237]],"v":[[-156.088,-168.64],[-145.102,-130.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-3.126,4.283],[9.817,-3.451]],"o":[[4.874,3.783],[-2.183,-5.951]],"v":[[-152.874,-195.783],[-156.817,-182.549]],"c":true}]},{"t":8,"s":[{"i":[[-3.126,4.283],[9.817,-3.451]],"o":[[4.874,3.783],[-2.183,-5.951]],"v":[[-156.874,-419.783],[-160.817,-406.549]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-14.009,113.888],[9.033,-147.486]],"o":[[54.491,45.388],[-75.467,-0.611]],"v":[[-160.991,-29.888],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-32.96,22.468],[39.256,-132.515]],"o":[[9.54,49.968],[-101.244,-47.015]],"v":[[-141.04,-64.468],[-79.756,102.515]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.912,19.047],[-5.522,-58.543]],"o":[[45.088,50.047],[-57.022,-89.543]],"v":[[-121.088,-99.047],[-141.978,53.043]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.17,68.493],[6.251,-19.805]],"o":[[67.67,54.493],[-2.749,-44.305]],"v":[[-115.67,-138.993],[-160.251,-25.195]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[2.752,16.439],[33.524,-10.567]],"o":[[46.252,26.939],[13.524,-31.067]],"v":[[-121.252,-178.939],[-123.524,-94.933]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-7.345,7.385],[14.19,-7.615]],"o":[[22.798,13.885],[-2.31,-14.115]],"v":[[-118.655,-218.885],[-120.19,-175.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[-2.042,3.844],[4.939,-3.65]],"o":[[5.208,4.094],[-3.144,-0.025]],"v":[[-116.708,-248.844],[-117.689,-236.6]],"c":true}]},{"t":24,"s":[{"i":[[-2.042,3.844],[4.939,-3.65]],"o":[[5.208,4.094],[-3.144,-0.025]],"v":[[-120.708,-416.844],[-121.689,-404.6]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,76.641]},"e":{"a":0,"k":[0,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":28,"st":0,"bm":0}]},{"id":"comp_8","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core","sr":1,"ks":{"p":{"a":0,"k":[260.85,494.271,0]},"a":{"a":0,"k":[-51.438,222.044,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[18.197,16.546],[-41.985,0.511],[69.85,68.547]],"o":[[-53.725,57.166],[41.194,-0.501],[-14.905,76.809]],"v":[[-60.485,-15.773],[2.147,99.863],[27.617,-48.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-0.979,9.447],[-38.363,0.467],[70.747,84.813]],"o":[[-59.685,60.711],[37.64,-0.458],[-1.585,72.664]],"v":[[-57.538,-18.917],[1.813,98.207],[7.7,-34.227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.042,10.05],[-40.812,0.497],[123.505,80.759]],"o":[[-74.767,73.603],[40.043,-0.487],[-2.738,60.921]],"v":[[-53.637,-37.717],[1.022,99.894],[10.207,-27.711]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-1.085,10.471],[-42.522,0.518],[97.518,74.59]],"o":[[-66.155,67.291],[41.72,-0.508],[-24.524,76.665]],"v":[[-54.263,-34.227],[0.703,99.483],[31.236,-22.892]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-1.154,11.128],[-37.389,-2.202],[40.213,84]],"o":[[-57.827,61.531],[44.266,2.607],[-37.787,100]],"v":[[-49.168,-20.338],[2.1,101.975],[50.498,-47.227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-1.21,11.676],[-47.417,0.577],[79.061,75.843]],"o":[[-87.565,74.165],[46.523,-0.566],[-12.086,67.113]],"v":[[-25.098,-59.555],[1.837,97.942],[45.651,-47.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-1.123,10.831],[-43.984,0.535],[60.542,59.825]],"o":[[-61.466,81.592],[43.155,-0.525],[-21.739,23.543]],"v":[[-17.822,-70.092],[1.626,101.757],[35.746,-6.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-1.169,11.276],[-45.792,0.557],[69.607,68.523]],"o":[[-61.294,73.648],[44.929,-0.547],[-11.672,64.813]],"v":[[-35.095,-15.72],[-2.741,104.632],[32.82,-31.227]],"c":true}]},{"t":32,"s":[{"i":[[18.197,16.546],[-41.985,0.511],[69.85,68.547]],"o":[[-53.725,57.166],[41.194,-0.501],[-14.905,76.809]],"v":[[-60.485,-15.773],[2.147,99.863],[27.617,-48.036]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second","sr":1,"ks":{"p":{"a":0,"k":[258,398,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[112.946,110.839]],"o":[[-86.872,92.436],[66.609,-0.811],[-1.054,155.839]],"v":[[-75.128,-84.436],[1.891,99.311],[22.054,-139.839]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[125.196,150.089]],"o":[[-105.622,107.436],[66.609,-0.811],[-2.804,128.589]],"v":[[-57.128,-106.186],[1.891,99.311],[-10.696,-138.589]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[205.446,134.339]],"o":[[-124.372,122.436],[66.609,-0.811],[-4.554,101.339]],"v":[[-39.128,-127.936],[1.891,99.311],[-9.446,-86.339]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[155.696,119.089]],"o":[[-105.622,107.436],[66.609,-0.811],[-2.804,128.589]],"v":[[-57.128,-106.186],[1.891,99.311],[20.304,-88.089]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[132.946,124.839]],"o":[[-86.872,92.436],[66.609,-0.811],[-1.054,155.839]],"v":[[-75.128,-84.436],[1.891,99.311],[46.054,-130.839]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[113.196,108.589]],"o":[[-125.372,106.186],[66.609,-0.811],[-17.304,96.089]],"v":[[-16.628,-126.186],[1.891,99.311],[50.304,-99.089]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[93.446,92.339]],"o":[[-94.872,125.936],[66.609,-0.811],[-33.554,36.339]],"v":[[-28.128,-165.936],[1.891,99.311],[54.554,-67.339]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[103.196,101.589]],"o":[[-90.872,109.186],[66.609,-0.811],[-17.304,96.089]],"v":[[-41.628,-73.186],[1.891,99.311],[38.304,-103.589]],"c":true}]},{"t":32,"s":[{"i":[[-1.733,16.717],[-67.889,0.826],[112.946,110.839]],"o":[[-86.872,92.436],[66.609,-0.811],[-1.054,155.839]],"v":[[-75.128,-84.436],[1.891,99.311],[22.054,-139.839]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"main 2","sr":1,"ks":{"p":{"a":0,"k":[256,384,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[22.772,0],[-46.805,37.19]],"o":[[-26.404,0],[50.185,39.876]],"v":[[-0.195,113.443],[-0.195,61.306]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[218.597,-71.585],[-101.403,40.181]],"o":[[-122.702,-55.863],[-27.403,50.181]],"v":[[-0.597,113.585],[-0.597,-46.181]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[199.943,-71.044],[38.799,75.924]],"o":[[-170.851,-83.794],[80.799,31.924]],"v":[[-0.799,113.655],[-0.799,-99.924]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[259,-94.726],[-62,81.667]],"o":[[-219,-111.726],[-8,98.667]],"v":[[-1,113.726],[-1,-153.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[134.519,-83.794],[18.759,153.246]],"o":[[-355.481,-139.794],[72.759,69.246]],"v":[[0.481,97.794],[-24.759,-201.246]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[186.037,-45.863],[-99.482,95.825]],"o":[[-135.963,-78.863],[-3.482,107.825]],"v":[[1.963,81.863],[-26.518,-251.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[27.037,-76.931],[27.278,52.404]],"o":[[-69.963,-68.931],[64.278,42.404]],"v":[[2.963,-132.069],[-15.278,-290.404]],"c":true}]},{"t":32,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[3.963,-346],[3.963,-347.983]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[116.786,0],[11,144.667]],"o":[[-317,-127.726],[249,149.667]],"v":[[-1,113.726],[-1,-153.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[120.519,-22.794],[-202.241,204.246]],"o":[[-143.695,27.178],[23.759,129.246]],"v":[[0.481,97.794],[0.241,-202.246]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[168.037,-36.863],[3.518,139.825]],"o":[[-193.963,-76.863],[211.518,139.825]],"v":[[1.963,81.863],[-26.518,-251.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[78.037,-55.931],[-63.722,35.404]],"o":[[-42.963,-53.931],[-21.722,38.404]],"v":[[2.963,-132.069],[27.722,-295.404]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.866,0],[-1.78,1.414]],"o":[[-1.004,0],[1.908,1.516]],"v":[[3.963,-346],[3.963,-347.983]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[{"i":[[22.772,0],[-46.805,37.19]],"o":[[-26.404,0],[50.185,39.876]],"v":[[-0.195,113.443],[-0.195,61.306]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[224.785,-62.65],[-21.215,44.341]],"o":[[-196.215,-40.65],[178.785,45.341]],"v":[[-0.785,113.65],[-35.785,-108.341]],"c":true}]},{"t":32,"s":[{"i":[[116.786,0],[11,144.667]],"o":[[-317,-127.726],[249,149.667]],"v":[[-1,113.726],[-1,-153.667]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[150.97,-29.436],[-7.904,50.282],[-29.987,22.93],[31.343,22.513]],"o":[[-171.03,-96.436],[20.614,30.124],[20.013,43.93],[96.97,73.457]],"v":[[0.03,113.436],[-84.471,-110.907],[-1.013,-82.93],[77.03,-95.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[263.97,-70.436],[41.784,65.595],[-24.463,-11.448],[-17.438,27.049]],"o":[[-288.03,-110.436],[28.054,20.833],[28.268,13.229],[-17.53,86.457]],"v":[[0.03,113.436],[-88.471,-144.407],[-8.648,-91.164],[61.53,-104.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[150.97,-29.436],[-32.029,33.907],[-26.789,24.397],[-10.737,32.946]],"o":[[-259.03,-106.436],[23.879,14.802],[25.211,25.397],[-2.03,120.457]],"v":[[0.03,113.436],[-60.471,-110.407],[27.789,-112.897],[118.03,-147.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[218.97,-95.436],[-14.029,92.657],[-25.376,-0.07],[-14.356,48.358]],"o":[[-215.03,-101.436],[18.775,49.248],[29.323,0.081],[-14.779,118.707]],"v":[[0.03,113.436],[-38.971,-132.657],[31.387,-61.673],[103.28,-138.707]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[286.97,-161.436],[36.471,78.407],[-18.903,53.783],[-17.706,24.637]],"o":[[-171.03,-96.436],[27.358,41.478],[30.097,36.783],[-27.529,116.957]],"v":[[0.03,113.436],[-40.471,-166.407],[29.903,-158.783],[103.53,-179.957]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[245.97,-124.769],[28.471,22.365],[-36.809,25.898],[5.725,49.721]],"o":[[-86.03,-19.436],[-9.524,-43.439],[42.535,-29.926],[44.679,76.748]],"v":[[0.03,113.436],[-126.471,65.635],[-66.412,-30.863],[18.321,-138.748]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[204.97,-88.102],[14.284,64.345],[-5.622,33.725],[-11.854,28.702]],"o":[[-178.03,-22.436],[27.474,40.898],[20.378,16.725],[116.887,36.54]],"v":[[0.03,113.436],[-122.471,-54.324],[-77.378,-76.725],[-34.887,-117.54]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[163.97,-51.436],[3.19,57.313],[-43.708,-7.429],[-12.405,-37.168]],"o":[[-189.03,-2.436],[27.532,40.608],[50.507,8.584],[-25.405,42.832]],"v":[[0.03,113.436],[-103.471,-80.782],[8.103,-95.227],[146.405,-9.832]],"c":true}]},{"t":32,"s":[{"i":[[150.97,-29.436],[-7.904,50.282],[-29.987,22.93],[31.343,22.513]],"o":[[-171.03,-96.436],[20.614,30.124],[20.013,43.93],[96.97,73.457]],"v":[[0.03,113.436],[-84.471,-110.907],[-1.013,-82.93],[77.03,-95.457]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-49.509,44.388],[123.533,-38.986]],"o":[[-17.509,54.388],[-101.467,-137.986]],"v":[[138.509,-106.388],[72.467,102.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-54.652,117.814],[96.514,-88.952]],"o":[[39.848,36.814],[-55.486,-82.702]],"v":[[122.902,-122.064],[135.986,59.452]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-69.795,121.239],[25.494,-72.919]],"o":[[-6.795,25.239],[-9.506,-27.419]],"v":[[118.295,-144.739],[157.506,-8.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-47.393,78.823],[5.657,-37.203]],"o":[[-20.938,53.232],[-20.343,-15.203]],"v":[[125.938,-167.732],[170.343,-77.797]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-14.581,12.011],[1.034,-14.274]],"o":[[-8.51,26.743],[-24.109,4.012]],"v":[[132.081,-191.511],[118.466,-138.726]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[-8.189,4.595],[5.817,-6.951]],"o":[[0.811,6.877],[-3.683,-1.451]],"v":[[129.689,-209.345],[131.183,-194.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-86.754,-66.493],[91.266,-0.305]],"o":[[3.246,27.507],[-58.234,-74.493]],"v":[[143.754,52.493],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-85.509,72.388],[223.533,-7.986]],"o":[[-30.509,37.388],[-116.467,-148.986]],"v":[[157.509,-90.388],[1.467,113.986]],"c":true}]},{"t":32,"s":[{"i":[[-49.509,44.388],[123.533,-38.986]],"o":[[-17.509,54.388],[-101.467,-137.986]],"v":[[138.509,-106.388],[72.467,102.986]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-264.439,24.845],[-27.183,-36.451]],"o":[[-162.439,62.845],[-14.183,-2.451]],"v":[[74.439,-222.845],[77.183,-95.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[-14.552,17.164],[-84.524,-59.247]],"o":[[4.448,44.164],[-177.524,-58.247]],"v":[[76.552,-245.164],[28.524,-132.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-46.666,12.482],[4.635,-22.542]],"o":[[58.334,48.482],[-2.365,-44.042]],"v":[[60.666,-261.482],[-6.135,-173.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[15.828,22.8],[39.365,-19.981]],"o":[[49.828,24.8],[12.365,-29.981]],"v":[[40.172,-270.8],[41.635,-201.019]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-12.679,33.618],[0.739,-12.776]],"o":[[16.321,12.118],[-23.904,-12.919]],"v":[[19.679,-280.118],[73.404,-244.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[-10.439,3.845],[-2.183,-5.451]],"o":[[2.561,7.845],[-14.183,-2.451]],"v":[[-0.561,-309.845],[6.183,-290.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-132.754,-64.493],[63.266,-0.305]],"o":[[-3.754,90.507],[-6.484,-56.743]],"v":[[147.754,12.493],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21.491,112.388],[126.533,-0.611]],"o":[[224.491,166.388],[-116.467,-148.986]],"v":[[19.509,-136.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-135.819,196.207],[121.294,-153.141]],"o":[[1.181,45.207],[-18.706,-90.141]],"v":[[-5.181,-172.207],[113.706,89.141]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-234.629,86.526],[12.555,-77.796]],"o":[[-114.629,48.526],[-16.445,-46.296]],"v":[[13.629,-194.526],[144.445,-6.204]],"c":true}]},{"t":32,"s":[{"i":[[-264.439,24.845],[-27.183,-36.451]],"o":[[-162.439,62.845],[-14.183,-2.451]],"v":[[74.439,-222.845],[77.183,-95.549]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-22.717,11.53],[16.682,-16.21]],"o":[[4.283,8.53],[5.682,-20.71]],"v":[[101.967,-233.03],[88.818,-188.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-6.346,4.147],[-0.366,-3.08]],"o":[[5.543,2.722],[-7.337,1.322]],"v":[[88.467,-258.53],[94.818,-248.54]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-41.254,-51.493],[37.016,-0.305]],"o":[[-39.254,39.882],[-6.484,-56.743]],"v":[[127.254,73.493],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-9.509,76.388],[74.033,-0.611]],"o":[[74.491,136.388],[-12.967,-113.486]],"v":[[125.509,-54.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-14.3,65.117],[72.063,-37.031]],"o":[[78.7,80.617],[-49.687,-74.281]],"v":[[100.3,-82.617],[86.937,99.031]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-19.092,53.845],[64.593,-56.075]],"o":[[34.908,50.845],[-86.407,-35.075]],"v":[[71.092,-114.845],[102.407,15.075]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-74.384,65.24],[3.789,-34.954]],"o":[[-8.384,53.24],[-113.211,7.046]],"v":[[64.384,-155.24],[122.211,-37.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-91.175,30.135],[-24.514,-25.332]],"o":[[-16.175,23.135],[-53.764,-6.832]],"v":[[92.175,-192.135],[75.514,-110.668]],"c":true}]},{"t":32,"s":[{"i":[[-22.717,11.53],[16.682,-16.21]],"o":[[4.283,8.53],[5.682,-20.71]],"v":[[101.967,-233.03],[88.818,-188.29]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-46.009,12.388],[74.033,-0.611]],"o":[[-4.509,11.388],[-46.967,-107.486]],"v":[[125.509,71.112],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-9.509,76.388],[74.033,-0.611]],"o":[[26.991,165.888],[-12.967,-113.486]],"v":[[146.509,-65.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-3.591,66.715],[93.702,-33.599]],"o":[[45.409,68.715],[-23.798,-99.599]],"v":[[124.591,-101.715],[86.798,98.599]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-28.673,100.041],[18.871,-121.211]],"o":[[23.327,45.041],[-11.272,-74.766]],"v":[[102.673,-138.041],[146.129,39.211]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-86.521,83.201],[0.04,-46.057]],"o":[[-27.521,44.701],[-27.46,-39.557]],"v":[[104.521,-178.201],[147.46,-53.443]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-78.37,43.361],[-9.836,-38.494]],"o":[[-9.37,31.361],[-29.009,-15.779]],"v":[[124.37,-218.361],[102.836,-129.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-12.932,20.02],[8.931,-18.574]],"o":[[5.568,15.02],[-11.069,-5.574]],"v":[[124.432,-260.02],[122.069,-212.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[{"i":[[1.395,4.24],[0.439,-5.367]],"o":[[4.195,4.04],[-8.094,-2.167]],"v":[[109.605,-288.64],[115.494,-276.366]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"t":32,"s":[{"i":[[-46.009,12.388],[74.033,-0.611]],"o":[[-4.509,11.388],[-46.967,-107.486]],"v":[[125.509,71.112],[1.467,113.986]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[9.996,54.507],[18.766,-61.243]],"o":[[81.496,-58.493],[-74.234,-0.305]],"v":[[-144.496,36.493],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-160.009,110.388],[37.533,-122.486]],"o":[[30.991,64.388],[-148.467,-0.611]],"v":[[-60.991,-109.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-28.931,37.131],[101.093,-74.23]],"o":[[26.297,53.685],[-138.907,-85.98]],"v":[[-39.069,-135.131],[-92.093,95.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[31.646,69.873],[164.653,-25.974]],"o":[[21.603,42.982],[-10.847,-128.474]],"v":[[-41.146,-166.873],[-145.653,27.974]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[51.14,50.249],[196.48,-6.735]],"o":[[31.14,23.249],[83.48,-70.235]],"v":[[-68.14,-193.749],[-119.48,-62.265]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[2.634,39.625],[104.807,-64.995]],"o":[[12.214,21.576],[27.307,-41.495]],"v":[[-85.134,-224.625],[-44.307,-124.505]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-5.015,14.537],[29.527,-18.684]],"o":[[-0.515,20.037],[-20.473,-28.184]],"v":[[-63.485,-252.537],[-76.027,-200.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[{"i":[[-2.751,4.345],[10.817,-1.201]],"o":[[3.999,2.845],[1.067,-3.951]],"v":[[-54.249,-276.095],[-57.817,-259.799]],"c":true}]},{"t":32,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-8.509,21.888],[109.533,-35.486]],"o":[[30.991,64.388],[-33.467,-95.486]],"v":[[-84.491,-110.888],[-138.033,56.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[22.118,49.473],[122.558,9.2]],"o":[[68.618,31.473],[6.558,-41.3]],"v":[[-88.618,-143.473],[-141.058,-21.7]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.746,26.057],[53.583,-9.114]],"o":[[69.246,2.557],[28.083,-45.614]],"v":[[-106.746,-172.057],[-96.083,-90.386]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-2.806,9.641],[17.287,-6.213]],"o":[[11.944,10.391],[-8.963,-20.463]],"v":[[-100.944,-206.641],[-102.787,-160.537]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-0.532,1.368],[6.846,-2.218]],"o":[[1.937,4.024],[-2.092,-5.968]],"v":[[-95.281,-232.141],[-96.877,-218.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[27.996,30.007],[18.766,-61.243]],"o":[[67.996,-36.993],[-98.734,-0.305]],"v":[[-125.996,67.993],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-59.009,91.388],[37.533,-122.486]],"o":[[30.991,64.388],[-130.467,-0.611]],"v":[[-123.991,-53.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-33.759,56.638],[73.533,-78.986]],"o":[[30.991,64.388],[-111.217,-27.486]],"v":[[-104.241,-82.138],[-77.783,97.986]],"c":true}]},{"t":32,"s":[{"i":[[-8.509,21.888],[109.533,-35.486]],"o":[[30.991,64.388],[-33.467,-95.486]],"v":[[-84.491,-110.888],[-138.033,56.986]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[3.874,33.283],[9.817,-3.451]],"o":[[36.874,61.283],[-1.183,-15.951]],"v":[[-146.374,-134.783],[-180.817,-70.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-0.126,16.712],[9.817,-3.451]],"o":[[22.088,11.14],[-1.755,-10.237]],"v":[[-156.088,-168.64],[-145.102,-130.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-3.126,4.283],[9.817,-3.451]],"o":[[4.874,3.783],[-2.183,-5.951]],"v":[[-152.874,-195.783],[-156.817,-182.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[15.496,26.632],[4.516,-73.743]],"o":[[72.746,-25.993],[-37.734,-0.305]],"v":[[-106.496,84.743],[0.734,113.68]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[32.991,88.388],[46.533,-190.986]],"o":[[43.991,27.388],[-75.467,-0.611]],"v":[[-175.991,-1.388],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[7.991,54.888],[48.283,-114.236]],"o":[[34.991,53.388],[-57.467,-13.798]],"v":[[-185.491,-36.888],[-72.283,105.236]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-17.009,21.388],[-35.967,-67.486]],"o":[[64.991,42.388],[-39.467,-26.986]],"v":[[-179.991,-74.388],[-130.033,65.486]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-21.318,2.586],[43.425,-41.969]],"o":[[3.682,27.586],[-35.575,-40.469]],"v":[[-156.182,-99.086],[-170.925,4.469]],"c":true}]},{"t":32,"s":[{"i":[[3.874,33.283],[9.817,-3.451]],"o":[[36.874,61.283],[-1.183,-15.951]],"v":[[-146.374,-134.783],[-180.817,-70.549]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-14.009,113.888],[9.033,-147.486]],"o":[[54.491,45.388],[-75.467,-0.611]],"v":[[-160.991,-29.888],[1.467,113.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-32.96,22.468],[39.256,-132.515]],"o":[[9.54,49.968],[-101.244,-47.015]],"v":[[-141.04,-64.468],[-79.756,102.515]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.912,19.047],[-5.522,-58.543]],"o":[[45.088,50.047],[-57.022,-89.543]],"v":[[-121.088,-99.047],[-141.978,53.043]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0.17,68.493],[6.251,-19.805]],"o":[[67.67,54.493],[-2.749,-44.305]],"v":[[-115.67,-138.993],[-160.251,-25.195]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[2.752,16.439],[33.524,-10.567]],"o":[[46.252,26.939],[13.524,-31.067]],"v":[[-121.252,-178.939],[-123.524,-94.933]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-7.345,7.385],[14.19,-7.615]],"o":[[22.798,13.885],[-2.31,-14.115]],"v":[[-118.655,-218.885],[-120.19,-175.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[-2.042,3.844],[4.939,-3.65]],"o":[[5.208,4.094],[-3.144,-0.025]],"v":[[-116.708,-248.844],[-117.689,-236.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,113.375],[0,113.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[27.996,23.757],[4.516,-73.743]],"o":[[27.246,22.694],[-37.734,-0.305]],"v":[[-118.996,80.243],[0.734,113.68]],"c":true}]},{"t":32,"s":[{"i":[[-14.009,113.888],[9.033,-147.486]],"o":[[54.491,45.388],[-75.467,-0.611]],"v":[[-160.991,-29.888],[1.467,113.986]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,76.641]},"e":{"a":0,"k":[0,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_9","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[4.186,6.698],[-41.687,-10.636]],"o":[[-10.293,-16.469],[55.022,14.038]],"v":[[7.834,173.427],[18.299,221.462]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[14.361,7.522],[-30.261,-6.497]],"o":[[-24.248,-12.701],[34.72,7.454]],"v":[[35.139,128.628],[12.401,185.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":19,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[47.81,-67.072],[-25.632,9.313]],"o":[[-93.246,48.698],[25.632,-9.313]],"v":[[-74.754,121.302],[-13.132,182.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[16.302,-91.514],[22.297,-55.155]],"o":[[-51.846,41.486],[63.795,-25.293]],"v":[[-77.654,-43.486],[-14.297,37.655]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[65.508,-110.844],[-62.172,37.016]],"o":[[-46.719,4.672],[111.508,-8.984]],"v":[[-77.508,-81.156],[-31.508,-13.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[44.392,-34.904],[-43.656,10.635]],"o":[[-57.534,8.63],[43.656,-10.635]],"v":[[-64.892,-151.596],[-43.156,-90.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[45.056,-54.944],[-36.611,29.426]],"o":[[-75.944,-2.944],[74.944,33.426]],"v":[[-55.556,-184.556],[-45.389,-150.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.5,-3],[-14.25,5.5]],"o":[[-14.5,3],[14.25,-5.5]],"v":[[-44.875,-250.5],[-40.375,-234]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[38.071,2.586],[-51.674,3.841],[-14.328,5.136]],"o":[[-71.639,-4.866],[8.07,11.41],[22.966,-8.233]],"v":[[122.074,242.366],[89.943,278.535],[130.995,288.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[20.869,-12.454],[-146.79,82.022],[-12.062,30.104]],"o":[[-112.454,-96.052],[15.663,4.937],[27.265,-8.079]],"v":[[157.954,39.052],[123.79,100.978],[169.735,69.137]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[74.55,-67.464],[-92.612,89.3],[0.78,32.797]],"o":[[-175.95,-43.988],[-28.612,-55.2],[57.28,16.797]],"v":[[109.45,-30.036],[99.612,30.2],[150.72,14.703]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[79.321,-50.136],[-20.934,-21.241],[-26.364,9.073]],"o":[[-58.179,-42.136],[17.914,18.177],[76.169,29.621]],"v":[[102.679,-76.364],[46.086,-27.677],[111.331,-23.621]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[62.617,-21.138],[-8.337,-17.814],[-11.971,0.122]],"o":[[-29.444,-9.815],[3.681,7.865],[67.802,31.907]],"v":[[103.66,-125.362],[70.352,-89.569],[93.689,-75.907]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.334,0],[-4.841,-5.763],[-4.486,0.179]],"o":[[-13.412,0],[2.137,2.544],[14.647,-0.586]],"v":[[106.839,-168.5],[96.133,-153.01],[106.253,-148.873]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":12,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[6.101,9.761],[-60.75,-15.5]],"o":[[-15,-24],[80.183,20.458]],"v":[[0,163],[15.25,233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[21,11],[-44.25,-9.5]],"o":[[-35.458,-18.573],[50.771,10.9]],"v":[[35,125],[1.75,207.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":19,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[69.5,-97.5],[-113.5,45]],"o":[[-66.5,8.5],[86.092,-34.134]],"v":[[-90.5,124.5],[-22,227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[22,-123.5],[-113.5,45]],"o":[[-41.5,7],[86.092,-34.134]],"v":[[-91.5,-56.5],[-6,53]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[29.5,-125],[-86.5,51.5]],"o":[[-65,6.5],[164.5,11.5]],"v":[[-87.5,-87],[-23.5,-7.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[71,-76.5],[-34.5,28]],"o":[[-90,13.5],[106.5,47.5]],"v":[[-68.5,-157.5],[-34.5,-62.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[48.5,-66],[-34.5,28]],"o":[[-81,3],[106.5,47.5]],"v":[[-57.5,-194],[-53,-132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[29,-6],[-28.5,11]],"o":[[-29,6],[28.5,-11]],"v":[[-46,-251.5],[-37,-218.5]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[70.414,4.783],[-95.574,7.104],[-26.5,9.5]],"o":[[-132.5,-9],[14.926,21.104],[42.478,-15.228]],"v":[[116,239],[56.574,305.896],[132.5,325]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[31,-18.5],[-168.751,36.203],[-17.918,44.718]],"o":[[-248,-61.5],[23.267,7.334],[40.5,-12]],"v":[[167,24],[116.251,135.297],[184.5,88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[101,-20.5],[-133.016,57.816],[-23.678,31.225]],"o":[[-222,-55.5],[17.83,12.614],[53,-13]],"v":[[114.5,-57.5],[94.516,65.184],[159,45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[108,-21],[-25.045,-34.694],[-37.826,13.017]],"o":[[-46.826,-19.424],[11.058,15.318],[78.5,26]],"v":[[96,-99.5],[40.628,-7.406],[112,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[78.5,-26.5],[-10.452,-22.332],[-15.008,0.153]],"o":[[-36.913,-12.304],[4.615,9.86],[85,40]],"v":[[101.5,-126.5],[59.744,-81.628],[89,-64.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[33,0],[-8.262,-9.837],[-7.657,0.306]],"o":[[-22.893,0],[3.648,4.343],[25,-1]],"v":[[103,-170],[84.726,-143.561],[102,-136.5]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0}]},{"id":"comp_10","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 12","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,743,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"t":8,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":124,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"02 fire middle end","parent":1,"refId":"comp_11","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":120,"st":64,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":56,"op":84,"st":56,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":40,"op":68,"st":40,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":8,"op":36,"st":8,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"02 fire middle center (f0)","parent":1,"refId":"comp_14","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":52,"st":32,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"02 fire middle center (f0)","parent":1,"refId":"comp_14","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":48,"op":80,"st":48,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":16,"op":48,"st":16,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":15,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":16,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":18,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":0,"nm":"02 fire middle end outl","parent":1,"refId":"comp_17","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":120,"st":64,"bm":0}]},{"id":"comp_11","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[100]},{"t":24,"s":[0]}]},"p":{"a":0,"k":[274.85,745.271,0]},"a":{"a":0,"k":[-51.438,222.044,0]},"s":{"a":0,"k":[105,95,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[39.58,85.812],[-17.902,-31.376],[35.171,-7.543],[-2.194,65.424]],"o":[[43.523,37.586],[39.788,69.735],[-35.171,7.543],[52.37,41.33]],"v":[[-66.479,-127.536],[10.277,-47.479],[1.953,96.976],[-79.778,6.061]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-15.574,60.55],[-15.66,-19.896],[25.722,9.327],[-25.407,35.637]],"o":[[7.827,46.973],[-7.577,42.996],[-28.847,-10.9],[25.303,12.329]],"v":[[43.874,-48.891],[35.16,30.819],[-29.181,91.286],[-49.602,7.388]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.961,62.286],[-30.452,4.961],[24.958,0.245],[-12.047,39.13]],"o":[[19.353,55.986],[-8.301,31.7],[-31.851,-0.312],[12.828,-41.664]],"v":[[58.023,-65.56],[49.622,36.723],[-4.6,92.405],[-47.296,23.087]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-17.454,42.526],[-34.556,14.996],[25.974,2.407],[-19.446,40.683]],"o":[[-0.104,53.98],[-4.433,35.663],[-30.206,-2.441],[13.297,-30.334]],"v":[[52.684,-50.822],[51.554,40.778],[-6.488,96.151],[-35.222,17.746]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-26.361,22.765],[-31.719,25.032],[21.302,4.569],[-24.099,42.237]],"o":[[-23.972,51.974],[1.329,39.626],[-21.302,-4.569],[10.843,-19.004]],"v":[[17.471,-41.347],[25.526,39.57],[-23.977,94.634],[-29.019,7.142]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-29.207,38.421],[-3.981,-35.119],[30.141,7.395],[1.651,26.371]],"o":[[-5.586,49.574],[3.738,32.983],[-23.618,-5.795],[27.791,11.116]],"v":[[-22.517,-66.798],[59.641,26.63],[5.786,69.708],[-34.552,13.884]],"c":true}]},{"t":32,"s":[{"i":[[39.58,85.812],[-17.902,-31.376],[35.171,-7.543],[-2.194,65.424]],"o":[[43.523,37.586],[39.788,69.735],[-35.171,7.543],[52.37,41.33]],"v":[[-66.479,-127.536],[10.277,-47.479],[1.953,96.976],[-79.778,6.061]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":24,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":8,"s":[0]}]},"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-26.872,112.436],[85.609,-106.311]],"o":[[-132.872,139.436],[144.609,-112.311]],"v":[[-39.128,-254.436],[2.391,101.311]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[21.128,83.436],[24.609,-91.311]],"o":[[-66.872,120.436],[89.609,-97.311]],"v":[[-38.128,-277.436],[1.391,-14.689]],"c":true}]},{"t":8,"s":[{"i":[[-67.629,106.783],[-100.629,-42.475]],"o":[[-145.629,104.783],[79.371,-115.475]],"v":[[-1.371,-455.783],[40.629,-170.525]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":8,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"second 4","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[100]},{"t":16,"s":[0]}]},"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[118.077,110.131],[-2.665,-39.018],[-39.734,-0.002]],"o":[[23.538,87.153],[2.856,41.822],[41.124,-0.187]],"v":[[-75.077,-142.131],[-73.567,32.169],[2.391,101.311]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[31.424,67.656],[1.546,-80.008],[-41.88,2.007]],"o":[[-31.576,70.656],[-0.913,47.276],[-41.995,-86.699]],"v":[[-3.424,-109.656],[-79.56,13.318],[-15.005,96.699]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[68.553,128.061],[24.049,-18.868],[-7.331,-43.72]],"o":[[1.954,34.086],[-26.589,20.861],[36.8,-35.069]],"v":[[56.681,-178.293],[10.775,-106.916],[-35.362,-20.93]],"c":true}]},{"t":16,"s":[{"i":[[94.686,138.159],[18.186,-23.426],[-5.386,-53.715]],"o":[[5.853,35.136],[-21.233,27.351],[66.001,-69.723]],"v":[[49.314,-279.159],[20.764,-198.478],[-19.001,-88.277]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":16,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"second 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[100]},{"t":32,"s":[0]}]},"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-39.734,-0.002],[160.903,157.868]],"o":[[41.124,-0.187],[-19.097,53.868]],"v":[[2.391,101.311],[-4.903,-122.868]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-67.071,-173.409],[49.406,97]],"o":[[46.247,-0.728],[-30.594,55]],"v":[[-15.929,99.409],[68.594,-56]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-133.939,-164.639],[53.824,142]],"o":[[43.111,-1.157],[-67.176,52]],"v":[[-16.561,96.506],[99.176,-107]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-86.439,-134.572],[55.824,140.5]],"o":[[43.111,-1.157],[-67.176,52]],"v":[[1.939,90.506],[75.676,-97]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-38.939,-104.506],[57.824,139]],"o":[[43.111,-1.157],[-67.176,52]],"v":[[-14.061,95.506],[52.176,-87]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-7.939,-57.506],[22.824,36]],"o":[[165.061,-85.506],[-106.176,65]],"v":[[21.939,89.506],[-24.824,-88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-30.439,-41.506],[22.824,36]],"o":[[33.561,-64.506],[-87.176,60.5]],"v":[[36.439,-22.494],[-35.824,-155]],"c":true}]},{"t":32,"s":[{"i":[[-52.939,-25.506],[22.824,36]],"o":[[11.061,-51.506],[-68.176,56]],"v":[[16.939,-94.494],[-46.824,-222]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-11,-132.312],[-7.172,51.412],[38.165,58.396]],"o":[[53.567,-0.243],[9.183,-65.826],[111.313,177.997]],"v":[[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-67,-154.909],[-14.398,53.118],[34.043,59.847]],"o":[[53.821,-0.847],[14.42,-57.831],[57.066,132.408]],"v":[[1,101.909],[112.427,3.393],[63.934,-166.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-167.999,-206.506],[-21.624,54.823],[29.921,61.299]],"o":[[54.074,-1.451],[19.657,-49.837],[2.818,86.819]],"v":[[-1.001,101.506],[121.841,-0.997],[112.182,-173.819]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-53.567,-0.243],[-3.669,53.71],[-22.247,82.372]],"o":[[53.5,0.243],[3.016,-44.152],[-202.747,113.872]],"v":[[-1,100.312],[99.011,8.806],[99.747,-160.872]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[40.815,-60.506],[1.22,63.133],[20.655,68.222]],"o":[[47.827,1.284],[-1.871,-96.875],[-162.345,140.111]],"v":[[1.185,101.506],[101.739,0.856],[-42.655,-165.222]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-31.558,-50.003],[16.799,28.099],[2.217,48.282]],"o":[[21.885,-45.314],[-28.06,-46.936],[-150.456,128.631]],"v":[[46.558,7.003],[45.21,-99.803],[-42.044,-227.187]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-37.931,-26.5],[13.635,23.185],[-8.736,55.472]],"o":[[8.571,-34.721],[-24.653,-41.921],[-138.568,117.152]],"v":[[29.931,-75.5],[16.564,-159.567],[-41.432,-289.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-28.177,-18.494],[2.319,19.339],[-10.19,30.389]],"o":[[-1.177,-21.494],[-3.873,-32.303],[-112.29,82.582]],"v":[[-32.823,-251.506],[-43.018,-315.512],[-29.71,-405.582]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-2.92,-10.108],[-2.262,14.82],[-5.034,15.394]],"o":[[-0.505,-10.745],[2.5,-16.382],[-42.542,41.191]],"v":[[-54.2,-359.009],[-45.238,-393.82],[-38.849,-439.797]],"c":true}]},{"t":48,"s":[{"i":[[0.382,-0.567],[0.061,0.36],[0.121,0.4]],"o":[[0.168,0.005],[-0.102,-0.602],[-1.521,1.313]],"v":[[-47.577,-471.512],[-47.458,-472.128],[-47.987,-474.011]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[21.747,64.872],[-3.016,-44.152],[-53.5,0.243]],"o":[[22.247,82.372],[3.669,53.71],[79,-87.312]],"v":[[-97.747,-158.872],[-97.011,10.806],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[113.161,97.111],[1.871,-96.875],[-47.828,1.284]],"o":[[14.417,96.532],[-1.22,63.133],[-66.999,-121.506]],"v":[[-20.161,-165.111],[-101.555,0.856],[-1.001,101.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[118.424,157.27],[28.288,-30.267],[-18.903,-57.031]],"o":[[9.7,45.245],[-31.276,33.464],[42.001,-54.614]],"v":[[46.576,-222.27],[-0.075,-117.135],[-44.001,7.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[94.686,138.159],[18.186,-23.426],[-5.386,-53.715]],"o":[[5.853,35.136],[-21.233,27.351],[66.001,-69.723]],"v":[[49.314,-279.159],[20.764,-198.478],[-19.001,-88.277]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[66.949,92.127],[9.993,-15.964],[-5.063,-48.024]],"o":[[5.051,35.121],[-11.668,18.639],[43.6,-13.156]],"v":[[49.051,-336.127],[35.336,-268.89],[15.4,-183.844]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[42.212,58.095],[5.432,-11.165],[-9.453,-39.448]],"o":[[3.788,26.341],[-6.342,13.036],[32.7,-9.867]],"v":[[48.788,-393.095],[41.523,-344.806],[38.55,-278.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[28.141,38.73],[1.328,-7.479],[-6.302,-26.298]],"o":[[2.526,17.561],[-1.551,8.732],[21.8,-6.578]],"v":[[48.525,-450.063],[48.103,-417.802],[51.7,-373.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[48,-564],[48,-564],[48,-564]],"c":true}]},{"t":37,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[47,-692],[47,-692],[47,-692]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-31,"s":[{"i":[[-30.231,72.598],[-53.5,0.243]],"o":[[-74.692,48.796],[53.567,-0.243]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-104,239],[95,-118.312]],"o":[[-279,185],[275,-162.312]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-85.814,172.891],[-2.814,-80.393]],"o":[[-167.814,138.391],[153.186,-122.893]],"v":[[0.814,-398.391],[-2.186,-7.107]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-67.629,106.783],[-100.629,-42.475]],"o":[[-145.629,104.783],[79.371,-115.475]],"v":[[-1.371,-455.783],[40.629,-170.525]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-45.595,72.231],[-66.633,-28.88]],"o":[[-92.443,67.174],[-18.443,-69.55]],"v":[[-3.557,-513.174],[-36.557,-332.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[7.743,54.566],[-32.638,-15.285]],"o":[[-48.214,34.909],[20.243,-33.963]],"v":[[-5.743,-570.566],[-53.243,-478.037]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-1.529,3.129],[1.357,-1.69]],"o":[[-3.986,2.643],[3.929,-2.319]],"v":[[-7.929,-627.957],[-7.929,-621.624]],"c":true}]},{"t":21,"s":[{"i":[[-1.529,3.129],[1.357,-1.69]],"o":[[-3.986,2.643],[3.929,-2.319]],"v":[[-8.857,-693.957],[-8.857,-687.624]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,78.641]},"e":{"a":0,"k":[0,-396.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":48,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[263.799,525,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-188.981,50.042],[-214.402,227]],"o":[[321,-85],[69.514,-73.599]],"v":[[-33,77],[102,-415]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"t":45,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[8]},{"t":45,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[24]},{"t":45,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":5,"op":45,"st":5,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"p":{"a":0,"k":[263.799,525,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[302,241]],"o":[[-231.402,-99.001],[-79.13,-63.147]],"v":[[-23,57],[-182,-463]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":56,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[8]},{"t":56,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[24]},{"t":56,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":56,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[263.799,525,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-139.238,137.226],[-214.402,227]],"o":[[110.598,-109],[69.514,-73.599]],"v":[[7,157],[-82,-267]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[409.598,33]],"o":[[-231.402,-99],[-100.91,-8.13]],"v":[[-11,213],[-178,-415]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"t":51,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[8]},{"t":51,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[24]},{"t":51,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":5,"op":56,"st":9,"bm":0}]},{"id":"comp_12","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core","sr":1,"ks":{"p":{"a":0,"k":[274.85,745.271,0]},"a":{"a":0,"k":[-51.438,222.044,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[105,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[95,105,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[105,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[95,105,100]},{"t":32,"s":[105,95,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[39.58,85.812],[-17.902,-31.376],[35.171,-7.543],[-2.194,65.424]],"o":[[43.523,37.586],[39.788,69.735],[-35.171,7.543],[52.37,41.33]],"v":[[-66.479,-127.536],[10.277,-47.479],[1.953,96.976],[-79.778,6.061]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[8.841,78.454],[-43.981,17.591],[37.377,-9.171],[-5.916,52.199]],"o":[[46.223,60.804],[-2.613,41.734],[-47.701,11.703],[6.299,-55.579]],"v":[[47.252,-119.276],[66.299,8.408],[2.462,96.754],[-82.769,28.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-43.523,37.586],[-52.37,41.33],[35.171,7.543],[-39.788,69.735]],"o":[[-39.58,85.812],[2.194,65.424],[-35.171,-7.543],[17.902,-31.376]],"v":[[24.695,-129.694],[37.994,3.903],[-43.738,94.818],[-52.061,-49.637]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-46.223,60.804],[-6.299,-55.579],[47.701,11.703],[2.613,41.734]],"o":[[-8.841,78.454],[5.916,52.199],[-37.377,-9.171],[43.981,17.591]],"v":[[-86.843,-117.324],[43.178,30.532],[-42.053,98.707],[-105.89,10.361]],"c":true}]},{"t":32,"s":[{"i":[[39.58,85.812],[-17.902,-31.376],[35.171,-7.543],[-2.194,65.424]],"o":[[43.523,37.586],[39.788,69.735],[-35.171,7.543],[52.37,41.33]],"v":[[-66.479,-127.536],[10.277,-47.479],[1.953,96.976],[-79.778,6.061]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-4.799,46.292],[-11.907,-44.087],[-2.665,-39.018],[-39.734,-0.002],[-5.575,39.963],[38.678,59.179]],"o":[[-31.898,32.4],[23.538,87.153],[2.856,41.822],[41.124,-0.187],[7.47,-53.546],[-27.683,-42.356]],"v":[[-39.128,-254.436],[-75.077,-142.131],[-73.567,32.169],[2.391,101.311],[78.742,27.466],[-4.903,-122.868]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[44.885,22.093],[-5.643,-37.784],[1.546,-80.008],[-41.88,2.007],[-23.325,59.137],[24.767,50.739]],"o":[[5.683,20.276],[16.655,111.521],[-0.913,47.276],[36.128,-1.732],[19.026,-48.238],[-37.411,-76.64]],"v":[[-11.07,-221.853],[10.576,-146.656],[-70.56,23.318],[6.995,98.699],[106.516,12.197],[97.615,-141.292]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[31.898,32.4],[27.683,-42.356],[-7.47,-53.546],[-41.124,-0.187],[-2.856,41.822],[-23.538,87.153]],"o":[[4.799,46.292],[-38.677,59.18],[5.575,39.963],[39.734,-0.002],[2.665,-39.018],[11.907,-44.087]],"v":[[39.57,-255.936],[5.345,-124.368],[-78.301,25.966],[-1.949,99.811],[74.008,30.669],[75.518,-143.631]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-5.683,20.276],[37.411,-76.64],[-19.026,-48.238],[-36.128,-1.732],[0.913,47.276],[-16.655,111.521]],"o":[[-49.292,56.853],[-24.766,50.74],[23.327,59.137],[41.88,2.007],[-1.546,-80.008],[5.643,-37.784]],"v":[[39.292,-260.853],[-95.393,-140.292],[-104.293,13.197],[-4.773,99.699],[72.782,24.318],[-8.354,-145.656]],"c":true}]},{"t":32,"s":[{"i":[[-4.799,46.292],[-11.907,-44.087],[-2.665,-39.018],[-39.734,-0.002],[-5.575,39.963],[38.678,59.179]],"o":[[-31.898,32.4],[23.538,87.153],[2.856,41.822],[41.124,-0.187],[7.47,-53.546],[-27.683,-42.356]],"v":[[-39.128,-254.436],[-75.077,-142.131],[-73.567,32.169],[2.391,101.311],[78.742,27.466],[-4.903,-122.868]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-8.18,-233.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-30.231,72.598],[-20.387,-75.483],[-3.016,-44.152],[-53.5,0.243],[-7.172,51.412],[38.165,58.396]],"o":[[-74.692,48.796],[22.247,82.372],[3.669,53.71],[53.567,-0.243],[9.183,-65.826],[-35.462,-54.259]],"v":[[3,-341],[-97.747,-158.872],[-97.011,10.806],[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[55.583,73],[-8.766,-58.692],[1.871,-96.875],[-47.827,1.284],[-21.624,54.823],[29.921,61.299]],"o":[[-3.417,72],[14.417,96.532],[-1.22,63.133],[54.074,-1.451],[19.657,-49.837],[-55.886,-114.495]],"v":[[-46.583,-299],[-20.161,-165.111],[-101.555,0.856],[-1.001,101.506],[121.841,-0.997],[112.182,-173.819]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[74.692,48.796],[35.462,-54.259],[-9.183,-65.826],[-53.567,-0.243],[-3.669,53.71],[-22.247,82.372]],"o":[[30.231,72.598],[-38.165,58.396],[7.172,51.412],[53.5,0.243],[3.016,-44.152],[20.387,-75.483]],"v":[[-1,-343],[-13.687,-160.997],[-101.012,5.782],[-1,100.312],[99.011,8.806],[99.747,-160.872]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[75.232,135],[55.886,-114.495],[-19.657,-49.837],[-54.074,-1.451],[1.22,63.133],[-14.417,96.532]],"o":[[-1.768,121],[-29.921,61.299],[21.624,54.823],[47.828,1.284],[-1.871,-96.875],[8.766,-58.692]],"v":[[48.768,-397],[-111.998,-173.819],[-121.657,-0.997],[1.185,101.506],[101.739,0.856],[20.345,-165.111]],"c":true}]},{"t":32,"s":[{"i":[[-30.231,72.598],[-20.387,-75.483],[-3.016,-44.152],[-53.5,0.243],[-7.172,51.412],[38.165,58.396]],"o":[[-74.692,48.796],[22.247,82.372],[3.669,53.71],[53.567,-0.243],[9.183,-65.826],[-35.462,-54.259]],"v":[[3,-341],[-97.747,-158.872],[-97.011,10.806],[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,78.641]},"e":{"a":0,"k":[0,-396.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_13","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[54.161,45.111],[1.871,-96.875]],"o":[[14.417,96.532],[153.555,-0.856]],"v":[[-20.161,-165.111],[-101.555,0.856]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[68.115,181.651],[-13.746,-186.897]],"o":[[10.298,68.951],[24.254,-68.897]],"v":[[-20.115,-283.651],[-98.254,-1.103]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[122.069,81.381],[-53.048,-69.338]],"o":[[56.069,69.381],[14.552,-41.338]],"v":[[-74.069,-401.381],[-62.952,-256.662]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[38.046,52.921],[-35.365,-46.226]],"o":[[8.046,37.921],[9.701,-27.559]],"v":[[-64.046,-481.921],[-48.635,-364.441]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[10.023,27.46],[6.317,-21.779]],"o":[[-5.977,27.46],[24.317,-27.779]],"v":[[-49.023,-535.46],[-34.317,-472.221]],"c":true}]},{"t":28,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-20,-580],[-20,-580]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,78.641]},"e":{"a":0,"k":[0,-396.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":28,"st":-8,"bm":0}]},{"id":"comp_14","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-31,"s":[{"i":[[-30.231,72.598],[-53.5,0.243]],"o":[[-74.692,48.796],[53.567,-0.243]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-104,239],[95,-118.312]],"o":[[-279,185],[275,-162.312]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-85.814,172.891],[-2.814,-80.393]],"o":[[-167.814,138.391],[153.186,-122.893]],"v":[[0.814,-398.391],[-2.186,-7.107]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-67.629,106.783],[-100.629,-42.475]],"o":[[-145.629,104.783],[79.371,-115.475]],"v":[[-1.371,-455.783],[40.629,-170.525]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-45.595,72.231],[-66.633,-28.88]],"o":[[-92.443,67.174],[-18.443,-69.55]],"v":[[-3.557,-513.174],[-36.557,-332.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[7.743,54.566],[-32.638,-15.285]],"o":[[-48.214,34.909],[20.243,-33.963]],"v":[[-5.743,-570.566],[-53.243,-478.037]],"c":true}]},{"t":20,"s":[{"i":[[-1.529,3.129],[1.357,-1.69]],"o":[[-3.986,2.643],[3.929,-2.319]],"v":[[-7.929,-627.957],[-7.929,-621.624]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,78.641]},"e":{"a":0,"k":[0,-396.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":20,"st":0,"bm":0}]},{"id":"comp_15","layers":[{"ddd":0,"ind":3,"ty":4,"nm":"main 2","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-27,-142.312],[38.313,64.997]],"o":[[114,-7.312],[-17.687,108.997]],"v":[[2,101.312],[71.687,-78.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-27,-142.312],[116.313,86.997]],"o":[[152,4.688],[74.313,100.997]],"v":[[2,101.312],[123.687,-214.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[69.667,-86.208],[12.542,44.665]],"o":[[181.667,-126.208],[-53.458,52.665]],"v":[[132.333,-147.792],[87.458,-400.665]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-59.667,-35.104],[56.771,51.332]],"o":[[-33.667,-59.104],[-43.229,37.332]],"v":[[111.667,-428.896],[85.229,-555.332]],"c":true}]},{"t":32,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89,-623],[89,-623]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,78.641]},"e":{"a":0,"k":[0,-396.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_16","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-30.231,72.598],[-20.387,-75.483],[-3.016,-44.152],[-53.5,0.243],[-7.172,51.412],[38.165,58.396]],"o":[[-74.692,48.796],[22.247,82.372],[3.669,53.71],[53.567,-0.243],[9.183,-65.826],[-35.462,-54.259]],"v":[[3,-341],[-97.747,-158.872],[-97.011,10.806],[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[55.583,73],[-8.766,-58.692],[1.871,-96.875],[-47.827,1.284],[-21.624,54.823],[29.921,61.299]],"o":[[-3.417,72],[14.417,96.532],[-1.22,63.133],[54.074,-1.451],[19.657,-49.837],[-55.886,-114.495]],"v":[[-46.583,-299],[-20.161,-165.111],[-101.555,0.856],[-1.001,101.506],[121.841,-0.997],[112.182,-173.819]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[74.692,48.796],[35.462,-54.259],[-9.183,-65.826],[-53.567,-0.243],[-3.669,53.71],[-22.247,82.372]],"o":[[30.231,72.598],[-38.165,58.396],[7.172,51.412],[53.5,0.243],[3.016,-44.152],[20.387,-75.483]],"v":[[-1,-343],[-13.687,-160.997],[-101.012,5.782],[-1,100.312],[99.011,8.806],[99.747,-160.872]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[75.232,135],[55.886,-114.495],[-19.657,-49.837],[-54.074,-1.451],[1.22,63.133],[-14.417,96.532]],"o":[[-1.768,121],[-29.921,61.299],[21.624,54.823],[47.828,1.284],[-1.871,-96.875],[8.766,-58.692]],"v":[[48.768,-397],[-111.998,-173.819],[-121.657,-0.997],[1.185,101.506],[101.739,0.856],[20.345,-165.111]],"c":true}]},{"t":32,"s":[{"i":[[-30.231,72.598],[-20.387,-75.483],[-3.016,-44.152],[-53.5,0.243],[-7.172,51.412],[38.165,58.396]],"o":[[-74.692,48.796],[22.247,82.372],[3.669,53.71],[53.567,-0.243],[9.183,-65.826],[-35.462,-54.259]],"v":[[3,-341],[-97.747,-158.872],[-97.011,10.806],[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_17","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main","sr":1,"ks":{"p":{"a":0,"k":[256,646,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-11,-132.312],[-7.172,51.412],[38.165,58.396]],"o":[[53.567,-0.243],[9.183,-65.826],[111.313,177.997]],"v":[[3,102.312],[103.012,7.782],[15.687,-158.997]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-67,-154.909],[-14.398,53.118],[34.043,59.847]],"o":[[53.821,-0.847],[14.42,-57.831],[57.066,132.408]],"v":[[1,101.909],[112.427,3.393],[63.934,-166.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-167.999,-206.506],[-21.624,54.823],[29.921,61.299]],"o":[[54.074,-1.451],[19.657,-49.837],[2.818,86.819]],"v":[[-1.001,101.506],[121.841,-0.997],[112.182,-173.819]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-53.567,-0.243],[-3.669,53.71],[-22.247,82.372]],"o":[[53.5,0.243],[3.016,-44.152],[-202.747,113.872]],"v":[[-1,100.312],[99.011,8.806],[99.747,-160.872]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[40.815,-60.506],[1.22,63.133],[20.655,68.222]],"o":[[47.827,1.284],[-1.871,-96.875],[-162.345,140.111]],"v":[[1.185,101.506],[101.739,0.856],[-42.655,-165.222]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-31.558,-50.003],[16.799,28.099],[2.217,48.282]],"o":[[21.885,-45.314],[-28.06,-46.936],[-150.456,128.631]],"v":[[46.558,7.003],[45.21,-99.803],[-42.044,-227.187]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-37.931,-26.5],[13.635,23.185],[-8.736,55.472]],"o":[[8.571,-34.721],[-24.653,-41.921],[-138.568,117.152]],"v":[[29.931,-75.5],[16.564,-159.567],[-41.432,-289.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[-28.177,-18.494],[2.319,19.339],[-10.19,30.389]],"o":[[-1.177,-21.494],[-3.873,-32.303],[-112.29,82.582]],"v":[[-32.823,-251.506],[-43.018,-315.512],[-29.71,-405.582]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-2.92,-10.108],[-2.262,14.82],[-5.034,15.394]],"o":[[-0.505,-10.745],[2.5,-16.382],[-42.542,41.191]],"v":[[-54.2,-359.009],[-45.238,-393.82],[-38.849,-439.797]],"c":true}]},{"t":48,"s":[{"i":[[0.382,-0.567],[0.061,0.36],[0.121,0.4]],"o":[[0.168,0.005],[-0.102,-0.602],[-1.521,1.313]],"v":[[-47.577,-471.512],[-47.458,-472.128],[-47.987,-474.011]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[21.747,64.872],[-3.016,-44.152],[-53.5,0.243]],"o":[[22.247,82.372],[3.669,53.71],[79,-87.312]],"v":[[-97.747,-158.872],[-97.011,10.806],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[113.161,97.111],[1.871,-96.875],[-47.828,1.284]],"o":[[14.417,96.532],[-1.22,63.133],[-66.999,-121.506]],"v":[[-20.161,-165.111],[-101.555,0.856],[-1.001,101.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[118.424,157.27],[28.288,-30.267],[-18.903,-57.031]],"o":[[9.7,45.245],[-31.276,33.464],[42.001,-54.614]],"v":[[46.576,-222.27],[-0.075,-117.135],[-44.001,7.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[94.686,138.159],[18.186,-23.426],[-5.386,-53.715]],"o":[[5.853,35.136],[-21.233,27.351],[66.001,-69.723]],"v":[[49.314,-279.159],[20.764,-198.478],[-19.001,-88.277]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[66.949,92.127],[9.993,-15.964],[-5.063,-48.024]],"o":[[5.051,35.121],[-11.668,18.639],[43.6,-13.156]],"v":[[49.051,-336.127],[35.336,-268.89],[15.4,-183.844]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[42.212,58.095],[5.432,-11.165],[-9.453,-39.448]],"o":[[3.788,26.341],[-6.342,13.036],[32.7,-9.867]],"v":[[48.788,-393.095],[41.523,-344.806],[38.55,-278.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[28.141,38.73],[1.328,-7.479],[-6.302,-26.298]],"o":[[2.526,17.561],[-1.551,8.732],[21.8,-6.578]],"v":[[48.525,-450.063],[48.103,-417.802],[51.7,-373.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[48,-564],[48,-564],[48,-564]],"c":true}]},{"t":37,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[47,-692],[47,-692],[47,-692]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-31,"s":[{"i":[[-30.231,72.598],[-53.5,0.243]],"o":[[-74.692,48.796],[53.567,-0.243]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-104,239],[95,-118.312]],"o":[[-279,185],[275,-162.312]],"v":[[3,-341],[3,102.312]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-85.814,172.891],[-2.814,-80.393]],"o":[[-167.814,138.391],[153.186,-122.893]],"v":[[0.814,-398.391],[-2.186,-7.107]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-67.629,106.783],[-100.629,-42.475]],"o":[[-145.629,104.783],[79.371,-115.475]],"v":[[-1.371,-455.783],[40.629,-170.525]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-45.595,72.231],[-66.633,-28.88]],"o":[[-92.443,67.174],[-18.443,-69.55]],"v":[[-3.557,-513.174],[-36.557,-332.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[7.743,54.566],[-32.638,-15.285]],"o":[[-48.214,34.909],[20.243,-33.963]],"v":[[-5.743,-570.566],[-53.243,-478.037]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-1.529,3.129],[1.357,-1.69]],"o":[[-3.986,2.643],[3.929,-2.319]],"v":[[-7.929,-627.957],[-7.929,-621.624]],"c":true}]},{"t":21,"s":[{"i":[[-1.529,3.129],[1.357,-1.69]],"o":[[-3.986,2.643],[3.929,-2.319]],"v":[[-8.857,-693.957],[-8.857,-687.624]],"c":true}]}]},"nm":"Path 5","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":48,"st":0,"bm":0}]},{"id":"comp_18","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 14","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,488,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":8,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":30,"s":[60,60,100]},{"t":42,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":92,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"01 fire small cycle","parent":1,"refId":"comp_19","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"01 fire small end","parent":1,"refId":"comp_20","sr":1,"ks":{"p":{"a":0,"k":[0,24,0]},"a":{"a":0,"k":[256,512,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":92,"st":32,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"01 fire small left bottom flame (f24)","parent":1,"refId":"comp_22","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":8,"op":40,"st":8,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","parent":1,"refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":24,"op":56,"st":24,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":16,"op":48,"st":16,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"01 fire small cycle outlines","parent":1,"refId":"comp_23","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"01 fire small left flame twirl","parent":1,"refId":"comp_4","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":24,"op":56,"st":24,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-88.418,174.357],[70,-25]],"o":[[107,-211],[-95.339,34.05]],"v":[[-77,179],[-204,-167]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"t":44,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.98431378603,0.4392157197,0.058823533356,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[8]},{"t":44,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[24]},{"t":44,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":4,"op":44,"st":4,"bm":0}]},{"id":"comp_19","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core 2","sr":1,"ks":{"p":{"a":0,"k":[255.562,491.044,0]},"a":{"a":0,"k":[-51.438,222.044,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[105,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[95,105,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[105,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[95,105,100]},{"t":32,"s":[105,95,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-32.312,54.845],[-50.481,50.293],[35.394,-6.415],[6.415,35.394]],"o":[[46.16,46.426],[17.507,77.667],[-35.394,6.415],[-6.415,-35.394]],"v":[[-32.108,-101.639],[64.059,-13.213],[18.468,99.426],[-57.235,46.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-9.049,78.431],[-46.813,7.238],[38.482,-0.52],[-11.655,36.679]],"o":[[31.347,69.649],[-11.942,40.075],[-49.111,0.664],[15.601,23.049]],"v":[[45.915,-106],[82.625,29.003],[0.537,100.708],[-67.157,15.096]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[3.588,91.907],[6.435,-34.983],[34.983,6.435],[-15.694,53.155]],"o":[[25.664,58.408],[-6.435,34.983],[-34.983,-6.435],[12.057,48.134]],"v":[[29.902,-105.564],[55.722,46.071],[-19.272,97.762],[-62.997,-18.375]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-54.662,56.939],[-21.112,21.663],[36.819,0.63],[3.619,48.777]],"o":[[5.338,56.939],[20.993,48.329],[-32.5,-0.556],[57.303,3.063]],"v":[[-7.338,-108.939],[56.925,4.101],[-1.758,100.061],[-76.227,19.844]],"c":true}]},{"t":32,"s":[{"i":[[-32.312,54.845],[-50.481,50.293],[35.394,-6.415],[6.415,35.394]],"o":[[46.16,46.426],[17.507,77.667],[-35.394,6.415],[-6.415,-35.394]],"v":[[-32.108,-101.639],[64.059,-13.213],[18.468,99.426],[-57.235,46.954]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second 2","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-41.664,72.163],[-8.214,-67.826],[46.519,-9.139],[9.031,45.968]],"o":[[23.707,82.394],[5.632,46.51],[-46.519,9.139],[-9.031,-45.968]],"v":[[-41.859,-162.622],[87.483,-0.511],[19.606,99.271],[-80.977,32.585]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-17.507,82.469],[18.015,-60.597],[47.482,-0.642],[-14.381,45.257]],"o":[[42.493,69.469],[-14.703,49.456],[-60.597,0.819],[27.842,-87.619]],"v":[[41.507,-150.469],[91.801,20.75],[0.906,101],[-82.619,-4.635]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-24.427,64.616],[9.005,-44.596],[44.596,9.005],[-9.492,44.494]],"o":[[41.516,68.877],[-9.005,44.596],[-44.596,-9.005],[13.048,-61.165]],"v":[[43.143,-159.265],[78.884,33.269],[-18.169,97.711],[-82.611,0.658]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-66.821,80.403],[-15.912,-60.669],[49.77,0.851],[10.874,42.57]],"o":[[-1.821,86.403],[12.892,49.156],[-43.931,-0.751],[-13.53,-52.967]],"v":[[0.821,-184.403],[78.597,2.76],[-0.727,99],[-81.47,33.052]],"c":true}]},{"t":32,"s":[{"i":[[-41.664,72.163],[-8.214,-67.826],[46.519,-9.139],[9.031,45.968]],"o":[[23.707,82.394],[5.632,46.51],[-46.519,9.139],[-9.031,-45.968]],"v":[[-41.859,-162.622],[87.483,-0.511],[19.606,99.271],[-80.977,32.585]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-3.18,-152.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"main 2","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-50.591,89.284],[-10.423,-83.922],[56.878,-11.304],[11.304,56.878]],"o":[[29.463,101.948],[7.147,57.548],[-56.878,11.304],[-11.304,-56.878]],"v":[[-43.991,-227.888],[102.986,-20.467],[20.467,102.986],[-102.986,20.467]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[35.726,95.092],[22,-74],[57.985,-0.784],[-17.561,55.267]],"o":[[96.726,88.092],[-17.955,60.395],[-74,1],[34,-107]],"v":[[20.274,-202.092],[111,7],[0,105],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-29.463,101.948],[11.304,-56.878],[56.878,11.304],[-7.147,57.548]],"o":[[50.591,89.284],[-11.304,56.878],[-56.878,-11.304],[10.423,-83.922]],"v":[[43.237,-226.763],[102.232,21.592],[-21.221,104.111],[-103.74,-19.342]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-117.832,89.347],[-21.001,-80.072],[65.687,1.123],[14.352,56.186]],"o":[[-46.372,107.609],[17.016,64.878],[-57.982,-0.992],[-17.858,-69.908]],"v":[[31.079,-257.165],[104.694,-22.02],[0,105],[-106.567,17.96]],"c":true}]},{"t":32,"s":[{"i":[[-50.591,89.284],[-10.423,-83.922],[56.878,-11.304],[11.304,56.878]],"o":[[29.463,101.948],[7.147,57.548],[-56.878,11.304],[-11.304,-56.878]],"v":[[-43.991,-227.888],[102.986,-20.467],[20.467,102.986],[-102.986,20.467]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[0,76.641]},"e":{"a":0,"k":[0,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_20","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":8,"s":[0]}]},"p":{"a":0,"k":[255.562,491.044,0]},"a":{"a":0,"k":[-51.438,222.044,0]},"s":{"a":0,"k":[105,95,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-32.312,54.845],[-50.481,50.293],[35.394,-6.415]],"o":[[46.16,46.426],[17.507,77.667],[-35.394,6.415]],"v":[[-32.108,-101.639],[64.059,-13.213],[18.468,99.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-20.681,66.638],[-25.24,25.147],[36.938,-3.468]],"o":[[19.636,60.922],[8.753,38.833],[-42.253,3.539]],"v":[[6.903,-103.82],[25.247,13.158],[-2.402,97.962]],"c":true}]},{"t":8,"s":[{"i":[[-9.049,78.431],[0,0],[38.482,-0.52]],"o":[[-6.888,75.419],[0,0],[-49.111,0.664]],"v":[[45.915,-106],[26.435,33.213],[-23.272,96.498]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":8,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"core 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[100]},{"t":16,"s":[0]}]},"p":{"a":0,"k":[255.562,491.044,0]},"a":{"a":0,"k":[-51.438,222.044,0]},"s":{"a":0,"k":[105,95,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-32.312,54.845],[35.394,-6.415],[6.415,35.394]],"o":[[46.16,46.426],[-35.394,6.415],[-6.415,-35.394]],"v":[[-32.108,-101.639],[18.468,99.426],[-57.235,46.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-9.049,78.431],[38.482,-0.52],[-11.655,36.679]],"o":[[14.108,81.288],[-49.111,0.664],[15.601,23.049]],"v":[[36.441,-78.381],[-17.358,97.851],[-58.736,-34.428]],"c":true}]},{"t":16,"s":[{"i":[[25.316,-83.965],[-0.749,0.077],[-76.071,58.32]],"o":[[0.554,1.298],[-34.983,-6.435],[-36.071,64.636]],"v":[[-53.908,77.594],[-54.51,76.71],[-37.283,-93.112]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.121,0.996,0.996,0.898,0.54,0.998,0.951,0.598,0.808,1,0.906,0.298]}},"s":{"a":0,"k":[2.235,29.653]},"e":{"a":0,"k":[6.469,-84.419]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 4","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":16,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"second 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":8,"s":[0]}]},"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-41.664,72.163],[-8.214,-67.826],[46.519,-9.139]],"o":[[23.707,82.394],[5.632,46.51],[-46.519,9.139]],"v":[[-41.859,-162.622],[87.483,-0.511],[19.606,99.271]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[-20.764,35.76],[-4.177,-33.677],[23.13,-4.558]],"o":[[11.758,40.899],[2.873,23.062],[-23.024,4.548]],"v":[[0.057,-155.184],[26.715,-70.788],[1.037,-22.218]],"c":true}]},{"t":8,"s":[{"i":[[0.137,-0.643],[-0.14,0.473],[-0.258,0.023]],"o":[[-0.191,-0.596],[0.115,-0.386],[0.471,-0.043]],"v":[[41.973,-147.746],[41.947,-149.066],[42.469,-149.707]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-3.18,-152.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":9,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"second 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[100]},{"t":16,"s":[0]}]},"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-41.664,72.163],[46.519,-9.139],[9.031,45.968]],"o":[[23.707,82.394],[-46.519,9.139],[-9.031,-45.968]],"v":[[-41.859,-162.622],[19.606,99.271],[-80.977,32.585]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-17.507,82.469],[47.482,-0.642],[-14.381,45.257]],"o":[[42.493,69.469],[-60.597,0.819],[52.619,38.635]],"v":[[41.507,-150.469],[-14.094,99],[-74.619,-94.635]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-41.143,-111.735],[0.169,1.289],[-67.389,81.342]],"o":[[-0.143,-0.735],[-65.831,-26.711],[73.611,83.342]],"v":[[-48.857,72.735],[-50.169,74.711],[-15.611,-173.342]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-66.821,80.403],[49.77,0.851],[10.874,42.57]],"o":[[-1.821,86.403],[-43.931,-0.751],[-13.53,-52.967]],"v":[[0.821,-184.403],[-0.727,99],[-81.47,33.052]],"c":true}]},{"t":32,"s":[{"i":[[-41.664,72.163],[46.519,-9.139],[9.031,45.968]],"o":[[23.707,82.394],[-46.519,9.139],[-9.031,-45.968]],"v":[[-41.859,-162.622],[19.606,99.271],[-80.977,32.585]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.914,0.239,0.269,1,0.739,0.22,1,1,0.565,0.2]}},"s":{"a":0,"k":[1.76,83.087]},"e":{"a":0,"k":[-3.18,-152.581]},"t":1,"nm":"Gradient Fill 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":16,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"main 3","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-50.971,89.067],[103.972,-17.072],[11.061,56.925]],"o":[[29.028,102.073],[-57.224,9.396],[-11.061,-56.925]],"v":[[-43.019,-228.074],[20.028,103.072],[-103.072,20.028]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[43.726,82.092],[57.988,0.518],[-95,149]],"o":[[96.726,88.092],[-112,-1],[-13,51]],"v":[[20.274,-202.092],[0,105],[-73,-138]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-73.494,-115.442],[-0.965,-0.071],[38.023,130.049]],"o":[[-0.535,-0.415],[-233.934,-85.156],[139.015,154.085]],"v":[[-22.502,103.407],[-20.072,103.064],[-32.976,-260.047]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[2.021,-34.999],[-0.33,-1.295],[-11.432,87.746]],"o":[[1.079,2.35],[22.732,-106.281],[55.537,140.785]],"v":[[-87.963,-63.052],[-89.633,-60.758],[17.544,-277.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-0.698,-28.573],[0.066,0.496],[-9.356,59.089]],"o":[[-0.427,-0.075],[-30.434,-80.504],[51.697,91.245]],"v":[[-35.323,-171.675],[-35.566,-171.996],[29.381,-304.076]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[24.936,-19.259],[-0.649,-0.657],[-15.013,31.882]],"o":[[-0.129,0.159],[-25.448,-61.739],[35.94,46.05]],"v":[[-26.053,-248.746],[-26.036,-246.932],[35.021,-337.818]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-0.582,0.228],[-0.296,-0.089],[0.406,0.513]],"o":[[-0.319,0.299],[-1.172,0.037],[0.462,0.188]],"v":[[21.662,-367.612],[21.457,-366.849],[20.741,-368.45]],"c":true}]},{"t":33,"s":[{"i":[[-0.582,0.228],[-0.296,-0.089],[0.406,0.513]],"o":[[-0.319,0.299],[-1.172,0.037],[0.462,0.188]],"v":[[22.119,-425.612],[21.915,-424.849],[21.199,-426.45]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[35.726,95.092],[9.957,-101.911],[-1.117,44.693]],"o":[[71.726,197.092],[-45.603,-22.126],[3,-120]],"v":[[-42.726,-223.092],[-45.957,94.911],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[35.726,95.092],[9.957,-101.911],[-13.539,42.608]],"o":[[76.726,173.092],[-45.603,-22.126],[34,-107]],"v":[[20.274,-202.092],[-45.957,94.911],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[28.539,79.666],[15.271,-30.792],[63.294,-24.571]],"o":[[89.467,109.928],[-7.636,15.397],[-160.84,62.44]],"v":[[-4.803,-241.627],[21.701,-28.613],[-27.163,-45.068]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[27.035,22.744],[-7.411,-52.025],[34.341,-66.85]],"o":[[98.144,67.203],[4.153,29.149],[-14.835,28.88]],"v":[[-66.918,-295.641],[41.698,-130.341],[-50.963,-169.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[38.174,25.145],[-12.055,-52.934],[22.231,-50.177]],"o":[[93.649,22.392],[6.204,24.263],[-19.381,32.447]],"v":[[-114.032,-311.296],[26.995,-175.344],[-61.336,-205.289]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[51.836,22.143],[-19.073,-53.622],[17.852,-32.908]],"o":[[74.884,-18.277],[7.052,19.825],[-21.585,39.789]],"v":[[-157.371,-308.755],[11.042,-212.473],[-74.322,-234.122]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[47.388,-0.852],[-20.633,-42.246],[-6.679,-39.947]],"o":[[79.829,-60.96],[7.911,20.621],[3.631,36.916]],"v":[[-192.262,-284.999],[-12.601,-245.703],[-93.247,-262.886]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[30.066,-23.944],[-27.45,-33.052],[-38.7,-24.364]],"o":[[34.202,-118.986],[16.55,19.928],[26.108,16.437]],"v":[[-220.042,-233.02],[-52.086,-285.918],[-140.713,-280.698]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[21.559,-53.406],[-42.556,-12.395],[-39.454,-8.254]],"o":[[-21.52,-112.915],[26.583,7.597],[22.752,4.36]],"v":[[-217.817,-188.862],[-94.492,-311.817],[-150.4,-267.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-8.081,-76.532],[-44.505,14.451],[-34.813,5.036]],"o":[[-66.788,-82.682],[28.609,-9.29],[15.471,-2.238]],"v":[[-197.892,-143.194],[-148.445,-308.584],[-158.488,-252.15]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-42.015,-57.434],[-26.817,31.143],[-39.824,16.539]],"o":[[-92.051,-33.255],[19.332,-22.828],[22.33,-8.449]],"v":[[-156.547,-114.04],[-197.313,-273.38],[-168.13,-223.209]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-61.367,-22.786],[-3.433,35.391],[-37.643,36.993]],"o":[[-86.784,22.985],[2.883,-29.724],[23.519,-23.113]],"v":[[-107.757,-110.853],[-225.28,-214.573],[-166.864,-196.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[{"i":[[-48.255,8.824],[11.318,24.14],[-10.048,38.28]],"o":[[-47.05,48.04],[-9.546,-20.238],[6.238,-23.914]],"v":[[-81.839,-126.076],[-197.225,-147.861],[-152.608,-158.445]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[{"i":[[-22.599,23.564],[15.508,8.665],[9.557,24.582]],"o":[[-6.616,44.216],[-13.049,-7.172],[-6.032,-15.307]],"v":[[-64.671,-149.022],[-135.368,-115.824],[-115.418,-138.897]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-2.335,16.115],[8.871,-0.948],[11.06,7.121]],"o":[[10.116,19.764],[-7.341,0.908],[-6.895,-4.334]],"v":[[-43.565,-175.386],[-62.601,-141.49],[-61.167,-156.623]],"c":true}]},{"t":40,"s":[{"i":[[-0.068,-0.18],[-0.019,0.193],[0.026,-0.081]],"o":[[-0.145,-0.328],[0.086,0.042],[-0.064,0.203]],"v":[[-36.242,-198.937],[-36.116,-199.5],[-36.01,-199.275]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[-0.803,78.641]},"e":{"a":0,"k":[5.941,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":40,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"01 fire small left flame (f0)","refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":-16,"op":16,"st":-16,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"main 4","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-50.971,89.067],[103.972,-17.072],[11.061,56.925]],"o":[[29.028,102.073],[-57.224,9.396],[-11.061,-56.925]],"v":[[-43.019,-228.074],[20.028,103.072],[-103.072,20.028]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[43.726,82.092],[57.988,0.518],[-95,149]],"o":[[96.726,88.092],[-112,-1],[-13,51]],"v":[[20.274,-202.092],[0,105],[-73,-138]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-73.494,-115.442],[-0.965,-0.071],[38.023,130.049]],"o":[[-0.535,-0.415],[-233.934,-85.156],[139.015,154.085]],"v":[[-22.502,103.407],[-20.072,103.064],[-32.976,-260.047]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[2.021,-34.999],[-0.33,-1.295],[-11.432,87.746]],"o":[[1.079,2.35],[22.732,-106.281],[55.537,140.785]],"v":[[-87.963,-63.052],[-89.633,-60.758],[17.544,-277.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-0.698,-28.573],[0.066,0.496],[-9.356,59.089]],"o":[[-0.427,-0.075],[-30.434,-80.504],[51.697,91.245]],"v":[[-35.323,-171.675],[-35.566,-171.996],[29.381,-304.076]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[24.936,-19.259],[-0.649,-0.657],[-15.013,31.882]],"o":[[-0.129,0.159],[-25.448,-61.739],[35.94,46.05]],"v":[[-26.053,-248.746],[-26.036,-246.932],[35.021,-337.818]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-0.582,0.228],[-0.296,-0.089],[0.406,0.513]],"o":[[-0.319,0.299],[-1.172,0.037],[0.462,0.188]],"v":[[21.662,-367.612],[21.457,-366.849],[20.741,-368.45]],"c":true}]},{"t":33,"s":[{"i":[[-0.582,0.228],[-0.296,-0.089],[0.406,0.513]],"o":[[-0.319,0.299],[-1.172,0.037],[0.462,0.188]],"v":[[22.119,-425.612],[21.915,-424.849],[21.199,-426.45]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[35.726,95.092],[9.957,-101.911],[-1.117,44.693]],"o":[[71.726,197.092],[-45.603,-22.126],[3,-120]],"v":[[-42.726,-223.092],[-45.957,94.911],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[35.726,95.092],[9.957,-101.911],[-13.539,42.608]],"o":[[76.726,173.092],[-45.603,-22.126],[34,-107]],"v":[[20.274,-202.092],[-45.957,94.911],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[28.539,79.666],[15.271,-30.792],[63.294,-24.571]],"o":[[89.467,109.928],[-7.636,15.397],[-160.84,62.44]],"v":[[-4.803,-241.627],[21.701,-28.613],[-27.163,-45.068]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[27.035,22.744],[-7.411,-52.025],[34.341,-66.85]],"o":[[98.144,67.203],[4.153,29.149],[-14.835,28.88]],"v":[[-66.918,-295.641],[41.698,-130.341],[-50.963,-169.565]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[38.174,25.145],[-12.055,-52.934],[22.231,-50.177]],"o":[[93.649,22.392],[6.204,24.263],[-19.381,32.447]],"v":[[-114.032,-311.296],[26.995,-175.344],[-61.336,-205.289]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[51.836,22.143],[-19.073,-53.622],[17.852,-32.908]],"o":[[74.884,-18.277],[7.052,19.825],[-21.585,39.789]],"v":[[-157.371,-308.755],[11.042,-212.473],[-74.322,-234.122]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[47.388,-0.852],[-20.633,-42.246],[-6.679,-39.947]],"o":[[79.829,-60.96],[7.911,20.621],[3.631,36.916]],"v":[[-192.262,-284.999],[-12.601,-245.703],[-93.247,-262.886]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[30.066,-23.944],[-27.45,-33.052],[-38.7,-24.364]],"o":[[34.202,-118.986],[16.55,19.928],[26.108,16.437]],"v":[[-220.042,-233.02],[-52.086,-285.918],[-140.713,-280.698]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[21.559,-53.406],[-42.556,-12.395],[-39.454,-8.254]],"o":[[-21.52,-112.915],[26.583,7.597],[22.752,4.36]],"v":[[-217.817,-188.862],[-94.492,-311.817],[-150.4,-267.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[-8.081,-76.532],[-44.505,14.451],[-34.813,5.036]],"o":[[-66.788,-82.682],[28.609,-9.29],[15.471,-2.238]],"v":[[-197.892,-143.194],[-148.445,-308.584],[-158.488,-252.15]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-42.015,-57.434],[-26.817,31.143],[-39.824,16.539]],"o":[[-92.051,-33.255],[19.332,-22.828],[22.33,-8.449]],"v":[[-156.547,-114.04],[-197.313,-273.38],[-168.13,-223.209]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[-61.367,-22.786],[-3.433,35.391],[-37.643,36.993]],"o":[[-86.784,22.985],[2.883,-29.724],[23.519,-23.113]],"v":[[-107.757,-110.853],[-225.28,-214.573],[-166.864,-196.295]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[{"i":[[-48.255,8.824],[11.318,24.14],[-10.048,38.28]],"o":[[-47.05,48.04],[-9.546,-20.238],[6.238,-23.914]],"v":[[-81.839,-126.076],[-197.225,-147.861],[-152.608,-158.445]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[{"i":[[-22.599,23.564],[15.508,8.665],[9.557,24.582]],"o":[[-6.616,44.216],[-13.049,-7.172],[-6.032,-15.307]],"v":[[-64.671,-149.022],[-135.368,-115.824],[-115.418,-138.897]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-2.335,16.115],[8.871,-0.948],[11.06,7.121]],"o":[[10.116,19.764],[-7.341,0.908],[-6.895,-4.334]],"v":[[-43.565,-175.386],[-62.601,-141.49],[-61.167,-156.623]],"c":true}]},{"t":40,"s":[{"i":[[-0.068,-0.18],[-0.019,0.193],[0.026,-0.081]],"o":[[-0.145,-0.328],[0.086,0.042],[-0.064,0.203]],"v":[[-36.242,-198.937],[-36.116,-199.5],[-36.01,-199.275]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":40,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-189.52,47.962],[-214.402,227]],"o":[[407,-103],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"t":45,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[8]},{"t":45,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[24]},{"t":45,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":5,"op":45,"st":5,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[302,241]],"o":[[-231.402,-99],[-79.13,-63.147]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":50,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[8]},{"t":50,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[24]},{"t":50,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":50,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-139.238,137.226],[-214.402,227]],"o":[[110.598,-109],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[409.598,33]],"o":[[-231.402,-99],[-100.91,-8.13]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"t":60,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[8]},{"t":60,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[24]},{"t":60,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0}]},{"id":"comp_21","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main 3","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-50.971,89.067],[56.925,-11.061],[11.061,56.925]],"o":[[29.028,102.073],[-56.925,11.061],[-11.061,-56.925]],"v":[[-51.019,-212.091],[20.028,103.072],[-103.072,20.028]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[43.726,82.092],[57.988,0.518],[-95,149]],"o":[[96.726,88.092],[-112,-1],[-13,51]],"v":[[30.274,-165.092],[0,105],[-73,-138]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-73.494,-115.442],[-0.965,-0.071],[38.023,130.049]],"o":[[-0.535,-0.415],[-233.934,-85.156],[139.015,154.085]],"v":[[-22.502,103.407],[-20.072,103.064],[-32.976,-260.047]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[2.021,-34.999],[-0.33,-1.295],[-11.432,87.746]],"o":[[1.079,2.35],[22.732,-106.281],[55.537,140.785]],"v":[[-87.963,-63.052],[-89.633,-60.758],[17.544,-277.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-0.698,-28.573],[0.066,0.496],[-9.356,59.089]],"o":[[-0.427,-0.075],[-30.434,-80.504],[51.697,91.245]],"v":[[-35.323,-171.675],[-35.566,-171.996],[29.381,-304.076]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[24.936,-19.259],[-0.649,-0.657],[-15.013,31.882]],"o":[[-0.129,0.159],[-25.448,-61.739],[35.94,46.05]],"v":[[-26.053,-248.746],[-26.036,-246.932],[35.021,-337.818]],"c":true}]},{"t":32,"s":[{"i":[[-0.582,0.228],[-0.296,-0.089],[0.406,0.513]],"o":[[-0.319,0.299],[-1.172,0.037],[0.462,0.188]],"v":[[21.662,-367.612],[21.457,-366.849],[20.741,-368.45]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[-0.803,78.641]},"e":{"a":0,"k":[5.941,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_22","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main 3","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[65.688,1.123],[19.556,69.083]],"o":[[-41.977,-0.718],[0.056,0.083]],"v":[[0,105],[-106.556,17.417]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[56.878,-11.304],[-71.136,145.476]],"o":[[-40.253,8],[-9.136,65.476]],"v":[[20.467,102.986],[-125.864,-38.476]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[57.289,-92.906],[-55.086,48.981]],"o":[[-57.711,-67.906],[-28.086,62.981]],"v":[[-145.289,-16.094],[-126.914,-181.981]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-8.455,-33.826],[3.464,50.987]],"o":[[-46.455,-37.826],[67.464,52.987]],"v":[[-122.545,-106.174],[-129.464,-218.987]],"c":true}]},{"t":32,"s":[{"i":[[-0.557,-0.338],[-1.599,1.221]],"o":[[-0.348,0.005],[-0.55,0.457]],"v":[[-130.801,-267.255],[-131.014,-268.993]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":8},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.179,0.98,0.476,0.053,1,0.992,0.302,0.082]}},"s":{"a":0,"k":[-0.803,78.641]},"e":{"a":0,"k":[5.941,-306.457]},"t":1,"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":-24,"bm":0}]},{"id":"comp_23","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"main outlines","sr":1,"ks":{"p":{"a":0,"k":[256,390,0]},"a":{"a":0,"k":[-51,121,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-50.591,89.284],[-10.423,-83.922],[56.878,-11.304],[11.304,56.878]],"o":[[29.463,101.948],[7.147,57.548],[-56.878,11.304],[-11.304,-56.878]],"v":[[-43.991,-227.888],[102.986,-20.467],[20.467,102.986],[-102.986,20.467]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[35.726,95.092],[22,-74],[57.985,-0.784],[-17.561,55.267]],"o":[[96.726,88.092],[-17.955,60.395],[-74,1],[34,-107]],"v":[[20.274,-202.092],[111,7],[0,105],[-102,-24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-29.463,101.948],[11.304,-56.878],[56.878,11.304],[-7.147,57.548]],"o":[[50.591,89.284],[-11.304,56.878],[-56.878,-11.304],[10.423,-83.922]],"v":[[43.237,-226.763],[102.232,21.592],[-21.221,104.111],[-103.74,-19.342]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-117.832,89.347],[-21.001,-80.072],[65.687,1.123],[14.352,56.186]],"o":[[-46.372,107.609],[17.016,64.878],[-57.982,-0.992],[-17.858,-69.908]],"v":[[31.079,-257.165],[104.694,-22.02],[0,105],[-106.567,17.96]],"c":true}]},{"t":32,"s":[{"i":[[-50.591,89.284],[-10.423,-83.922],[56.878,-11.304],[11.304,56.878]],"o":[[29.463,101.948],[7.147,57.548],[-56.878,11.304],[-11.304,-56.878]],"v":[[-43.991,-227.888],[102.986,-20.467],[20.467,102.986],[-102.986,20.467]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[-51,121]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":0,"op":32,"st":0,"bm":0}]},{"id":"comp_24","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[4.186,6.698],[-41.687,-10.636]],"o":[[-10.293,-16.469],[55.022,14.038]],"v":[[7.834,173.427],[18.299,221.462]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[14.361,7.522],[-30.261,-6.497]],"o":[[-24.248,-12.701],[34.72,7.454]],"v":[[35.139,128.628],[12.401,185.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":31,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[47.81,-67.072],[-25.632,9.313]],"o":[[-93.246,48.698],[25.632,-9.313]],"v":[[-74.754,121.302],[-13.132,182.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[16.302,-91.514],[22.297,-55.155]],"o":[[-51.846,41.486],[63.795,-25.293]],"v":[[-77.654,-43.486],[-14.297,37.655]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[65.508,-110.844],[-62.172,37.016]],"o":[[-46.719,4.672],[111.508,-8.984]],"v":[[-77.508,-81.156],[-31.508,-13.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[44.392,-34.904],[-43.656,10.635]],"o":[[-57.534,8.63],[43.656,-10.635]],"v":[[-64.892,-151.596],[-43.156,-90.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[45.056,-54.944],[-36.611,29.426]],"o":[[-75.944,-2.944],[74.944,33.426]],"v":[[-55.556,-184.556],[-45.389,-150.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[14.5,-3],[-14.25,5.5]],"o":[[-14.5,3],[14.25,-5.5]],"v":[[-44.875,-250.5],[-40.375,-234]],"c":true}]},{"t":60,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[38.071,2.586],[-51.674,3.841],[-14.328,5.136]],"o":[[-71.639,-4.866],[8.07,11.41],[22.966,-8.233]],"v":[[122.074,242.366],[89.943,278.535],[130.995,288.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[20.869,-12.454],[-146.79,82.022],[-12.062,30.104]],"o":[[-112.454,-96.052],[15.663,4.937],[27.265,-8.079]],"v":[[157.954,39.052],[123.79,100.978],[169.735,69.137]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[74.55,-67.464],[-92.612,89.3],[0.78,32.797]],"o":[[-175.95,-43.988],[-28.612,-55.2],[57.28,16.797]],"v":[[109.45,-30.036],[99.612,30.2],[150.72,14.703]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[79.321,-50.136],[-20.934,-21.241],[-26.364,9.073]],"o":[[-58.179,-42.136],[17.914,18.177],[76.169,29.621]],"v":[[102.679,-76.364],[46.086,-27.677],[111.331,-23.621]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[62.617,-21.138],[-8.337,-17.814],[-11.971,0.122]],"o":[[-29.444,-9.815],[3.681,7.865],[67.802,31.907]],"v":[[103.66,-125.362],[70.352,-89.569],[93.689,-75.907]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[19.334,0],[-4.841,-5.763],[-4.486,0.179]],"o":[[-13.412,0],[2.137,2.544],[14.647,-0.586]],"v":[[106.839,-168.5],[96.133,-153.01],[106.253,-148.873]],"c":true}]},{"t":60,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-3.499,-24.848],[-6.884,-16.478],[-0.301,7.46],[-4.644,0.228],[-25.003,12.782],[33.341,-4.053]],"o":[[-34.078,22.449],[3.276,7.842],[1.294,-32.082],[19.012,20.499],[85.358,33.282],[-6.489,-19.362]],"v":[[-102.261,200.848],[-133.404,262.516],[-118.294,281.082],[-102.012,287.001],[-31.997,296.218],[-11.544,205.996]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-0.747,-48.874],[-2.455,-35.731],[-40.679,19.746],[-10.189,-28.494],[-11.643,4.734],[85.039,22.458]],"o":[[-21.211,-29.874],[-35.532,22.641],[-1.215,-25.539],[22.811,19.506],[80.357,20.734],[29.075,-42.399]],"v":[[-100.253,19.874],[-169.932,40.216],[-144.785,98.539],[-93.811,115.494],[-40.357,117.266],[-14.075,40.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[4.596,-2.157],[-2.838,-33.101],[-23.392,21.782],[64.52,-34.091],[-7.412,7.454],[7.166,18.65]],"o":[[-43.115,-41.195],[-25.698,17.837],[-20.978,-41.699],[20.24,22.409],[13.576,-13.654],[-5.083,-13.23]],"v":[[-78.36,-37.305],[-165.347,-14.561],[-142.022,35.199],[-94.52,47.591],[-39.74,43.428],[-28.273,-12.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.586,24.077],[1.481,-16.058],[-4.9,-5.507],[-10.179,0.727],[8.719,-39.971],[89.45,-41.348]],"o":[[-19.447,-7.56],[-0.705,7.642],[4.542,5.105],[-3.153,-23.324],[83.219,35.029],[-14.55,-40.348]],"v":[[-113.586,-84.077],[-147.276,-60.135],[-141.231,-39.204],[-119.347,-31.676],[-66.219,-26.529],[-64.45,-76.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.764,-16.52],[-0.797,-14.42],[-5.435,-4.397],[-9.222,1.812],[-4.425,5.611],[7.725,10.732]],"o":[[-22.868,-5.87],[0.379,6.863],[5.039,4.077],[14.57,16.763],[8.105,-10.278],[-5.48,-7.613]],"v":[[-80.463,-124.48],[-113.116,-101.094],[-104.345,-83.066],[-82.915,-78.763],[-39.977,-80.996],[-37.614,-117.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[9.081,-4.12],[1.941,-4.856],[-0.074,-2.217],[-1.433,-1.373],[-2.412,2.764],[3.877,5.235]],"o":[[-4.629,2.1],[-0.924,2.311],[0.069,2.056],[11.907,11.408],[4.417,-5.063],[-2.75,-3.714]],"v":[[-75.274,-166.527],[-85.585,-154.758],[-86.926,-147.859],[-85.155,-142.261],[-54.718,-143.901],[-53.648,-161.404]],"c":true}]},{"t":60,"s":[{"i":[[0.601,-0.289],[0.013,-0.847],[-0.221,-0.37],[-0.364,-0.269],[-0.704,0.652],[0.934,1.027]],"o":[[-1.307,0.628],[-0.006,0.403],[0.205,0.343],[0.87,0.643],[1.289,-1.194],[-0.662,-0.729]],"v":[[-79.613,-181.42],[-81.494,-179.083],[-81.161,-177.91],[-80.299,-176.982],[-73.89,-177.455],[-73.114,-181.387]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":20,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.988,3.181],[-19.8,-5.052]],"o":[[-4.889,-7.822],[26.133,6.668]],"v":[[19.329,271.399],[24.3,294.213]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.101,9.761],[-60.75,-15.5]],"o":[[-15,-24],[80.183,20.458]],"v":[[0,163],[15.25,233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[21,11],[-44.25,-9.5]],"o":[[-35.458,-18.573],[50.771,10.9]],"v":[[35,125],[1.75,207.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[32.578,61.344],[28.072,72.523]],"c":true}]},{"t":31,"s":[{"i":[[2.846,1.491],[-5.996,-1.287]],"o":[[-4.805,-2.517],[6.88,1.477]],"v":[[20.578,-416.656],[16.072,-405.477]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[69.5,-97.5],[-113.5,45]],"o":[[-66.5,8.5],[86.092,-34.134]],"v":[[-90.5,124.5],[-22,227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[22,-123.5],[-113.5,45]],"o":[[-41.5,7],[86.092,-34.134]],"v":[[-91.5,-56.5],[-6,53]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[29.5,-125],[-86.5,51.5]],"o":[[-65,6.5],[164.5,11.5]],"v":[[-87.5,-87],[-23.5,-7.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[71,-76.5],[-34.5,28]],"o":[[-90,13.5],[106.5,47.5]],"v":[[-68.5,-157.5],[-34.5,-62.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[48.5,-66],[-34.5,28]],"o":[[-81,3],[106.5,47.5]],"v":[[-57.5,-194],[-53,-132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[29,-6],[-28.5,11]],"o":[[-29,6],[28.5,-11]],"v":[[-46,-251.5],[-37,-218.5]],"c":true}]},{"t":60,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[70.414,4.783],[-95.574,7.104],[-26.5,9.5]],"o":[[-132.5,-9],[14.926,21.104],[42.478,-15.228]],"v":[[116,239],[56.574,305.896],[132.5,325]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[31,-18.5],[-168.751,36.203],[-17.918,44.718]],"o":[[-248,-61.5],[23.267,7.334],[40.5,-12]],"v":[[167,24],[116.251,135.297],[184.5,88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[101,-20.5],[-133.016,57.816],[-23.678,31.225]],"o":[[-222,-55.5],[17.83,12.614],[53,-13]],"v":[[114.5,-57.5],[94.516,65.184],[159,45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[108,-21],[-25.045,-34.694],[-37.826,13.017]],"o":[[-46.826,-19.424],[11.058,15.318],[78.5,26]],"v":[[96,-99.5],[40.628,-7.406],[112,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[78.5,-26.5],[-10.452,-22.332],[-15.008,0.153]],"o":[[-36.913,-12.304],[4.615,9.86],[85,40]],"v":[[101.5,-126.5],[59.744,-81.628],[89,-64.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[33,0],[-8.262,-9.837],[-7.657,0.306]],"o":[[-22.893,0],[3.648,4.343],[25,-1]],"v":[[103,-170],[84.726,-143.561],[102,-136.5]],"c":true}]},{"t":60,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-4.046,-28.733],[-7.961,-19.055],[-7.058,-4.972],[-5.37,0.263],[-10.383,14.21],[38.553,-4.686]],"o":[[-39.406,25.959],[3.789,9.068],[6.543,4.609],[20.166,40.644],[98.704,38.486],[-7.504,-22.39]],"v":[[-106.454,196.733],[-142.466,268.042],[-124.994,289.511],[-106.166,296.356],[-25.204,307.014],[-1.553,202.686]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[7.754,-10.103],[-2.864,-41.686],[-47.459,23.038],[-17.819,6.695],[-11.001,13.349],[99.213,26.201]],"o":[[-24.746,-34.853],[-41.454,26.415],[10.089,11.703],[9.571,21.591],[45.708,87.19],[-6.546,-22.901]],"v":[[-105.754,6.853],[-187.046,30.585],[-146.041,114.963],[-104.071,125.409],[-34.708,136.81],[-5.213,30.799]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[5.648,-2.651],[-3.488,-40.68],[-28.748,26.769],[-22.563,7.933],[-9.109,9.161],[8.807,22.921]],"o":[[-52.986,-50.627],[-31.582,21.921],[15.404,15.153],[24.874,27.539],[16.685,-16.781],[-6.247,-16.259]],"v":[[-65.014,-36.373],[-171.918,-8.421],[-143.252,52.731],[-84.874,67.961],[-17.551,62.845],[-3.459,-5.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.861,-24.879],[2.389,-25.903],[-7.904,-8.883],[-16.419,1.173],[-8.619,13.394],[50.602,-9.162]],"o":[[-31.37,-12.195],[-1.137,12.327],[7.327,8.235],[20.153,51.095],[59.455,-7.707],[-9.228,-15.356]],"v":[[-114.361,-87.621],[-168.705,-49.001],[-158.954,-15.239],[-123.653,-3.095],[-37.955,5.207],[-35.102,-74.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.907,-25.093],[-1.21,-21.904],[-8.256,-6.68],[-14.008,2.753],[-6.721,8.523],[11.735,16.301]],"o":[[-34.736,-8.916],[0.576,10.424],[7.654,6.192],[22.131,25.463],[12.311,-15.612],[-8.324,-11.564]],"v":[[-85.407,-125.907],[-135.006,-90.384],[-121.683,-62.999],[-89.131,-56.463],[-23.909,-59.855],[-20.32,-115.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[16.089,-7.299],[3.439,-8.602],[-0.131,-3.928],[-2.539,-2.432],[-4.273,4.897],[6.868,9.275]],"o":[[-8.201,3.721],[-1.637,4.094],[0.122,3.642],[21.095,20.211],[7.826,-8.97],[-4.872,-6.579]],"v":[[-77.089,-167.201],[-95.356,-146.351],[-97.732,-134.128],[-94.595,-124.211],[-40.671,-127.117],[-38.776,-158.124]],"c":true}]},{"t":60,"s":[{"i":[[1.463,-0.702],[0.031,-2.062],[-0.538,-0.9],[-0.887,-0.655],[-1.713,1.587],[2.273,2.5]],"o":[[-3.182,1.528],[-0.015,0.981],[0.498,0.834],[2.118,1.565],[3.138,-2.907],[-1.612,-1.773]],"v":[[-78.589,-181.314],[-83.167,-175.626],[-82.357,-172.772],[-80.258,-170.512],[-64.659,-171.663],[-62.771,-181.234]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0}]},{"id":"comp_25","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 12","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,743,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"t":8,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":88,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"02 fire middle end","parent":1,"refId":"comp_11","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":88,"st":32,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":24,"op":52,"st":24,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":8,"op":36,"st":8,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"02 fire middle center (f0)","parent":1,"refId":"comp_14","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":16,"op":48,"st":16,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"02 fire middle end outl","parent":1,"refId":"comp_17","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":88,"st":32,"bm":0}]},{"id":"comp_26","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 14","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,488,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":8,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":30,"s":[60,60,100]},{"t":42,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":92,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"03 fire small wide cycle end","parent":1,"refId":"comp_7","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":60,"st":32,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"03 fire small wide cycle","parent":1,"refId":"comp_8","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","parent":1,"refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"01 fire small left flame twirl","parent":1,"refId":"comp_4","sr":1,"ks":{"p":{"a":0,"k":[0,-232,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-139.238,137.226],[-214.402,227]],"o":[[110.598,-109],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[409.598,33]],"o":[[-231.402,-99],[-100.91,-8.13]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"t":93,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[8]},{"t":93,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[24]},{"t":93,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":33,"op":93,"st":33,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[179.736,76.896],[302,241]],"o":[[-231.402,-99],[-79.13,-63.147]],"v":[[-11,213],[-186,-187]],"c":false}},"nm":"Path 2","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"t":83,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[8]},{"t":83,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[24]},{"t":83,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":33,"op":83,"st":33,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[261.799,285,0]},"a":{"a":0,"k":[3.799,5,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-189.52,47.962],[-214.402,227]],"o":[[407,-103],[69.514,-73.599]],"v":[[7,157],[22,-231]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"t":78,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.905882418156,0.298039227724,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[8]},{"t":78,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.992156922817,0.321568638086,0.078431375325,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[24]},{"t":78,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":38,"op":78,"st":38,"bm":0}]},{"id":"comp_27","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[47.81,-67.072],[-25.632,9.313]],"o":[[-93.246,48.698],[25.632,-9.313]],"v":[[-74.754,121.302],[-13.132,182.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[16.302,-91.514],[22.297,-55.155]],"o":[[-51.846,41.486],[63.795,-25.293]],"v":[[-77.654,-43.486],[-14.297,37.655]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[65.508,-110.844],[-62.172,37.016]],"o":[[-46.719,4.672],[111.508,-8.984]],"v":[[-77.508,-81.156],[-31.508,-13.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[44.392,-34.904],[-43.656,10.635]],"o":[[-57.534,8.63],[43.656,-10.635]],"v":[[-64.892,-151.596],[-43.156,-90.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[45.056,-54.944],[-36.611,29.426]],"o":[[-75.944,-2.944],[74.944,33.426]],"v":[[-55.556,-184.556],[-45.389,-150.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.5,-3],[-14.25,5.5]],"o":[[-14.5,3],[14.25,-5.5]],"v":[[-44.875,-250.5],[-40.375,-234]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[38.071,2.586],[-51.674,3.841],[-14.328,5.136]],"o":[[-71.639,-4.866],[8.07,11.41],[22.966,-8.233]],"v":[[122.074,242.366],[89.943,278.535],[130.995,288.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[20.869,-12.454],[-146.79,82.022],[-12.062,30.104]],"o":[[-112.454,-96.052],[15.663,4.937],[27.265,-8.079]],"v":[[157.954,39.052],[123.79,100.978],[169.735,69.137]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[74.55,-67.464],[-92.612,89.3],[0.78,32.797]],"o":[[-175.95,-43.988],[-28.612,-55.2],[57.28,16.797]],"v":[[109.45,-30.036],[99.612,30.2],[150.72,14.703]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[79.321,-50.136],[-20.934,-21.241],[-26.364,9.073]],"o":[[-58.179,-42.136],[17.914,18.177],[76.169,29.621]],"v":[[102.679,-76.364],[46.086,-27.677],[111.331,-23.621]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[62.617,-21.138],[-8.337,-17.814],[-11.971,0.122]],"o":[[-29.444,-9.815],[3.681,7.865],[67.802,31.907]],"v":[[103.66,-125.362],[70.352,-89.569],[93.689,-75.907]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.334,0],[-4.841,-5.763],[-4.486,0.179]],"o":[[-13.412,0],[2.137,2.544],[14.647,-0.586]],"v":[[106.839,-168.5],[96.133,-153.01],[106.253,-148.873]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[29.237,-0.424],[18.659,-25.84],[-78.306,-8.932],[-2.4,-26.987],[0.564,-42.682],[30.491,12.722]],"o":[[-3.4,-14.426],[-41.473,-22.64],[-12.806,-41.432],[1.048,11.781],[27.835,19.62],[5.813,-25.223]],"v":[[106.649,132.4],[49.973,125.64],[49.306,238.932],[79.9,226.987],[116.436,225.182],[131.993,185.252]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[18.356,-65.631],[1.004,-68.279],[-92.58,7.072],[-16.188,1.28],[-17.016,-0.736],[29.057,17.998]],"o":[[12.356,-49.631],[-116.996,-73.279],[18.803,-1.436],[15.763,-1.246],[26.568,1.15],[25.666,-30.324]],"v":[[114.644,-62.369],[48.996,-92.721],[50.08,17.428],[99.158,-10.713],[145.932,9.85],[160.334,-37.676]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[40.408,-8.621],[8.905,-22.866],[-63.43,19.052],[-2.553,-27.854],[-0.664,-27.112],[37.995,7.577]],"o":[[-15.642,-10.077],[-92.499,-21.673],[-3,-37.948],[6.447,-39.854],[25.263,14.209],[-3.038,-25.183]],"v":[[102.472,-151.481],[53.507,-145.134],[65,-51.052],[106.553,-41.146],[153.664,-66.888],[163.996,-115.133]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[25.979,-38.681],[-12.816,-22.414],[-71.606,9.11],[-7.652,-23.023],[-8.541,18],[3.417,17.237]],"o":[[6.479,-39.181],[-74.816,-41.414],[-4.106,-29.39],[7.848,-31.023],[7.401,-15.598],[-5.628,-28.395]],"v":[[80.521,-174.319],[39.316,-172.086],[38.606,-82.61],[103.652,-89.977],[145.259,-114.137],[152.031,-167.148]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[35.852,-24.204],[6.121,-6.787],[-30.147,-5.617],[-12.364,11.19],[-4.863,14.486],[5.544,11.648]],"o":[[-15.19,-0.044],[-18.957,21.021],[11.029,2.055],[17.765,0.658],[4.214,-12.553],[-9.133,-19.188]],"v":[[66.426,-225.746],[34.942,-214.601],[66.05,-144.055],[101.841,-156.26],[135.809,-181.382],[133.83,-220.533]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[11.188,-2.48],[2.145,-2.133],[-8.537,-4.421],[-3.25,0.288],[-2.088,4.234],[1.472,3.752]],"o":[[-5.164,1.145],[-6.643,6.608],[3.123,1.618],[6.515,-0.577],[1.81,-3.669],[-2.424,-6.18]],"v":[[99.368,-273.52],[88.579,-268.455],[96.629,-247.5],[106.444,-245.289],[119.333,-253.457],[119.83,-265.206]],"c":true}]},{"t":36,"s":[{"i":[[2.469,0.044],[0.542,-0.415],[-1.676,-1.418],[-0.709,0.023],[-0.595,0.897],[0.16,0.894]],"o":[[-1.158,-0.021],[-1.68,1.285],[0.613,0.519],[1.347,-0.043],[0.516,-0.777],[-0.264,-1.473]],"v":[[96.518,-299.069],[93.999,-298.426],[94.96,-292.841],[96.99,-292.023],[99.944,-293.62],[100.503,-296.249]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":12,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":31,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[69.5,-97.5],[-113.5,45]],"o":[[-66.5,8.5],[86.092,-34.134]],"v":[[-90.5,124.5],[-22,227]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[22,-123.5],[-113.5,45]],"o":[[-41.5,7],[86.092,-34.134]],"v":[[-91.5,-56.5],[-6,53]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[29.5,-125],[-86.5,51.5]],"o":[[-65,6.5],[164.5,11.5]],"v":[[-87.5,-87],[-23.5,-7.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[71,-76.5],[-34.5,28]],"o":[[-90,13.5],[106.5,47.5]],"v":[[-68.5,-157.5],[-34.5,-62.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[48.5,-66],[-34.5,28]],"o":[[-81,3],[106.5,47.5]],"v":[[-57.5,-194],[-53,-132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[29,-6],[-28.5,11]],"o":[[-29,6],[28.5,-11]],"v":[[-46,-251.5],[-37,-218.5]],"c":true}]},{"t":36,"s":[{"i":[[1.16,-0.24],[-1.14,0.44]],"o":[[-1.16,0.24],[1.14,-0.44]],"v":[[-45.92,-278.26],[-45.56,-276.94]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[70.414,4.783],[-95.574,7.104],[-26.5,9.5]],"o":[[-132.5,-9],[14.926,21.104],[42.478,-15.228]],"v":[[116,239],[56.574,305.896],[132.5,325]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[31,-18.5],[-168.751,36.203],[-17.918,44.718]],"o":[[-248,-61.5],[23.267,7.334],[40.5,-12]],"v":[[167,24],[116.251,135.297],[184.5,88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[101,-20.5],[-133.016,57.816],[-23.678,31.225]],"o":[[-222,-55.5],[17.83,12.614],[53,-13]],"v":[[114.5,-57.5],[94.516,65.184],[159,45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[108,-21],[-25.045,-34.694],[-37.826,13.017]],"o":[[-46.826,-19.424],[11.058,15.318],[78.5,26]],"v":[[96,-99.5],[40.628,-7.406],[112,2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[78.5,-26.5],[-10.452,-22.332],[-15.008,0.153]],"o":[[-36.913,-12.304],[4.615,9.86],[85,40]],"v":[[101.5,-126.5],[59.744,-81.628],[89,-64.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[33,0],[-8.262,-9.837],[-7.657,0.306]],"o":[[-22.893,0],[3.648,4.343],[25,-1]],"v":[[103,-170],[84.726,-143.561],[102,-136.5]],"c":true}]},{"t":36,"s":[{"i":[[5.5,0],[-1.377,-1.639],[-1.276,0.051]],"o":[[-3.815,0],[0.608,0.724],[4.167,-0.167]],"v":[[103.5,-198.125],[100.454,-193.718],[103.333,-192.542]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[40.224,-0.584],[25.671,-35.551],[-117.344,4.076],[-13.845,-2.09],[-15.219,20.222],[41.95,17.503]],"o":[[-4.678,-19.848],[-63.829,-76.551],[7.749,18.334],[16.09,2.429],[38.296,26.994],[7.997,-34.703]],"v":[[108.178,121.348],[34.329,117.551],[25.844,278.924],[70,279],[118.204,260.006],[148.55,186.497]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[42.564,-6.226],[40.813,-50.225],[-85.297,31.262],[-32.063,3.791],[-15.43,23.796],[36.231,22.442]],"o":[[-6.076,-18.138],[-120.187,-27.225],[8.47,17.96],[23.983,5.161],[35.183,9.711],[3.616,-40.885]],"v":[[125.779,-104.633],[37.687,-123.775],[35.297,47.238],[94,72],[154.817,37.789],[175.269,-33.942]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[50.807,-10.84],[11.197,-28.751],[-79.754,23.956],[-21.881,6.283],[-12.991,22.817],[47.774,9.527]],"o":[[-19.668,-12.67],[-116.303,-27.251],[12.896,12.677],[24.971,6.064],[31.765,17.866],[-3.819,-31.664]],"v":[[94.869,-161.73],[33.303,-153.749],[47.754,-35.456],[100,-23],[159.235,-55.366],[172.226,-116.027]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[61.33,-27.94],[13.035,-11.794],[-88,34.498],[-24.613,14.871],[-11.285,23.783],[4.514,22.775]],"o":[[-22.734,-8.189],[-81.69,0.79],[16.437,2.441],[24.287,7.59],[9.779,-20.609],[-7.436,-37.518]],"v":[[69.474,-198.525],[15.69,-190.29],[42.5,-42.998],[104,-60],[158.974,-91.922],[167.923,-161.964]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[49.628,-33.504],[8.473,-9.395],[-41.73,-7.776],[-17.115,15.49],[-6.732,20.052],[7.675,16.124]],"o":[[-21.027,-0.06],[-26.241,29.098],[15.267,2.845],[24.591,0.911],[5.833,-17.376],[-12.642,-26.561]],"v":[[48.978,-222.185],[5.396,-206.758],[48.457,-109.106],[98,-126],[145.019,-160.775],[142.281,-214.968]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[20.595,-4.565],[3.948,-3.927],[-15.714,-8.139],[-5.982,0.53],[-3.844,7.794],[2.709,6.906]],"o":[[-9.506,2.107],[-12.229,12.163],[5.749,2.978],[11.992,-1.063],[3.331,-6.754],[-4.463,-11.376]],"v":[[87.975,-274.467],[68.116,-265.142],[82.934,-226.569],[101,-222.5],[124.726,-237.535],[125.642,-259.162]],"c":true}]},{"t":36,"s":[{"i":[[4.312,0.077],[0.947,-0.725],[-2.927,-2.476],[-1.238,0.04],[-1.039,1.566],[0.28,1.562]],"o":[[-2.023,-0.036],[-2.933,2.244],[1.071,0.906],[2.353,-0.076],[0.9,-1.357],[-0.461,-2.572]],"v":[[95.675,-299.303],[91.277,-298.18],[92.954,-288.429],[96.5,-287],[101.657,-289.789],[102.633,-294.38]],"c":true}]}]},"nm":"Path 2","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":36,"st":0,"bm":0}]},{"id":"comp_28","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 13","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,494,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":8,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":67,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":94,"s":[60,60,100]},{"t":106,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":156,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"01 fire small cycle","parent":1,"refId":"comp_19","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"01 fire small cycle","parent":1,"refId":"comp_19","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"01 fire small cycle","parent":1,"refId":"comp_19","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"01 fire small end","parent":1,"refId":"comp_20","sr":1,"ks":{"p":{"a":0,"k":[0,18,0]},"a":{"a":0,"k":[256,512,0]}},"ao":0,"w":512,"h":512,"ip":96,"op":156,"st":96,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"01 fire small left bottom flame (f24)","parent":1,"refId":"comp_22","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":72,"op":104,"st":72,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","parent":1,"refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":40,"op":72,"st":40,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"01 fire small left bottom flame (f24)","parent":1,"refId":"comp_22","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":8,"op":40,"st":8,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","parent":1,"refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":88,"op":120,"st":88,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"01 fire small left bottom flame (f24)","parent":1,"refId":"comp_22","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":56,"op":88,"st":56,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"01 fire small left bottom flame (f24) 2","parent":1,"refId":"comp_3","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":24,"op":56,"st":24,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":80,"op":112,"st":80,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":48,"op":80,"st":48,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":16,"op":48,"st":16,"bm":0},{"ddd":0,"ind":15,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":16,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":17,"ty":0,"nm":"01 fire small left flame (f0)","parent":1,"refId":"comp_21","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":0,"nm":"01 fire small cycle outlines","parent":1,"refId":"comp_23","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":19,"ty":0,"nm":"01 fire small cycle outlines","parent":1,"refId":"comp_23","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":20,"ty":0,"nm":"01 fire small cycle outlines","parent":1,"refId":"comp_23","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]}},"ao":0,"w":512,"h":512,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":0,"nm":"01 fire small left flame twirl","parent":1,"refId":"comp_4","sr":1,"ks":{"p":{"a":0,"k":[0,-238,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":512,"ip":88,"op":120,"st":88,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-54.44,187.762],[218,5]],"o":[[49,-169],[-101.211,-2.321]],"v":[[7,157],[-220,-181]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"t":55,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.98431378603,0.4392157197,0.058823533356,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[8]},{"t":55,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[24]},{"t":55,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":15,"op":55,"st":15,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-88.418,174.357],[70,-25]],"o":[[107,-211],[-95.339,34.05]],"v":[[-77,179],[-204,-167]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"t":101,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.98431378603,0.4392157197,0.058823533356,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[8]},{"t":101,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[24]},{"t":101,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":61,"op":101,"st":61,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-16.887,194.764],[12,-97]],"o":[[15,-173],[-12.429,100.471]],"v":[[-77,179],[-238,85]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"t":74,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.98431378603,0.4392157197,0.058823533356,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[8]},{"t":74,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[24]},{"t":74,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":34,"op":74,"st":34,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"p":{"a":0,"k":[259.799,261,0]},"a":{"a":0,"k":[3.799,5,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[52.962,188.184],[-174,-29]],"o":[[-47,-167],[99.86,16.643]],"v":[[7,157],[224,-213]],"c":false}},"nm":"Path 1","hd":false},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":0,"k":1},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"t":46,"s":[350]}]},"m":1,"nm":"Trim Paths 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.98431378603,0.4392157197,0.058823533356,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[8]},{"t":46,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411764706,0.007843137255,0.007843137255,1]},"o":{"a":0,"k":100},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[24]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[24]},{"t":46,"s":[0]}]},"lc":2,"lj":2,"bm":0,"nm":"Stroke 2","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":6,"op":46,"st":6,"bm":0}]},{"id":"comp_29","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 12","sr":1,"ks":{"o":{"a":0,"k":0},"p":{"a":0,"k":[256,743,0]},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[40,40,100]},{"t":8,"s":[100,100,100]}]}},"ao":0,"ip":0,"op":124,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"02 fire middle end","parent":1,"refId":"comp_11","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":96,"op":152,"st":96,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"02 fire middle cycle","parent":1,"refId":"comp_12","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":72,"op":100,"st":72,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"02 fire middle center (f0)","parent":1,"refId":"comp_14","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":80,"op":100,"st":80,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"02 fire middle center (f0)","parent":1,"refId":"comp_14","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":52,"st":32,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"02 fire middle flame2","parent":1,"refId":"comp_13","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":8,"op":36,"st":8,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":80,"op":112,"st":80,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]},"s":{"a":0,"k":[-100,100,100]}},"ao":0,"w":512,"h":768,"ip":48,"op":80,"st":48,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"02 fire middle flame1","parent":1,"refId":"comp_15","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":64,"op":96,"st":64,"bm":0},{"ddd":0,"ind":15,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":32,"op":64,"st":32,"bm":0},{"ddd":0,"ind":16,"ty":0,"nm":"02 fire middle cycle outlines","parent":1,"refId":"comp_16","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":0,"op":32,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":0,"nm":"02 fire middle end outl","parent":1,"refId":"comp_17","sr":1,"ks":{"p":{"a":0,"k":[0,-359,0]},"a":{"a":0,"k":[256,384,0]}},"ao":0,"w":512,"h":768,"ip":96,"op":152,"st":96,"bm":0}]},{"id":"comp_30","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","parent":2,"sr":1,"ks":{"p":{"a":0,"k":[-77.334,-175.69,0]},"a":{"a":0,"k":[-77.334,-175.69,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.795,-2.463],[-22.463,0.136]],"o":[[-6.751,9.267],[21.909,-0.132]],"v":[[28.78,287.216],[26.463,308]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.778,-9.304],[-84.843,0.513]],"o":[[-25.5,35],[82.75,-0.5]],"v":[[35,213],[26.25,291.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[41.584,-3.199],[-34.387,-1.279]],"o":[[-37.621,2.894],[34.387,1.279]],"v":[[41.616,212.199],[44.975,259.221]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[9.857,-0.643],[-6.643,-0.429]],"o":[[-9.65,0.629],[6.643,0.429]],"v":[[38.138,192.643],[39.103,203.571]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[21.707,90.214],[22.029,93.857]],"c":true}]},{"t":41,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[19.707,-427.786],[20.029,-424.143]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[33.144,5.233],[-24.721,-0.221]],"o":[[-35.022,-5.53],[27.911,0.249]],"v":[[19.555,225.935],[15.319,283.751]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[29.02,-23.268],[-29.148,15.285]],"o":[[-36.827,29.528],[27.206,-14.266]],"v":[[18.827,100.658],[25.794,178.294]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[36.864,-1.646],[-34.889,28.965]],"o":[[-35.938,1.604],[46.08,13.495]],"v":[[1.709,52.646],[-0.595,87.535]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.216,-6.659],[-24.954,25.786]],"o":[[-28.004,9.704],[30.5,0]],"v":[[16.732,-8.349],[24.773,17.714]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[12.002,-2.4],[-12.348,2.646]],"o":[[-16.253,3.251],[13.442,-2.88]],"v":[[25.798,-28.588],[29.158,-15.146]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[29.237,-0.424],[18.659,-25.84],[-78.306,-8.932],[-2.4,-26.987],[0.564,-42.682],[30.491,12.722]],"o":[[-3.4,-14.426],[-41.473,-22.64],[-12.806,-41.432],[1.048,11.781],[27.835,19.62],[5.813,-25.223]],"v":[[106.649,132.4],[49.973,125.64],[49.306,238.932],[79.9,226.987],[116.436,225.182],[131.993,185.252]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[18.356,-65.631],[1.004,-68.279],[-92.58,7.072],[-16.188,1.28],[-17.016,-0.736],[29.057,17.998]],"o":[[12.356,-49.631],[-116.996,-73.279],[18.803,-1.436],[15.763,-1.246],[26.568,1.15],[25.666,-30.324]],"v":[[114.644,-62.369],[48.996,-92.721],[50.08,17.428],[99.158,-10.713],[145.932,9.85],[160.334,-37.676]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[40.408,-8.621],[8.905,-22.866],[-63.43,19.052],[-2.553,-27.854],[-0.664,-27.112],[37.995,7.577]],"o":[[-15.642,-10.077],[-92.499,-21.673],[-3,-37.948],[6.447,-39.854],[25.263,14.209],[-3.038,-25.183]],"v":[[102.472,-151.481],[53.507,-145.134],[65,-51.052],[106.553,-41.146],[153.664,-66.888],[163.996,-115.133]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[25.979,-38.681],[-12.816,-22.414],[-71.606,9.11],[-7.652,-23.023],[-8.541,18],[3.417,17.237]],"o":[[6.479,-39.181],[-74.816,-41.414],[-4.106,-29.39],[7.848,-31.023],[7.401,-15.598],[-5.628,-28.395]],"v":[[80.521,-174.319],[39.316,-172.086],[38.606,-82.61],[103.652,-89.977],[145.259,-114.137],[152.031,-167.148]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[35.852,-24.204],[6.121,-6.787],[-30.147,-5.617],[-12.364,11.19],[-4.863,14.486],[5.544,11.648]],"o":[[-15.19,-0.044],[-18.957,21.021],[11.029,2.055],[17.765,0.658],[4.214,-12.553],[-9.133,-19.188]],"v":[[66.426,-225.746],[34.942,-214.601],[66.05,-144.055],[101.841,-156.26],[135.809,-181.382],[133.83,-220.533]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[11.188,-2.48],[2.145,-2.133],[-8.537,-4.421],[-3.25,0.288],[-2.088,4.234],[1.472,3.752]],"o":[[-5.164,1.145],[-6.643,6.608],[3.123,1.618],[6.515,-0.577],[1.81,-3.669],[-2.424,-6.18]],"v":[[99.368,-273.52],[88.579,-268.455],[96.629,-247.5],[106.444,-245.289],[119.333,-253.457],[119.83,-265.206]],"c":true}]},{"t":60,"s":[{"i":[[2.469,0.044],[0.542,-0.415],[-1.676,-1.418],[-0.709,0.023],[-0.595,0.897],[0.16,0.894]],"o":[[-1.158,-0.021],[-1.68,1.285],[0.613,0.519],[1.347,-0.043],[0.516,-0.777],[-0.264,-1.473]],"v":[[96.518,-299.069],[93.999,-298.426],[94.96,-292.841],[96.99,-292.023],[99.944,-293.62],[100.503,-296.249]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-3.499,-24.848],[-6.884,-16.478],[-0.301,7.46],[-4.644,0.228],[-25.003,12.782],[33.341,-4.053]],"o":[[-34.078,22.449],[3.276,7.842],[1.294,-32.082],[19.012,20.499],[85.358,33.282],[-6.489,-19.362]],"v":[[-102.261,200.848],[-133.404,262.516],[-118.294,281.082],[-102.012,287.001],[-31.997,296.218],[-11.544,205.996]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-0.747,-48.874],[-2.455,-35.731],[-40.679,19.746],[-10.189,-28.494],[-11.643,4.734],[85.039,22.458]],"o":[[-21.211,-29.874],[-35.532,22.641],[-1.215,-25.539],[22.811,19.506],[80.357,20.734],[29.075,-42.399]],"v":[[-100.253,19.874],[-169.932,40.216],[-144.785,98.539],[-93.811,115.494],[-40.357,117.266],[-14.075,40.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[4.596,-2.157],[-2.838,-33.101],[-23.392,21.782],[64.52,-34.091],[-7.412,7.454],[7.166,18.65]],"o":[[-43.115,-41.195],[-25.698,17.837],[-20.978,-41.699],[20.24,22.409],[13.576,-13.654],[-5.083,-13.23]],"v":[[-78.36,-37.305],[-165.347,-14.561],[-142.022,35.199],[-94.52,47.591],[-39.74,43.428],[-28.273,-12.423]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.586,24.077],[1.481,-16.058],[-4.9,-5.507],[-10.179,0.727],[8.719,-39.971],[89.45,-41.348]],"o":[[-19.447,-7.56],[-0.705,7.642],[4.542,5.105],[-3.153,-23.324],[83.219,35.029],[-14.55,-40.348]],"v":[[-113.586,-84.077],[-147.276,-60.135],[-141.231,-39.204],[-119.347,-31.676],[-66.219,-26.529],[-64.45,-76.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[13.764,-16.52],[-0.797,-14.42],[-5.435,-4.397],[-9.222,1.812],[-4.425,5.611],[7.725,10.732]],"o":[[-22.868,-5.87],[0.379,6.863],[5.039,4.077],[14.57,16.763],[8.105,-10.278],[-5.48,-7.613]],"v":[[-80.463,-124.48],[-113.116,-101.094],[-104.345,-83.066],[-82.915,-78.763],[-39.977,-80.996],[-37.614,-117.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[9.081,-4.12],[1.941,-4.856],[-0.074,-2.217],[-1.433,-1.373],[-2.412,2.764],[3.877,5.235]],"o":[[-4.629,2.1],[-0.924,2.311],[0.069,2.056],[11.907,11.408],[4.417,-5.063],[-2.75,-3.714]],"v":[[-75.274,-166.527],[-85.585,-154.758],[-86.926,-147.859],[-85.155,-142.261],[-54.718,-143.901],[-53.648,-161.404]],"c":true}]},{"t":60,"s":[{"i":[[0.601,-0.289],[0.013,-0.847],[-0.221,-0.37],[-0.364,-0.269],[-0.704,0.652],[0.934,1.027]],"o":[[-1.307,0.628],[-0.006,0.403],[0.205,0.343],[0.87,0.643],[1.289,-1.194],[-0.662,-0.729]],"v":[[-79.613,-181.42],[-81.494,-179.083],[-81.161,-177.91],[-80.299,-176.982],[-73.89,-177.455],[-73.114,-181.387]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"p":{"a":0,"k":[280.666,670.31,0]},"a":{"a":0,"k":[24.666,286.31,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[20,20,100]},{"t":20,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.795,-2.463],[-22.463,0.136]],"o":[[-6.751,9.267],[21.909,-0.132]],"v":[[28.78,287.216],[26.463,308]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[6.778,-9.304],[-84.843,0.513]],"o":[[-25.5,35],[82.75,-0.5]],"v":[[35,213],[26.25,291.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[65,-5],[-53.75,-2]],"o":[[-58.805,4.523],[53.75,2]],"v":[[34,209.5],[39.25,283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[23,-1.5],[-15.5,-1]],"o":[[-22.516,1.468],[15.5,1]],"v":[[35.5,190.5],[37.75,216]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[21.707,90.214],[22.029,93.857]],"c":true}]},{"t":41,"s":[{"i":[[3.286,-0.214],[-2.214,-0.143]],"o":[[-3.217,0.21],[2.214,0.143]],"v":[[19.707,-427.786],[20.029,-424.143]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[66.5,10.5],[-49.599,-0.443]],"o":[[-70.267,-11.095],[56,0.5]],"v":[[20.5,199.5],[12,315.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[43.734,-35.066],[-43.928,23.035]],"o":[[-55.5,44.5],[41,-21.5]],"v":[[15.5,72.5],[26,189.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[56,-2.5],[-53,44]],"o":[[-54.592,2.437],[70,20.5]],"v":[[-4.5,51.5],[-8,104.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[34.653,-12.008],[-45,46.5]],"o":[[-50.5,17.5],[55,0]],"v":[[9.5,-11.5],[24,35.5]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[25,-5],[-25.722,5.512]],"o":[[-33.855,6.771],[28,-6]],"v":[[23,-29],[30,-1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[20.461,-75.516],[21.822,-70.072]],"c":true}]},{"t":51,"s":[{"i":[[4.861,-0.972],[-5.001,1.072]],"o":[[-6.583,1.317],[5.444,-1.167]],"v":[[10.461,-427.516],[11.822,-422.072]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[40.224,-0.584],[25.671,-35.551],[-117.344,4.076],[-13.845,-2.09],[-15.219,20.222],[41.95,17.503]],"o":[[-4.678,-19.848],[-63.829,-76.551],[7.749,18.334],[16.09,2.429],[38.296,26.994],[7.997,-34.703]],"v":[[108.178,121.348],[34.329,117.551],[25.844,278.924],[70,279],[118.204,260.006],[148.55,186.497]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[42.564,-6.226],[40.813,-50.225],[-85.297,31.262],[-32.063,3.791],[-15.43,23.796],[36.231,22.442]],"o":[[-6.076,-18.138],[-120.187,-27.225],[8.47,17.96],[23.983,5.161],[35.183,9.711],[3.616,-40.885]],"v":[[125.779,-104.633],[37.687,-123.775],[35.297,47.238],[94,72],[154.817,37.789],[175.269,-33.942]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[50.807,-10.84],[11.197,-28.751],[-79.754,23.956],[-21.881,6.283],[-12.991,22.817],[47.774,9.527]],"o":[[-19.668,-12.67],[-116.303,-27.251],[12.896,12.677],[24.971,6.064],[31.765,17.866],[-3.819,-31.664]],"v":[[94.869,-161.73],[33.303,-153.749],[47.754,-35.456],[100,-23],[159.235,-55.366],[172.226,-116.027]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[61.33,-27.94],[13.035,-11.794],[-88,34.498],[-24.613,14.871],[-11.285,23.783],[4.514,22.775]],"o":[[-22.734,-8.189],[-81.69,0.79],[16.437,2.441],[24.287,7.59],[9.779,-20.609],[-7.436,-37.518]],"v":[[69.474,-198.525],[15.69,-190.29],[42.5,-42.998],[104,-60],[158.974,-91.922],[167.923,-161.964]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[49.628,-33.504],[8.473,-9.395],[-41.73,-7.776],[-17.115,15.49],[-6.732,20.052],[7.675,16.124]],"o":[[-21.027,-0.06],[-26.241,29.098],[15.267,2.845],[24.591,0.911],[5.833,-17.376],[-12.642,-26.561]],"v":[[48.978,-222.185],[5.396,-206.758],[48.457,-109.106],[98,-126],[145.019,-160.775],[142.281,-214.968]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[20.595,-4.565],[3.948,-3.927],[-15.714,-8.139],[-5.982,0.53],[-3.844,7.794],[2.709,6.906]],"o":[[-9.506,2.107],[-12.229,12.163],[5.749,2.978],[11.992,-1.063],[3.331,-6.754],[-4.463,-11.376]],"v":[[87.975,-274.467],[68.116,-265.142],[82.934,-226.569],[101,-222.5],[124.726,-237.535],[125.642,-259.162]],"c":true}]},{"t":60,"s":[{"i":[[4.312,0.077],[0.947,-0.725],[-2.927,-2.476],[-1.238,0.04],[-1.039,1.566],[0.28,1.562]],"o":[[-2.023,-0.036],[-2.933,2.244],[1.071,0.906],[2.353,-0.076],[0.9,-1.357],[-0.461,-2.572]],"v":[[95.675,-299.303],[91.277,-298.18],[92.954,-288.429],[96.5,-287],[101.657,-289.789],[102.633,-294.38]],"c":true}]}]},"nm":"Path 2","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-4.046,-28.733],[-7.961,-19.055],[-7.058,-4.972],[-5.37,0.263],[-10.383,14.21],[38.553,-4.686]],"o":[[-39.406,25.959],[3.789,9.068],[6.543,4.609],[20.166,40.644],[98.704,38.486],[-7.504,-22.39]],"v":[[-106.454,196.733],[-142.466,268.042],[-124.994,289.511],[-106.166,296.356],[-25.204,307.014],[-1.553,202.686]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[7.754,-10.103],[-2.864,-41.686],[-47.459,23.038],[-17.819,6.695],[-11.001,13.349],[99.213,26.201]],"o":[[-24.746,-34.853],[-41.454,26.415],[10.089,11.703],[9.571,21.591],[45.708,87.19],[-6.546,-22.901]],"v":[[-105.754,6.853],[-187.046,30.585],[-146.041,114.963],[-104.071,125.409],[-34.708,136.81],[-5.213,30.799]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[5.648,-2.651],[-3.488,-40.68],[-28.748,26.769],[-22.563,7.933],[-9.109,9.161],[8.807,22.921]],"o":[[-52.986,-50.627],[-31.582,21.921],[15.404,15.153],[24.874,27.539],[16.685,-16.781],[-6.247,-16.259]],"v":[[-65.014,-36.373],[-171.918,-8.421],[-143.252,52.731],[-84.874,67.961],[-17.551,62.845],[-3.459,-5.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[19.861,-24.879],[2.389,-25.903],[-7.904,-8.883],[-16.419,1.173],[-8.619,13.394],[50.602,-9.162]],"o":[[-31.37,-12.195],[-1.137,12.327],[7.327,8.235],[20.153,51.095],[59.455,-7.707],[-9.228,-15.356]],"v":[[-114.361,-87.621],[-168.705,-49.001],[-158.954,-15.239],[-123.653,-3.095],[-37.955,5.207],[-35.102,-74.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[20.907,-25.093],[-1.21,-21.904],[-8.256,-6.68],[-14.008,2.753],[-6.721,8.523],[11.735,16.301]],"o":[[-34.736,-8.916],[0.576,10.424],[7.654,6.192],[22.131,25.463],[12.311,-15.612],[-8.324,-11.564]],"v":[[-85.407,-125.907],[-135.006,-90.384],[-121.683,-62.999],[-89.131,-56.463],[-23.909,-59.855],[-20.32,-115.438]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[16.089,-7.299],[3.439,-8.602],[-0.131,-3.928],[-2.539,-2.432],[-4.273,4.897],[6.868,9.275]],"o":[[-8.201,3.721],[-1.637,4.094],[0.122,3.642],[21.095,20.211],[7.826,-8.97],[-4.872,-6.579]],"v":[[-77.089,-167.201],[-95.356,-146.351],[-97.732,-134.128],[-94.595,-124.211],[-40.671,-127.117],[-38.776,-158.124]],"c":true}]},{"t":60,"s":[{"i":[[1.463,-0.702],[0.031,-2.062],[-0.538,-0.9],[-0.887,-0.655],[-1.713,1.587],[2.273,2.5]],"o":[[-3.182,1.528],[-0.015,0.981],[0.498,0.834],[2.118,1.565],[3.138,-2.907],[-1.612,-1.773]],"v":[[-78.589,-181.314],[-83.167,-175.626],[-82.357,-172.772],[-80.258,-170.512],[-64.659,-171.663],[-62.771,-181.234]],"c":true}]}]},"nm":"Path 1","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647118662,0.847058883368,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":0,"op":60,"st":0,"bm":0}]},{"id":"comp_31","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 33","sr":1,"ks":{"p":{"a":0,"k":[768,866.288,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.223,-3.321],[-0.789,2.008]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[237.765,-1024.967],[243.141,-1024.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-0.223,-3.321],[-0.789,2.007]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[237.765,-1008.967],[243.141,-1008.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.223,-3.321],[-0.789,2.007]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[236.346,-524.967],[241.722,-524.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-5.342,-59.486],[-13.348,36.334]],"o":[[2.52,28.059],[17.191,-46.793]],"v":[[201.885,-588.486],[298.618,-577.622]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[{"i":[[-15.455,-60.898],[-7.814,39.963]],"o":[[7.29,28.725],[10.063,-51.467]],"v":[[200.215,-675.425],[302.5,-680.251]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[-0.254,-0.782],[-0.068,0.529]],"o":[[0.12,0.369],[0.088,-0.681]],"v":[[241.36,-761.666],[242.692,-761.816]],"c":true}]},{"t":170,"s":[{"i":[[-0.254,-0.782],[-0.068,0.529]],"o":[[0.12,0.369],[0.088,-0.681]],"v":[[233.36,-1093.666],[234.692,-1093.816]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-1.677,-2.156],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[70.838,-933.52],[73.428,-934.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-1.677,-2.156],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[70.838,-917.52],[73.428,-918.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-1.677,-2.155],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[69.419,-433.52],[72.009,-434.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-87.333,-120.809],[2.702,47.44]],"o":[[27.678,38.287],[-6.226,-109.313]],"v":[[61.469,-509.574],[204.247,-546.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-55.487,-140.171],[-9.175,47.17]],"o":[[17.585,44.423],[21.142,-108.689]],"v":[[49.539,-656.724],[198.711,-657.457]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97,-813.288],[97,-813.288]],"c":true}]},{"t":167,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89,-1145.288],[89,-1145.288]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.952,-1.6],[0.095,0.829],[0.849,-0.064]],"o":[[0.752,1.263],[-0.147,-1.287],[-1.042,0.079]],"v":[[288.935,-941.517],[291.86,-942.421],[289.911,-944.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.952,-1.6],[0.095,0.829],[0.849,-0.064]],"o":[[0.752,1.263],[-0.147,-1.287],[-1.042,0.079]],"v":[[290.163,-421.517],[293.089,-422.421],[291.14,-424.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-32.583,-59.201],[2.431,30.186],[29.696,-4.505]],"o":[[25.726,46.741],[-3.774,-46.858],[-36.454,5.531]],"v":[[243.801,-477.029],[345.699,-520.67],[279.392,-580.665]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-337.602,-308.185],[1.22,28.334],[28.569,-4.104]],"o":[[36.9,33.685],[-1.948,-45.216],[54.848,-243.641]],"v":[[226.602,-500.102],[323.428,-535.807],[262.152,-589.647]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[{"i":[[-77.185,-118.131],[-7.472,28.942],[29.09,7.932]],"o":[[12.775,48.988],[11.584,-45.259],[-13.578,-58.019]],"v":[[211.69,-594.276],[319.765,-589.067],[277.087,-671.871]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[253,-706.288],[253,-706.288],[253,-706.288]],"c":true}]},{"t":161,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[245,-1038.288],[245,-1038.288],[245,-1038.288]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.302,-3.573],[-0.364,1.897]],"o":[[0.136,1.605],[0.569,-2.965]],"v":[[361.212,-954.714],[365.543,-954.336]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.302,-3.573],[-0.364,1.897]],"o":[[0.136,1.605],[0.569,-2.965]],"v":[[362.44,-434.714],[366.772,-434.336]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-5.794,-68.569],[-6.98,36.395]],"o":[[2.602,30.794],[10.911,-56.893]],"v":[[328.696,-513.456],[416.726,-492.683]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[{"i":[[-6.145,-72.718],[-7.403,38.597]],"o":[[2.76,32.658],[11.572,-60.336]],"v":[[333.438,-602.657],[422.337,-592.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[{"i":[[-0.268,-3.169],[-0.323,1.682]],"o":[[0.12,1.423],[0.504,-2.629]],"v":[[363.189,-680.242],[367.007,-679.969]],"c":true}]},{"t":164,"s":[{"i":[[-0.268,-3.169],[-0.323,1.682]],"o":[[0.12,1.423],[0.504,-2.629]],"v":[[355.189,-1012.242],[359.007,-1011.969]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-115.69,-1002.268],[-108.475,-1001.515],[-109.524,-1003.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-115.69,-986.268],[-108.475,-985.515],[-109.524,-987.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-113.69,-406.268],[-106.475,-405.515],[-107.524,-407.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-38.977,-43.803],[-18.145,94.928],[25.732,11.42]],"o":[[-61.102,47.212],[5.038,-26.359],[-66.939,-29.709]],"v":[[-124.176,-501.216],[68.711,-476.216],[31.224,-532.319]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-38.42,-54.458],[40.229,71.489],[22.204,12.329]],"o":[[-55.143,52.759],[10.318,-27.739],[-57.76,-32.072]],"v":[[-154.392,-522.524],[13.156,-502.776],[-11.161,-562.514]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[{"i":[[-31.344,-50.289],[32.722,62.873],[19.508,8.479]],"o":[[-42.344,46.274],[7.643,-24.152],[-50.748,-22.057]],"v":[[-138.728,-548.891],[9.639,-555.16],[-13.613,-603.415]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[{"i":[[-103.459,-215.483],[29.308,65.598],[87.719,-26.389]],"o":[[-32.992,48.05],[89.898,-26.744],[35.043,-130.317]],"v":[[-156.394,-589.554],[1.997,-601.886],[-48.501,-691.933]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-50.993,-134.357],[21.184,70.149],[49.266,-5.489]],"o":[[-6.59,50.834],[32.255,-26.174],[-23.829,-64.578]],"v":[[-168.525,-671.122],[9.598,-703.002],[-39.751,-769.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-0.108,-0.527],[0.103,0.476],[0.156,0.054]],"o":[[0.07,0.342],[-0.036,-0.168],[-0.406,-0.139]],"v":[[-106.568,-820.63],[-105.325,-820.921],[-105.641,-821.251]],"c":true}]},{"t":167,"s":[{"i":[[-0.108,-0.527],[0.103,0.476],[0.156,0.053]],"o":[[0.07,0.343],[-0.036,-0.168],[-0.406,-0.139]],"v":[[-114.568,-1152.63],[-113.325,-1152.921],[-113.641,-1153.251]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348,-1054.288],[-348,-1054.288],[-348,-1054.288],[-348,-1054.288],[-348,-1054.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348,-1038.288],[-348,-1038.288],[-348,-1038.288],[-348,-1038.288],[-348,-1038.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-346,-458.288],[-346,-458.288],[-346,-458.288],[-346,-458.288],[-346,-458.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-72.133,20.573],[-8.441,30.069],[31.859,-22.763],[17.807,-4.46],[2.557,-14.832]],"o":[[3.162,25.784],[13.284,-47.323],[-19.821,-11.076],[-26.195,6.561],[-3.16,18.33]],"v":[[-299.075,-502.593],[-195.743,-489.357],[-284.594,-545.552],[-342.838,-553.106],[-391.704,-513.472]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":67,"s":[{"i":[[-69.352,19.195],[-8.604,30.649],[32.519,-23.063],[17.232,-5.947],[2.551,-17.614]],"o":[[3.223,26.282],[13.526,-48.185],[-19.2,-10.538],[-25.349,8.749],[-3.153,21.768]],"v":[[-298.27,-489.569],[-192.944,-494.287],[-283.404,-551.637],[-339.784,-556.016],[-387.153,-508.491]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-87.455,39.11],[-10.617,37.82],[40.23,-28.143],[74.369,-68.916],[-149.028,-56.534]],"o":[[3.977,32.431],[16.659,-59.344],[73.273,-62.648],[-69.881,-63.413],[-83.346,71.374]],"v":[[-322.273,-531.398],[-202.302,-500.697],[-313.69,-571.626],[-394.369,-658.372],[-451.841,-602.482]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[-22.947,-1.251],[-14.249,31.232],[38.78,-17.282],[17.801,-16.201],[-32.86,-23.753]],"o":[[-0.923,28.539],[22.113,-48.468],[18.246,-11.706],[-17.81,-15.984],[-25.777,19.408]],"v":[[-294.35,-597.819],[-183.587,-570.926],[-268.963,-647.742],[-289.754,-669.037],[-322.236,-647.134]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[{"i":[[-0.038,-0.307],[-0.27,0.962],[1.044,-0.652],[0.07,-0.079],[0.052,-0.173]],"o":[[0.101,0.825],[0.417,-1.486],[-0.088,0.055],[-0.103,0.117],[-0.064,0.214]],"v":[[-251.554,-688.673],[-248.249,-688.249],[-251.034,-690.086],[-251.272,-689.885],[-251.508,-689.452]],"c":true}]},{"t":168,"s":[{"i":[[-0.038,-0.307],[-0.27,0.962],[1.044,-0.652],[0.07,-0.079],[0.052,-0.173]],"o":[[0.101,0.825],[0.417,-1.486],[-0.088,0.055],[-0.103,0.117],[-0.064,0.214]],"v":[[-259.554,-1020.673],[-256.249,-1020.249],[-259.034,-1022.086],[-259.272,-1021.885],[-259.508,-1021.452]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-404.14,-929.549],[-401.505,-930.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-404.14,-913.549],[-401.505,-914.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-390.14,-545.549],[-387.505,-546.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[{"i":[[-23.735,-79.476],[3.806,39.955]],"o":[[4.724,15.818],[-6.599,-69.274]],"v":[[-420.545,-614.352],[-336.102,-631.243]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-25.221,-84.449],[4.044,42.455]],"o":[[5.02,16.807],[-7.011,-73.609]],"v":[[-423.425,-606.795],[-333.698,-624.743]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-1.636,-5.48],[0.262,2.755]],"o":[[0.326,1.091],[-0.455,-4.776]],"v":[[-397.322,-690.878],[-391.5,-692.042]],"c":true}]},{"t":167,"s":[{"i":[[-1.636,-5.48],[0.262,2.755]],"o":[[0.326,1.091],[-0.455,-4.776]],"v":[[-405.322,-1022.878],[-399.5,-1024.042]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.438,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-486.367,-920.217],[-480.556,-919.65],[-481.655,-922.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.439,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-486.367,-904.217],[-480.556,-903.65],[-481.655,-906.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.439,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-485.852,-462.217],[-480.041,-461.65],[-481.14,-464.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[6.07,-38.905],[-0.827,29.56],[9.164,7.465]],"o":[[-5.995,38.42],[0.393,-14.04],[-21.298,-17.349]],"v":[[-513.324,-514.208],[-433.885,-506.456],[-448.904,-539.292]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[{"i":[[5.401,-34.613],[-0.736,26.299],[8.153,6.641]],"o":[[-5.333,34.182],[0.349,-12.492],[-18.949,-15.435]],"v":[[-506.688,-592.469],[-436.012,-585.573],[-449.374,-614.787]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[0.25,-1.604],[-0.034,1.218],[0.378,0.308]],"o":[[-0.247,1.584],[0.016,-0.579],[-0.878,-0.715]],"v":[[-487.492,-654.871],[-484.218,-654.552],[-484.837,-655.905]],"c":true}]},{"t":170,"s":[{"i":[[0.25,-1.604],[-0.034,1.218],[0.378,0.308]],"o":[[-0.247,1.584],[0.016,-0.579],[-0.878,-0.715]],"v":[[-495.492,-986.871],[-492.218,-986.552],[-492.837,-987.905]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-553.821,-921.181],[-549.938,-921.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-553.821,-905.181],[-549.938,-905.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-539.821,-537.181],[-535.938,-537.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[{"i":[[-5.879,-16.594],[5.372,13.497]],"o":[[5.172,14.6],[-7.446,-18.709]],"v":[[-545.121,-570.309],[-513.765,-580.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[{"i":[[-5.901,-16.658],[5.392,13.549]],"o":[[5.192,14.656],[-7.474,-18.781]],"v":[[-544.278,-567.943],[-512.801,-578.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[{"i":[[-1.05,-2.965],[0.96,2.412]],"o":[[0.924,2.609],[-1.33,-3.343]],"v":[[-542.164,-610.896],[-536.561,-612.796]],"c":true}]},{"t":169,"s":[{"i":[[-1.05,-2.965],[0.96,2.412]],"o":[[0.924,2.609],[-1.33,-3.343]],"v":[[-550.164,-942.896],[-544.561,-944.796]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-610.147,-971.692],[-612.448,-973.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-610.147,-955.692],[-612.448,-957.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-609.632,-513.692],[-611.933,-515.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[-2.489,13.826],[4.33,-5.184]],"o":[[2.181,-12.115],[-13.423,16.072]],"v":[[-591.165,-538.614],[-612.812,-549.155]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[{"i":[[-2.612,20.204],[6.681,-12.817]],"o":[[2.756,-21.685],[-15.352,28.585]],"v":[[-568.224,-566.492],[-617.715,-589.605]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-0.049,0.416],[0.139,-0.29]],"o":[[0.055,-0.466],[-0.295,0.614]],"v":[[-601.382,-612.704],[-602.49,-613.218]],"c":true}]},{"t":166,"s":[{"i":[[-0.049,0.416],[0.139,-0.29]],"o":[[0.055,-0.466],[-0.295,0.614]],"v":[[-609.382,-944.704],[-610.49,-945.218]],"c":true}]}]},"nm":"Path 16","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-288.352,-1112.731],[-283.559,-1111.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-288.351,-1096.731],[-283.559,-1095.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-286.351,-516.731],[-281.559,-515.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[2.324,-50.247],[-9.202,34.979]],"o":[[-2.467,53.341],[11.393,-43.304]],"v":[[-306.993,-580.629],[-239.292,-569.199]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[{"i":[[2.153,-46.558],[-8.527,32.41]],"o":[[-2.286,49.424],[10.556,-40.125]],"v":[[-319.121,-667.712],[-256.391,-657.122]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[{"i":[[0.056,-1.207],[-0.221,0.84]],"o":[[-0.059,1.281],[0.274,-1.04]],"v":[[-311.688,-727.569],[-310.062,-727.295]],"c":true}]},{"t":163,"s":[{"i":[[0.056,-1.207],[-0.221,0.84]],"o":[[-0.059,1.281],[0.274,-1.04]],"v":[[-319.688,-1059.569],[-318.062,-1059.295]],"c":true}]}]},"nm":"Path 14","hd":false},{"ind":11,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[7.57,-944.741],[9.108,-944.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[7.57,-928.741],[9.109,-928.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[6.151,-444.741],[7.689,-444.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-10.573,-109.271],[-19.225,37.116]],"o":[[3.245,47.089],[35.066,-67.698]],"v":[[-33.245,-508.877],[74.434,-492.59]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[{"i":[[-0.865,-86.858],[0.432,24.939]],"o":[[-5.822,31.41],[13.995,-55.319]],"v":[[-31.132,-607.48],[56.494,-594.226]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[{"i":[[0.113,-4.165],[-0.19,1.123]],"o":[[-0.04,1.484],[0.449,-2.651]],"v":[[-3.119,-699.053],[1.124,-698.411]],"c":true}]},{"t":162,"s":[{"i":[[0.113,-4.165],[-0.19,1.124]],"o":[[-0.04,1.484],[0.449,-2.651]],"v":[[-11.119,-1031.053],[-6.876,-1030.411]],"c":true}]}]},"nm":"Path 15","hd":false},{"ind":12,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.098,-0.633],[-0.857,0.923],[1.79,-0.946]],"o":[[0.077,0.496],[1.653,0.298],[-0.823,-0.12]],"v":[[470.629,-994.934],[473.075,-994.626],[472.283,-995.63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.098,-0.633],[-0.857,0.923],[1.79,-0.946]],"o":[[0.077,0.496],[1.653,0.298],[-0.823,-0.12]],"v":[[471.857,-474.934],[474.304,-474.626],[473.511,-475.63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-7.221,-46.494],[-87.892,79.766],[198.581,-167.912]],"o":[[5.652,36.39],[194.108,50.766],[-51.203,-77.754]],"v":[[345.774,-588.494],[504.892,-567.053],[451.346,-603.347]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[-6.848,-44.095],[-19.098,36.808],[60.094,-29.415]],"o":[[5.258,33.857],[38.602,-12.297],[-34.472,-23.002]],"v":[[317.847,-666.223],[428.931,-655.095],[390.612,-711.041]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[{"i":[[-0.076,-0.492],[-0.1,0.334],[0.27,0.078]],"o":[[0.058,0.376],[0.097,-0.326],[-0.341,-0.098]],"v":[[351.49,-743.717],[352.564,-743.622],[352.167,-744.254]],"c":true}]},{"t":168,"s":[{"i":[[-0.076,-0.492],[-0.1,0.334],[0.27,0.078]],"o":[[0.058,0.376],[0.097,-0.326],[-0.341,-0.098]],"v":[[343.49,-1075.717],[344.564,-1075.622],[344.167,-1076.254]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":13,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-1.266,-4.784],[-0.496,1.775]],"o":[[0.615,2.322],[1.11,-3.968]],"v":[[456.064,-939.834],[460.091,-939.764]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[-1.266,-4.784],[-0.496,1.775]],"o":[[0.615,2.322],[1.11,-3.968]],"v":[[456.064,-923.834],[460.091,-923.764]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-1.015,-3.834],[-0.398,1.422]],"o":[[0.493,1.861],[0.89,-3.18]],"v":[[457.428,-614.453],[460.656,-614.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-17.438,-65.879],[-6.836,24.44]],"o":[[8.463,31.973],[15.284,-54.644]],"v":[[437.705,-661.26],[493.165,-660.3]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[-0.455,-1.719],[-0.178,0.638]],"o":[[0.221,0.834],[0.399,-1.425]],"v":[[455.358,-734.122],[456.805,-734.097]],"c":true}]},{"t":170,"s":[{"i":[[-0.455,-1.719],[-0.178,0.638]],"o":[[0.221,0.834],[0.399,-1.425]],"v":[[447.358,-1066.122],[448.805,-1066.097]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":14,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.929,-6.009],[-0.89,3.766]],"o":[[-0.943,6.104],[1.317,-5.57]],"v":[[523.547,-932.234],[530.691,-929.895]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[0.929,-6.009],[-0.89,3.766]],"o":[[-0.943,6.104],[1.317,-5.57]],"v":[[523.547,-916.234],[530.691,-913.895]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[0.863,-5.584],[-0.827,3.5]],"o":[[-0.877,5.673],[1.224,-5.176]],"v":[[524.877,-606.867],[531.515,-604.694]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[4.466,-28.896],[-4.281,18.109]],"o":[[-4.537,29.354],[6.332,-26.783]],"v":[[517.241,-652.642],[551.594,-641.397]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[{"i":[[0.101,-0.651],[-0.096,0.408]],"o":[[-0.102,0.661],[0.143,-0.603]],"v":[[533.63,-697.949],[534.404,-697.695]],"c":true}]},{"t":169,"s":[{"i":[[0.101,-0.651],[-0.096,0.408]],"o":[[-0.102,0.661],[0.143,-0.603]],"v":[[525.63,-1029.949],[526.404,-1029.696]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":15,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.994,-4.026],[0.15,3.139]],"o":[[0.58,2.348],[-0.173,-3.625]],"v":[[597.52,-990.395],[602.541,-991.428]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[-0.994,-4.026],[0.15,3.139]],"o":[[0.58,2.348],[-0.173,-3.625]],"v":[[597.52,-974.395],[602.541,-975.428]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-0.914,-3.7],[0.137,2.885]],"o":[[0.533,2.158],[-0.159,-3.331]],"v":[[598.914,-665.492],[603.528,-666.441]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-5.486,-22.219],[0.825,17.323]],"o":[[3.2,12.957],[-0.953,-20.006]],"v":[[595.718,-699.245],[623.426,-704.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-0.343,-1.389],[0.052,1.083]],"o":[[0.2,0.81],[-0.06,-1.25]],"v":[[611.212,-749.097],[612.944,-749.454]],"c":true}]},{"t":167,"s":[{"i":[[-0.343,-1.389],[0.052,1.083]],"o":[[0.2,0.81],[-0.06,-1.25]],"v":[[603.212,-1081.097],[604.944,-1081.454]],"c":true}]}]},"nm":"Path 17","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392216701,0.972549079446,0.949019667682,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":39,"op":170,"st":-6,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 31","sr":1,"ks":{"p":{"a":0,"k":[768,866.288,0]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.223,-3.321],[-0.789,2.007]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[237.765,-1004.967],[243.141,-1004.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-0.223,-3.321],[-0.789,2.007]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[237.765,-1008.967],[243.141,-1008.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.223,-3.321],[-0.789,2.007]],"o":[[0.105,1.566],[1.017,-2.585]],"v":[[236.346,-524.967],[241.722,-524.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-7.579,-84.395],[-18.938,51.549]],"o":[[3.575,39.808],[24.389,-66.388]],"v":[[171.688,-576.426],[308.927,-561.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[{"i":[[-20.874,-82.249],[-10.553,53.975]],"o":[[9.846,38.796],[13.591,-69.512]],"v":[[174.345,-662.15],[312.493,-668.667]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[-0.254,-0.782],[-0.068,0.529]],"o":[[0.12,0.369],[0.088,-0.681]],"v":[[241.36,-761.666],[242.692,-761.816]],"c":true}]},{"t":170,"s":[{"i":[[-0.254,-0.782],[-0.068,0.529]],"o":[[0.12,0.369],[0.088,-0.681]],"v":[[233.36,-1093.666],[234.692,-1093.816]],"c":true}]}]},"nm":"Path 1","hd":false},{"ind":1,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-1.677,-2.156],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[70.838,-913.52],[73.428,-914.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-1.677,-2.156],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[70.838,-917.52],[73.428,-918.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-1.677,-2.155],[0.08,0.867]],"o":[[0.531,0.683],[-0.184,-1.997]],"v":[[69.419,-433.52],[72.009,-434.29]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-121.422,-167.964],[3.756,65.958]],"o":[[38.481,53.231],[-8.656,-151.98]],"v":[[23.4,-471.434],[221.908,-522.952]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-76.553,-193.388],[-12.659,65.078]],"o":[[24.261,61.288],[29.168,-149.954]],"v":[[7.222,-628.036],[213.028,-629.047]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[97,-813.288],[97,-813.288]],"c":true}]},{"t":167,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[89,-1145.288],[89,-1145.288]],"c":true}]}]},"nm":"Path 6","hd":false},{"ind":2,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.952,-1.6],[0.095,0.829],[0.849,-0.064]],"o":[[0.752,1.263],[-0.147,-1.287],[-1.042,0.079]],"v":[[288.935,-941.517],[291.86,-942.421],[289.911,-944.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.952,-1.6],[0.095,0.829],[0.849,-0.064]],"o":[[0.752,1.263],[-0.147,-1.287],[-1.042,0.079]],"v":[[290.163,-421.517],[293.089,-422.421],[291.14,-424.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-45.167,-82.063],[3.371,41.844],[41.164,-6.245]],"o":[[35.661,64.792],[-5.232,-64.954],[-50.531,7.666]],"v":[[215.147,-440.242],[356.396,-500.737],[264.483,-583.9]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-401.836,-369.422],[1.794,41.659],[42.005,-6.035]],"o":[[54.08,49.718],[-2.863,-66.482],[69.366,-256.413]],"v":[[211.836,-454.866],[354.199,-507.363],[262.634,-593.875]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[{"i":[[-107.287,-164.201],[-10.386,40.23],[40.435,11.025]],"o":[[17.757,68.093],[16.102,-62.91],[-18.874,-80.647]],"v":[[186.999,-565.801],[337.223,-558.562],[277.901,-673.658]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[253,-706.288],[253,-706.288],[253,-706.288]],"c":true}]},{"t":161,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[245,-1038.288],[245,-1038.288],[245,-1038.288]],"c":true}]}]},"nm":"Path 7","hd":false},{"ind":3,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.302,-3.573],[-0.364,1.897]],"o":[[0.136,1.605],[0.569,-2.965]],"v":[[361.212,-954.714],[365.543,-954.336]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.302,-3.573],[-0.364,1.897]],"o":[[0.136,1.605],[0.569,-2.965]],"v":[[362.44,-434.714],[366.772,-434.336]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-8.568,-101.394],[-10.322,53.817]],"o":[[3.848,45.535],[16.135,-84.128]],"v":[[298.871,-499.176],[429.041,-468.458]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[{"i":[[-8.568,-101.393],[-10.322,53.817]],"o":[[3.848,45.535],[16.135,-84.128]],"v":[[305.22,-590.579],[429.173,-576.953]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[{"i":[[-0.268,-3.169],[-0.323,1.682]],"o":[[0.12,1.423],[0.504,-2.629]],"v":[[363.189,-680.242],[367.007,-679.969]],"c":true}]},{"t":164,"s":[{"i":[[-0.268,-3.169],[-0.323,1.682]],"o":[[0.12,1.423],[0.504,-2.629]],"v":[[355.189,-1012.242],[359.007,-1011.969]],"c":true}]}]},"nm":"Path 8","hd":false},{"ind":4,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-115.69,-982.268],[-108.475,-981.515],[-109.524,-983.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-115.69,-986.268],[-108.475,-985.515],[-109.524,-987.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.451,-3.031],[-0.374,2.746],[0.732,0.578]],"o":[[-0.293,1.969],[0.132,-0.969],[-1.903,-1.504]],"v":[[-113.69,-406.268],[-106.475,-405.515],[-107.524,-407.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-54.569,-61.327],[-25.403,132.904],[36.026,15.989]],"o":[[-85.546,66.099],[7.054,-36.904],[-93.718,-41.593]],"v":[[-185.454,-488.386],[84.597,-453.384],[32.114,-531.931]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-48.548,-68.814],[50.834,90.334],[28.057,15.579]],"o":[[-69.68,66.666],[13.038,-35.052],[-72.986,-40.527]],"v":[[-191.665,-512.042],[20.051,-487.088],[-10.676,-562.574]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[{"i":[[-45.36,-72.777],[47.355,90.989],[28.232,12.271]],"o":[[-61.28,66.967],[11.061,-34.953],[-73.443,-31.921]],"v":[[-194.953,-524.565],[19.762,-533.638],[-13.887,-603.472]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[{"i":[[-145.34,-302.713],[41.172,92.153],[123.229,-37.072]],"o":[[-46.347,67.501],[126.289,-37.571],[49.229,-183.072]],"v":[[-200.799,-553.393],[21.711,-570.717],[-49.229,-697.216]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-68.967,-181.716],[28.651,94.876],[66.631,-7.424]],"o":[[-8.912,68.753],[43.624,-35.4],[-32.228,-87.341]],"v":[[-213.474,-636.521],[27.433,-679.637],[-39.31,-769.31]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-0.108,-0.527],[0.103,0.476],[0.156,0.054]],"o":[[0.07,0.342],[-0.036,-0.168],[-0.406,-0.139]],"v":[[-106.568,-820.63],[-105.325,-820.921],[-105.641,-821.251]],"c":true}]},{"t":167,"s":[{"i":[[-0.108,-0.527],[0.103,0.476],[0.156,0.053]],"o":[[0.07,0.343],[-0.036,-0.168],[-0.406,-0.139]],"v":[[-114.568,-1152.63],[-113.325,-1152.921],[-113.641,-1153.251]],"c":true}]}]},"nm":"Path 9","hd":false},{"ind":5,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348,-1034.288],[-348,-1034.288],[-348,-1034.288],[-348,-1034.288],[-348,-1034.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348,-1038.288],[-348,-1038.288],[-348,-1038.288],[-348,-1038.288],[-348,-1038.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-346,-458.288],[-346,-458.288],[-346,-458.288],[-346,-458.288],[-346,-458.288]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-104.979,29.94],[-12.284,43.761],[46.367,-33.128],[25.915,-6.491],[3.721,-21.586]],"o":[[4.602,37.525],[19.334,-68.873],[-28.847,-16.12],[-38.123,9.548],[-4.599,26.676]],"v":[[-331.896,-483.607],[-181.51,-464.343],[-310.819,-546.127],[-395.586,-557.122],[-466.704,-499.439]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":67,"s":[{"i":[[-99.022,27.407],[-12.284,43.761],[46.431,-32.929],[24.604,-8.492],[3.643,-25.149]],"o":[[4.602,37.525],[19.313,-68.8],[-27.414,-15.046],[-36.194,12.492],[-4.502,31.08]],"v":[[-331.327,-464.449],[-180.941,-471.185],[-310.101,-553.07],[-390.602,-559.322],[-458.235,-491.466]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-101.193,45.253],[-12.284,43.761],[46.55,-32.564],[61.721,-77.489],[-172.438,-65.414]],"o":[[4.602,37.525],[19.276,-68.666],[84.783,-72.489],[-80.858,-73.373],[-96.438,82.586]],"v":[[-330.285,-479.91],[-179.898,-483.727],[-308.783,-565.799],[-391.721,-670.799],[-497.562,-596.874]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[-30.277,3.035],[-12.284,43.761],[47.217,-30.505],[19.991,-24.82],[-47.826,-24.387]],"o":[[4.602,37.526],[19.064,-67.912],[21.489,-19.029],[-26.554,-17.286],[-29.773,30.639]],"v":[[-323.461,-577.504],[-173.074,-564.867],[-300.409,-647.987],[-331.944,-671.615],[-369.983,-636.347]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[{"i":[[-0.038,-0.307],[-0.27,0.962],[1.044,-0.652],[0.07,-0.079],[0.052,-0.173]],"o":[[0.101,0.825],[0.417,-1.486],[-0.088,0.055],[-0.103,0.117],[-0.064,0.214]],"v":[[-251.554,-688.673],[-248.249,-688.249],[-251.034,-690.086],[-251.272,-689.885],[-251.508,-689.452]],"c":true}]},{"t":168,"s":[{"i":[[-0.038,-0.307],[-0.27,0.962],[1.044,-0.652],[0.07,-0.079],[0.052,-0.173]],"o":[[0.101,0.825],[0.417,-1.486],[-0.088,0.055],[-0.103,0.117],[-0.064,0.214]],"v":[[-259.554,-1020.673],[-256.249,-1020.249],[-259.034,-1022.086],[-259.272,-1021.885],[-259.508,-1021.452]],"c":true}]}]},"nm":"Path 10","hd":false},{"ind":6,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-404.14,-909.549],[-401.505,-910.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-404.14,-913.549],[-401.505,-914.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-0.86,-2.468],[0.177,1.253]],"o":[[0.171,0.491],[-0.306,-2.172]],"v":[[-390.14,-545.549],[-387.505,-546.201]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[{"i":[[-35.184,-117.811],[5.642,59.227]],"o":[[7.003,23.447],[-9.781,-102.689]],"v":[[-444.926,-584.477],[-319.751,-609.515]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-35.184,-117.811],[5.642,59.227]],"o":[[7.003,23.447],[-9.781,-102.689]],"v":[[-444.926,-584.477],[-319.751,-609.515]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-1.636,-5.48],[0.262,2.755]],"o":[[0.326,1.091],[-0.455,-4.776]],"v":[[-397.322,-690.878],[-391.5,-692.042]],"c":true}]},{"t":167,"s":[{"i":[[-1.636,-5.48],[0.262,2.755]],"o":[[0.326,1.091],[-0.455,-4.776]],"v":[[-405.322,-1022.878],[-399.5,-1024.042]],"c":true}]}]},"nm":"Path 11","hd":false},{"ind":7,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.439,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-486.367,-900.217],[-480.556,-899.65],[-481.655,-902.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.439,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-486.367,-904.217],[-480.556,-903.65],[-481.655,-906.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0.444,-2.846],[-0.06,2.162],[0.67,0.546]],"o":[[-0.439,2.81],[0.029,-1.027],[-1.558,-1.269]],"v":[[-485.852,-462.217],[-480.041,-461.65],[-481.14,-464.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[8.215,-52.651],[-1.119,40.004],[12.402,10.102]],"o":[[-8.113,51.994],[0.532,-19.001],[-28.823,-23.478]],"v":[[-535.698,-505.876],[-428.191,-495.387],[-448.517,-539.824]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[{"i":[[8.215,-52.651],[-1.119,40.004],[12.402,10.102]],"o":[[-8.113,51.994],[0.532,-19.001],[-28.823,-23.478]],"v":[[-535.187,-581.621],[-427.681,-571.131],[-448.006,-615.568]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[0.25,-1.604],[-0.034,1.218],[0.378,0.308]],"o":[[-0.247,1.584],[0.016,-0.579],[-0.878,-0.715]],"v":[[-487.492,-654.871],[-484.218,-654.552],[-484.837,-655.905]],"c":true}]},{"t":170,"s":[{"i":[[0.25,-1.604],[-0.034,1.218],[0.378,0.308]],"o":[[-0.247,1.584],[0.016,-0.579],[-0.878,-0.715]],"v":[[-495.492,-986.871],[-492.218,-986.552],[-492.837,-987.905]],"c":true}]}]},"nm":"Path 12","hd":false},{"ind":8,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-553.821,-901.181],[-549.938,-901.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-553.821,-905.181],[-549.938,-905.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[{"i":[[-0.439,-2.059],[0.427,1.684]],"o":[[0.386,1.811],[-0.592,-2.334]],"v":[[-539.821,-537.181],[-535.938,-537.954]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[{"i":[[-10.898,-30.763],[9.958,25.023]],"o":[[9.589,27.066],[-13.803,-34.684]],"v":[[-561.449,-554.104],[-503.318,-573.81]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[{"i":[[-10.898,-30.763],[9.958,25.023]],"o":[[9.589,27.066],[-13.803,-34.684]],"v":[[-561.449,-554.104],[-503.318,-573.81]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[{"i":[[-1.05,-2.965],[0.96,2.412]],"o":[[0.924,2.609],[-1.33,-3.343]],"v":[[-542.164,-610.896],[-536.561,-612.796]],"c":true}]},{"t":169,"s":[{"i":[[-1.05,-2.965],[0.96,2.412]],"o":[[0.924,2.609],[-1.33,-3.343]],"v":[[-550.164,-942.896],[-544.561,-944.796]],"c":true}]}]},"nm":"Path 13","hd":false},{"ind":9,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-610.147,-951.692],[-612.448,-953.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-610.147,-955.692],[-612.448,-957.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0.436,1.704],[0.799,-0.276]],"o":[[-0.306,-1.196],[-0.603,0.208]],"v":[[-609.632,-513.692],[-611.933,-515.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[-3.808,21.156],[6.625,-7.932]],"o":[[3.337,-18.538],[-20.54,24.592]],"v":[[-588.337,-533.75],[-621.46,-549.88]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[{"i":[[-3.841,29.71],[9.825,-18.847]],"o":[[4.052,-31.888],[-22.576,42.035]],"v":[[-562.684,-558.118],[-635.461,-592.108]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[{"i":[[-0.049,0.416],[0.139,-0.29]],"o":[[0.055,-0.466],[-0.295,0.614]],"v":[[-601.382,-612.704],[-602.49,-613.218]],"c":true}]},{"t":166,"s":[{"i":[[-0.049,0.416],[0.139,-0.29]],"o":[[0.055,-0.466],[-0.295,0.614]],"v":[[-609.382,-944.704],[-610.49,-945.218]],"c":true}]}]},"nm":"Path 16","hd":false},{"ind":10,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-288.351,-1092.731],[-283.559,-1091.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-288.351,-1096.731],[-283.559,-1095.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.164,-3.557],[-0.651,2.476]],"o":[[-0.175,3.776],[0.806,-3.065]],"v":[[-286.351,-516.731],[-281.559,-515.922]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[3.542,-76.579],[-14.024,53.309]],"o":[[-3.76,81.294],[17.363,-65.997]],"v":[[-336.336,-570.327],[-233.157,-552.908]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[{"i":[[3.542,-76.579],[-14.025,53.309]],"o":[[-3.76,81.294],[17.363,-65.997]],"v":[[-350.151,-655.09],[-246.971,-637.671]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[{"i":[[0.056,-1.207],[-0.221,0.84]],"o":[[-0.059,1.281],[0.274,-1.04]],"v":[[-311.688,-727.569],[-310.062,-727.295]],"c":true}]},{"t":163,"s":[{"i":[[0.056,-1.207],[-0.221,0.84]],"o":[[-0.059,1.281],[0.274,-1.04]],"v":[[-319.688,-1059.569],[-318.062,-1059.295]],"c":true}]}]},"nm":"Path 14","hd":false},{"ind":11,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[7.57,-924.741],[9.109,-924.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[7.57,-928.741],[9.109,-928.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.099,-1.547],[0.122,0.483]],"o":[[-0.233,0.571],[0.37,-0.986]],"v":[[6.151,-444.741],[7.689,-444.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[{"i":[[-13.333,-137.796],[16.967,45.148]],"o":[[-27.679,51.531],[39.391,-87.843]],"v":[[-68.009,-495.852],[67.779,-475.313]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[{"i":[[-1.34,-134.598],[0.67,38.646]],"o":[[-9.022,48.674],[21.687,-85.725]],"v":[[-68.58,-590.547],[67.208,-570.009]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[{"i":[[0.113,-4.165],[-0.19,1.123]],"o":[[-0.04,1.484],[0.449,-2.651]],"v":[[-3.119,-699.053],[1.124,-698.411]],"c":true}]},{"t":162,"s":[{"i":[[0.113,-4.165],[-0.19,1.124]],"o":[[-0.04,1.484],[0.449,-2.651]],"v":[[-11.119,-1031.053],[-6.876,-1030.411]],"c":true}]}]},"nm":"Path 15","hd":false},{"ind":12,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.098,-0.633],[-0.857,0.923],[1.79,-0.946]],"o":[[0.077,0.496],[1.653,0.298],[-0.823,-0.12]],"v":[[470.629,-994.934],[473.075,-994.626],[472.283,-995.63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[{"i":[[-0.098,-0.633],[-0.857,0.923],[1.79,-0.946]],"o":[[0.077,0.496],[1.653,0.298],[-0.823,-0.12]],"v":[[471.857,-474.934],[474.304,-474.626],[473.511,-475.63]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-9.771,-62.915],[-79.097,87.639],[268.714,-227.214]],"o":[[7.647,49.242],[207.317,68.611],[-69.286,-105.214]],"v":[[284.424,-562.912],[518.683,-533.898],[450.286,-610.073]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[-9.96,-64.133],[-27.776,53.533],[87.401,-42.782]],"o":[[7.647,49.242],[56.143,-17.885],[-50.137,-33.455]],"v":[[285.06,-645.746],[446.622,-629.561],[390.89,-710.929]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[{"i":[[-0.076,-0.492],[-0.1,0.334],[0.27,0.078]],"o":[[0.058,0.376],[0.097,-0.326],[-0.341,-0.098]],"v":[[351.49,-743.717],[352.564,-743.622],[352.167,-744.254]],"c":true}]},{"t":168,"s":[{"i":[[-0.076,-0.492],[-0.1,0.334],[0.27,0.078]],"o":[[0.058,0.376],[0.097,-0.326],[-0.341,-0.098]],"v":[[343.49,-1075.717],[344.564,-1075.622],[344.167,-1076.254]],"c":true}]}]},"nm":"Path 3","hd":false},{"ind":13,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-1.266,-4.784],[-0.496,1.775]],"o":[[0.615,2.322],[1.11,-3.968]],"v":[[456.064,-919.834],[460.091,-919.764]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[-1.266,-4.784],[-0.496,1.775]],"o":[[0.615,2.322],[1.11,-3.968]],"v":[[456.064,-923.834],[460.091,-923.764]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-1.015,-3.834],[-0.398,1.422]],"o":[[0.493,1.861],[0.89,-3.18]],"v":[[457.428,-614.453],[460.656,-614.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-23.882,-90.222],[-9.362,33.471]],"o":[[11.59,43.787],[20.932,-74.836]],"v":[[422.077,-648.318],[498.03,-647.002]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[{"i":[[-0.455,-1.719],[-0.178,0.638]],"o":[[0.221,0.834],[0.399,-1.425]],"v":[[455.358,-734.122],[456.805,-734.097]],"c":true}]},{"t":170,"s":[{"i":[[-0.455,-1.719],[-0.178,0.638]],"o":[[0.221,0.834],[0.399,-1.425]],"v":[[447.358,-1066.122],[448.805,-1066.097]],"c":true}]}]},"nm":"Path 4","hd":false},{"ind":14,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0.929,-6.009],[-0.89,3.766]],"o":[[-0.943,6.104],[1.317,-5.57]],"v":[[523.547,-912.234],[530.691,-909.895]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[0.929,-6.009],[-0.89,3.766]],"o":[[-0.943,6.104],[1.317,-5.57]],"v":[[523.547,-916.234],[530.691,-913.895]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[0.863,-5.584],[-0.827,3.5]],"o":[[-0.877,5.673],[1.224,-5.176]],"v":[[524.877,-606.867],[531.515,-604.694]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[6.839,-44.252],[-6.556,27.732]],"o":[[-6.948,44.953],[9.696,-41.016]],"v":[[504.615,-646.984],[557.224,-629.763]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[{"i":[[0.101,-0.651],[-0.096,0.408]],"o":[[-0.102,0.661],[0.143,-0.603]],"v":[[533.63,-697.949],[534.404,-697.695]],"c":true}]},{"t":169,"s":[{"i":[[0.101,-0.651],[-0.096,0.408]],"o":[[-0.102,0.661],[0.143,-0.603]],"v":[[525.63,-1029.949],[526.404,-1029.696]],"c":true}]}]},"nm":"Path 5","hd":false},{"ind":15,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-0.994,-4.026],[0.15,3.139]],"o":[[0.58,2.348],[-0.173,-3.625]],"v":[[597.52,-970.395],[602.541,-971.428]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[{"i":[[-0.994,-4.026],[0.15,3.139]],"o":[[0.58,2.348],[-0.173,-3.625]],"v":[[597.52,-974.395],[602.541,-975.428]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[{"i":[[-0.914,-3.7],[0.137,2.885]],"o":[[0.533,2.158],[-0.159,-3.331]],"v":[[598.914,-665.492],[603.528,-666.441]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[{"i":[[-8.229,-33.327],[1.238,25.984]],"o":[[4.799,19.435],[-1.429,-30.007]],"v":[[586.078,-691.225],[627.639,-699.773]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[{"i":[[-0.343,-1.389],[0.052,1.083]],"o":[[0.2,0.81],[-0.06,-1.25]],"v":[[611.212,-749.097],[612.944,-749.454]],"c":true}]},{"t":167,"s":[{"i":[[-0.343,-1.389],[0.052,1.083]],"o":[[0.2,0.81],[-0.06,-1.25]],"v":[[603.212,-1081.097],[604.944,-1081.454]],"c":true}]}]},"nm":"Path 17","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.90588241278,0.792156922583,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"nm":"Fill 1","hd":false},{"ty":"st","c":{"a":0,"k":[0.917647058824,0.847058823529,0.721568627451,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":16},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Shape 1","bm":0,"hd":false}],"ip":39,"op":170,"st":-6,"bm":0}]},{"id":"comp_32","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[0]},{"t":72,"s":[100]}]},"p":{"a":0,"k":[1140.139,1466.602,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":52,"s":[56,20.16,100]},{"t":181,"s":[100,36,100]}]}},"ao":0,"w":512,"h":512,"ip":49,"op":208,"st":49,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"t":50,"s":[100]}]},"p":{"a":0,"k":[639.139,473.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":31,"s":[59,21.24,100]},{"t":176,"s":[196,70.56,100]}]}},"ao":0,"w":512,"h":512,"ip":27,"op":186,"st":27,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0]},{"t":68,"s":[100]}]},"p":{"a":0,"k":[891.139,353.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":49,"s":[72,25.92,100]},{"t":180,"s":[148,53.28,100]}]}},"ao":0,"w":512,"h":512,"ip":45,"op":180,"st":45,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"ground 16","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[0]},{"t":90,"s":[100]}]},"p":{"a":0,"k":[739.139,1293.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":73,"s":[80,28.8,100]},{"t":178,"s":[166,59.76,100]}]}},"ao":0,"w":512,"h":512,"ip":67,"op":246,"st":66,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[0]},{"t":51,"s":[100]}]},"p":{"a":0,"k":[273.139,653.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":33,"s":[67,24.12,100]},{"t":183,"s":[143,51.48,100]}]}},"ao":0,"w":512,"h":512,"ip":28,"op":187,"st":28,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"ground 15","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":43,"s":[100]}]},"p":{"a":0,"k":[365.139,1405.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[108,38.88,100]},{"t":184,"s":[175,63,100]}]}},"ao":0,"w":512,"h":512,"ip":20,"op":199,"st":19,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":43,"s":[100]}]},"p":{"a":0,"k":[1125.139,535.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29,"s":[76,27.36,100]},{"t":181,"s":[166,59.76,100]}]}},"ao":0,"w":512,"h":512,"ip":20,"op":180,"st":19,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"t":57,"s":[100]}]},"p":{"a":0,"k":[231.139,1039.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":42,"s":[41,14.76,100]},{"t":179,"s":[130,46.8,100]}]}},"ao":0,"w":512,"h":512,"ip":34,"op":214,"st":34,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"t":48,"s":[100]}]},"p":{"a":0,"k":[777.139,1125.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":32,"s":[69.299,24.948,100]},{"t":176,"s":[279,100.44,100]}]}},"ao":0,"w":512,"h":512,"ip":24,"op":180,"st":24,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"t":82,"s":[100]}]},"p":{"a":0,"k":[573.139,803.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":66,"s":[115,41.4,100]},{"t":181,"s":[264,95.04,100]}]}},"ao":0,"w":512,"h":512,"ip":59,"op":180,"st":59,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"ground","refId":"comp_33","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":43,"s":[100]}]},"p":{"a":0,"k":[565.139,909.658,0]},"a":{"a":0,"k":[256,256,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[50,18,100]},{"t":184,"s":[161,57.96,100]}]}},"ao":0,"w":512,"h":512,"ip":19,"op":185,"st":19,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Shape Layer 30","parent":20,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":151,"s":[0]}]},"p":{"a":0,"k":[-65.113,-69.948,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[82,82,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,0,0.5,1,1,0,1,1,1,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[320,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 22","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Shape Layer 33","parent":21,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":162,"s":[0]}]},"p":{"a":0,"k":[-65.113,-69.948,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[82,82,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,0,0.5,1,1,0,1,1,1,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[320,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 22","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Shape Layer 39","parent":22,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":143,"s":[100]},{"t":170,"s":[0]}]},"p":{"a":0,"k":[-65.113,-69.948,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[82,82,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,0,0.5,1,1,0,1,1,1,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[320,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 22","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Shape Layer 36","parent":23,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[100]},{"t":156,"s":[0]}]},"p":{"a":0,"k":[-65.113,-69.948,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[82,82,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,1,0,0.5,1,1,0,1,1,1,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[320,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 22","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Shape Layer 29","parent":20,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":151,"s":[0]}]},"p":{"a":0,"k":[-109.11,-8.841,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[88,88,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0,0,0.5,1,0,0,1,1,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 23","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Shape Layer 32","parent":21,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":162,"s":[0]}]},"p":{"a":0,"k":[-109.11,-8.841,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[88,88,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0,0,0.5,1,0,0,1,1,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 23","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Shape Layer 38","parent":22,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":143,"s":[100]},{"t":170,"s":[0]}]},"p":{"a":0,"k":[-109.11,-8.841,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[88,88,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0,0,0.5,1,0,0,1,1,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 23","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"Shape Layer 35","parent":23,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[100]},{"t":156,"s":[0]}]},"p":{"a":0,"k":[-109.11,-8.841,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":0,"k":[88,88,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0,0,0.5,1,0,0,1,1,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 23","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"Shape Layer 25","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":151,"s":[0]}]},"p":{"a":0,"k":[776,1244,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[146,52.56,100]},{"t":179,"s":[178,64.08,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":40},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.161,0,0,0.5,0.161,0,0,1,0.161,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 24","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Shape Layer 31","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[100]},{"t":162,"s":[0]}]},"p":{"a":0,"k":[564,1004,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[106,38.16,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[106,38.16,100]},{"t":179,"s":[136,48.96,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":40},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.161,0,0,0.5,0.161,0,0,1,0.161,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 24","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Shape Layer 37","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":143,"s":[100]},{"t":170,"s":[0]}]},"p":{"a":0,"k":[636,816,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[105,37.8,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[105,37.8,100]},{"t":179,"s":[126,45.36,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":40},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.161,0,0,0.5,0.161,0,0,1,0.161,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 24","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"Shape Layer 34","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[100]},{"t":156,"s":[0]}]},"p":{"a":0,"k":[580,504,0]},"a":{"a":0,"k":[-92,-36,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[70,25.2,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[70,25.2,100]},{"t":179,"s":[149,53.64,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[840,840]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":40},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.161,0,0,0.5,0.161,0,0,1,0.161,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[397,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 24","hd":false},{"ty":"tr","p":{"a":0,"k":[-92,-36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Ellipse 1","bm":0,"hd":false}],"ip":20,"op":180,"st":0,"bm":0}]},{"id":"comp_33","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 10","sr":1,"ks":{"r":{"a":0,"k":-198},"p":{"a":0,"k":[268.825,243.194,0]},"a":{"a":0,"k":[10,10,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[59,59,100]},{"t":175,"s":[107,107,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-104.934],[104.934,0],[0,104.934],[-104.934,0]],"o":[[0,104.934],[-104.934,0],[0,-104.934],[104.934,0]],"v":[[190,0],[0,190],[-190,0],[0,-190]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[0,1,1,0,0.5,1,1,0,1,1,1,0,0.007,0,0.056,0,0.095,0,0.462,0.5,0.83,1,0.915,0.5,1,0]},{"t":150,"s":[0,0.937,0.22,0,0.5,0.937,0.22,0,1,0.937,0.221,0,0,0,0.336,0,0.673,0,0.817,0.5,0.935,1,0.968,0.5,1,0]}]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[185,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 31","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[77,77]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 8","sr":1,"ks":{"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-1]},{"t":179,"s":[-132]}]},"p":{"a":0,"k":[250,261,0]},"a":{"a":0,"k":[-10,-10,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[75,75,100]},{"t":179,"s":[104,104,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-104.934],[104.934,0],[0,104.934],[-104.934,0]],"o":[[0,104.934],[-104.934,0],[0,-104.934],[104.934,0]],"v":[[190,0],[0,190],[-190,0],[0,-190]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0,0,0.5,1,0,0,1,1,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[185,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 32","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Layer 7","sr":1,"ks":{"o":{"a":0,"k":40},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":180,"s":[1080]}]},"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[10,10,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":30,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":40,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":50,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":60,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":70,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":80,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":90,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":100,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":110,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":120,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":130,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":140,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":150,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":160,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":170,"s":[95,95,100]},{"t":180,"s":[100,100,100]}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,-104.934],[104.934,0],[0,104.934],[-104.934,0]],"o":[[0,104.934],[-104.934,0],[0,-104.934],[104.934,0]],"v":[[190,0],[0,190],[-190,0],[0,-190]],"c":true}},"nm":"Path 1","hd":false},{"ty":"gf","o":{"a":0,"k":100},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,0.161,0,0,0.5,0.161,0,0,1,0.161,0,0,0,1,0.5,0.5,1,0]}},"s":{"a":0,"k":[0,0]},"e":{"a":0,"k":[185,0]},"t":2,"h":{"a":0,"k":0},"a":{"a":0,"k":0},"nm":"Gradient Fill 1","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"nm":"Transform"}],"nm":"Group 1","bm":0,"hd":false}],"ip":0,"op":180,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"fire1536","refId":"comp_0","sr":1,"ks":{"p":{"a":0,"k":[256,256,0]},"a":{"a":0,"k":[768,768,0]},"s":{"a":0,"k":[33,33,100]}},"ao":0,"w":1536,"h":1536,"ip":0,"op":180,"st":0,"bm":0}]}
\ No newline at end of file
diff --git a/Tests/LottieMesh/Sources/ViewController.swift b/Tests/LottieMesh/Sources/ViewController.swift
deleted file mode 100644
index 83251bb646..0000000000
--- a/Tests/LottieMesh/Sources/ViewController.swift
+++ /dev/null
@@ -1,37 +0,0 @@
-import Foundation
-import UIKit
-
-import LottieMeshSwift
-import Postbox
-
-public final class ViewController: UIViewController {
- override public func viewDidLoad() {
- super.viewDidLoad()
-
- TempBox.initializeShared(basePath: NSTemporaryDirectory(), processType: "test", launchSpecificId: Int64.random(in: Int64.min ..< Int64.max))
-
- self.view.backgroundColor = .black
-
- //let path = Bundle.main.path(forResource: "SUPER Fire", ofType: "json")!
- let path = Bundle.main.path(forResource: "Fireworks", ofType: "json")!
- //let path = Bundle.main.path(forResource: "Cat", ofType: "json")!
- /*for _ in 0 ..< 100 {
- let _ = generateMeshAnimation(data: try! Data(contentsOf: URL(fileURLWithPath: path)))!
- }*/
-
- if #available(iOS 13.0, *) {
- let startTime = CFAbsoluteTimeGetCurrent()
- let animationFile = generateMeshAnimation(data: try! Data(contentsOf: URL(fileURLWithPath: path)))!
- print("Time: \((CFAbsoluteTimeGetCurrent() - startTime) * 1000.0)")
- let buffer = MeshReadBuffer(data: try! Data(contentsOf: URL(fileURLWithPath: animationFile.path)))
- let animation = MeshAnimation.read(buffer: buffer)
-
- let renderer = MeshRenderer(wireframe: false)!
-
- renderer.frame = CGRect(origin: CGPoint(x: 0.0, y: 50.0), size: CGSize(width: 300.0, height: 300.0))
- self.view.addSubview(renderer)
-
- renderer.add(mesh: animation, offset: CGPoint(), loop: true)
- }
- }
-}
diff --git a/Tests/LottieMetalTest/.gitignore b/Tests/LottieMetalTest/.gitignore
new file mode 100644
index 0000000000..31360466c1
--- /dev/null
+++ b/Tests/LottieMetalTest/.gitignore
@@ -0,0 +1,2 @@
+TestData/*.json
+
diff --git a/Tests/LottieMesh/BUILD b/Tests/LottieMetalTest/BUILD
similarity index 58%
rename from Tests/LottieMesh/BUILD
rename to Tests/LottieMetalTest/BUILD
index 40da9bebbd..1e9987af9f 100644
--- a/Tests/LottieMesh/BUILD
+++ b/Tests/LottieMetalTest/BUILD
@@ -10,6 +10,27 @@ load("//build-system/bazel-utils:plist_fragment.bzl",
"plist_fragment",
)
+load(
+ "@build_bazel_rules_apple//apple:resources.bzl",
+ "apple_resource_bundle",
+ "apple_resource_group",
+)
+
+load(
+ "@rules_xcodeproj//xcodeproj:defs.bzl",
+ "top_level_target",
+ "top_level_targets",
+ "xcodeproj",
+ "xcode_provisioning_profile",
+)
+
+load("@build_bazel_rules_apple//apple:apple.bzl", "local_provisioning_profile")
+
+load(
+ "@build_configuration//:variables.bzl",
+ "telegram_bazel_path",
+)
+
filegroup(
name = "AppResources",
srcs = glob([
@@ -26,7 +47,14 @@ swift_library(
":AppResources",
],
deps = [
- "//submodules/LottieMeshSwift:LottieMeshSwift",
+ "//submodules/Display",
+ "//submodules/MetalEngine",
+ "//submodules/TelegramUI/Components/LottieCpp",
+ "//submodules/TelegramUI/Components/LottieMetal",
+ "//submodules/rlottie:RLottieBinding",
+ "//Tests/LottieMetalTest/QOILoader",
+ "//Tests/LottieMetalTest/SoftwareLottieRenderer",
+ "//Tests/LottieMetalTest/LottieSwift",
],
)
@@ -72,7 +100,7 @@ plist_fragment(
CFBundleDisplayName
Test
CFBundleIdentifier
- org.telegram.LottieMesh
+ ph.telegra.Telegraph
CFBundleName
Telegram
CFBundlePackageType
@@ -127,12 +155,44 @@ plist_fragment(
"""
)
+filegroup(
+ name = "TestDataBundleFiles",
+ srcs = glob([
+ "TestData/*.json",
+ ]),
+ visibility = ["//visibility:public"],
+)
+
+plist_fragment(
+ name = "TestDataBundleInfoPlist",
+ extension = "plist",
+ template =
+ """
+ CFBundleIdentifier
+ org.telegram.TestDataBundle
+ CFBundleDevelopmentRegion
+ en
+ CFBundleName
+ TestDataBundle
+ """
+)
+
+apple_resource_bundle(
+ name = "TestDataBundle",
+ infoplists = [
+ ":TestDataBundleInfoPlist",
+ ],
+ resources = [
+ ":TestDataBundleFiles",
+ ],
+)
+
ios_application(
- name = "LottieMesh",
- bundle_id = "org.telegram.LottieMesh",
+ name = "LottieMetalTest",
+ bundle_id = "ph.telegra.Telegraph",
families = ["iphone", "ipad"],
- minimum_os_version = "9.0",
- provisioning_profile = "@build_configuration//provisioning:Wildcard.mobileprovision",
+ minimum_os_version = "12.0",
+ provisioning_profile = "@build_configuration//provisioning:Telegram.mobileprovision",
infoplists = [
":AppInfoPlist",
":BuildNumberInfoPlist",
@@ -140,6 +200,7 @@ ios_application(
],
resources = [
"//Tests/Common:LaunchScreen",
+ ":TestDataBundle",
],
frameworks = [
],
@@ -147,4 +208,28 @@ ios_application(
"//Tests/Common:Main",
":Lib",
],
+ visibility = ["//visibility:public"],
+)
+
+xcodeproj(
+ name = "LottieMetalTest_xcodeproj",
+ build_mode = "bazel",
+ bazel_path = telegram_bazel_path,
+ project_name = "LottieMetalTest",
+ tags = ["manual"],
+ top_level_targets = top_level_targets(
+ labels = [
+ ":LottieMetalTest",
+ ],
+ target_environments = ["device", "simulator"],
+ ),
+ xcode_configurations = {
+ "Debug": {
+ "//command_line_option:compilation_mode": "dbg",
+ },
+ "Release": {
+ "//command_line_option:compilation_mode": "opt",
+ },
+ },
+ default_xcode_configuration = "Debug"
)
diff --git a/Tests/LottieMetalTest/LottieSwift/BUILD b/Tests/LottieMetalTest/LottieSwift/BUILD
new file mode 100644
index 0000000000..01dac11776
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/BUILD
@@ -0,0 +1,14 @@
+load("@build_bazel_rules_swift//swift:swift.bzl",
+ "swift_library",
+)
+
+swift_library(
+ name = "LottieSwift",
+ module_name = "LottieSwift",
+ srcs = glob([
+ "Sources/**/*.swift",
+ ]),
+ deps = [
+ ],
+ visibility = ["//visibility:public"],
+)
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift
new file mode 100644
index 0000000000..66e221ff22
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift
@@ -0,0 +1,76 @@
+// Created by Cal Stephens on 1/6/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAAnimation {
+ /// Creates a `CAAnimation` that wraps this animation,
+ /// applying timing-related configuration from the given `LayerAnimationContext`
+ @nonobjc
+ func timed(with context: LayerAnimationContext, for layer: CALayer) -> CAAnimation {
+
+ // The base animation always has the duration of the full animation,
+ // since that's the time space where keyframing and interpolating happens.
+ // So we start with a simple animation timeline from 0% to 100%:
+ //
+ // ┌──────────────────────────────────┐
+ // │ baseAnimation │
+ // └──────────────────────────────────┘
+ // 0% 100%
+ //
+ let baseAnimation = self
+ baseAnimation.duration = context.animation.duration
+ baseAnimation.speed = (context.endFrame < context.startFrame) ? -1 : 1
+
+ // To select the subrange of the `baseAnimation` that should be played,
+ // we create a parent animation with the duration of that subrange
+ // to clip the `baseAnimation`. This parent animation can then loop
+ // and/or autoreverse over the clipped subrange.
+ //
+ // ┌────────────────────┬───────►
+ // │ clippingParent │ ...
+ // └────────────────────┴───────►
+ // 25% 75%
+ // ┌──────────────────────────────────┐
+ // │ baseAnimation │
+ // └──────────────────────────────────┘
+ // 0% 100%
+ //
+ let clippingParent = CAAnimationGroup()
+ clippingParent.animations = [baseAnimation]
+
+ clippingParent.duration = Double(abs(context.endFrame - context.startFrame)) / context.animation.framerate
+ baseAnimation.timeOffset = context.animation.time(forFrame: context.startFrame)
+
+ clippingParent.autoreverses = context.timingConfiguration.autoreverses
+ clippingParent.repeatCount = context.timingConfiguration.repeatCount
+ clippingParent.timeOffset = context.timingConfiguration.timeOffset
+
+ // Once the animation ends, it should pause on the final frame
+ clippingParent.fillMode = .both
+ clippingParent.isRemovedOnCompletion = false
+
+ // We can pause the animation on a specific frame by setting the root layer's
+ // `speed` to 0, and then setting the `timeOffset` for the given frame.
+ // - For that setup to work properly, we have to set the `beginTime`
+ // of this animation to a time slightly before the current time.
+ // - It's not really clear why this is necessary, but `timeOffset`
+ // is not applied correctly without this configuration.
+ // - We can't do this when playing the animation in real time,
+ // because it can cause keyframe timings to be incorrect.
+ if context.timingConfiguration.speed == 0 {
+ let currentTime = layer.convertTime(CACurrentMediaTime(), from: nil)
+ clippingParent.beginTime = currentTime - .leastNonzeroMagnitude
+ }
+
+ return clippingParent
+ }
+}
+
+extension CALayer {
+ /// Adds the given animation to this layer, timed with the given timing configuration
+ @nonobjc
+ func add(_ animation: CAPropertyAnimation, timedWith context: LayerAnimationContext) {
+ add(animation.timed(with: context, for: self), forKey: animation.keyPath)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift
new file mode 100644
index 0000000000..5a4d1b1214
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift
@@ -0,0 +1,315 @@
+// Created by Cal Stephens on 12/14/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CALayer {
+
+ // MARK: Internal
+
+ /// Constructs a `CAKeyframeAnimation` that reflects the given keyframes,
+ /// and adds it to this `CALayer`.
+ @nonobjc
+ func addAnimation(
+ for property: LayerProperty,
+ keyframes: ContiguousArray>,
+ value keyframeValueMapping: (KeyframeValue) throws -> ValueRepresentation,
+ context: LayerAnimationContext)
+ throws
+ {
+ if let customAnimation = try customizedAnimation(for: property, context: context) {
+ add(customAnimation, timedWith: context)
+ }
+
+ else if
+ let defaultAnimation = try defaultAnimation(
+ for: property,
+ keyframes: keyframes,
+ value: keyframeValueMapping,
+ context: context)
+ {
+ add(defaultAnimation, timedWith: context)
+ }
+ }
+
+ // MARK: Private
+
+ /// Constructs a `CAAnimation` that reflects the given keyframes
+ /// - If the value can be applied directly to the CALayer using KVC,
+ /// then no `CAAnimation` will be created and the value will be applied directly.
+ @nonobjc
+ private func defaultAnimation(
+ for property: LayerProperty,
+ keyframes: ContiguousArray>,
+ value keyframeValueMapping: (KeyframeValue) throws -> ValueRepresentation,
+ context: LayerAnimationContext)
+ throws
+ -> CAPropertyAnimation?
+ {
+ guard !keyframes.isEmpty else { return nil }
+
+ // If there is exactly one keyframe value, we can improve performance
+ // by applying that value directly to the layer instead of creating
+ // a relatively expensive `CAKeyframeAnimation`.
+ if keyframes.count == 1 {
+ let keyframeValue = try keyframeValueMapping(keyframes[0].value)
+
+ // If the keyframe value is the same as the layer's default value for this property,
+ // then we can just ignore this set of keyframes.
+ if keyframeValue == property.defaultValue {
+ return nil
+ }
+
+ // If the property on the CALayer being animated hasn't been modified from the default yet,
+ // then we can apply the keyframe value directly to the layer using KVC instead
+ // of creating a `CAAnimation`.
+ if
+ let defaultValue = property.defaultValue,
+ defaultValue == value(forKey: property.caLayerKeypath) as? ValueRepresentation
+ {
+ setValue(keyframeValue, forKeyPath: property.caLayerKeypath)
+ return nil
+ }
+
+ // Otherwise, we still need to create a `CAAnimation`, but we can
+ // create a simple `CABasicAnimation` that is still less expensive
+ // than computing a `CAKeyframeAnimation`.
+ let animation = CABasicAnimation(keyPath: property.caLayerKeypath)
+ animation.fromValue = keyframeValue
+ animation.toValue = keyframeValue
+ return animation
+ }
+
+ return try keyframeAnimation(
+ for: property,
+ keyframes: keyframes,
+ value: keyframeValueMapping,
+ context: context)
+ }
+
+ /// A `CAAnimation` that applies the custom value from the `AnyValueProvider`
+ /// registered for this specific property's `AnimationKeypath`,
+ /// if one has been registered using `AnimationView.setValueProvider(_:keypath:)`.
+ @nonobjc
+ private func customizedAnimation(
+ for property: LayerProperty,
+ context: LayerAnimationContext)
+ throws
+ -> CAPropertyAnimation?
+ {
+ guard
+ let customizableProperty = property.customizableProperty,
+ let customKeyframes = try context.valueProviderStore.customKeyframes(
+ of: customizableProperty,
+ for: AnimationKeypath(keys: context.currentKeypath.keys + customizableProperty.name.map { $0.rawValue }),
+ context: context)
+ else { return nil }
+
+ // Since custom animations are overriding an existing animation,
+ // we always have to create a CAKeyframeAnimation for these instead of
+ // letting `defaultAnimation(...)` try to apply the value using KVC.
+ return try keyframeAnimation(
+ for: property,
+ keyframes: customKeyframes.keyframes,
+ value: { $0 },
+ context: context)
+ }
+
+ /// Creates a `CAKeyframeAnimation` for the given keyframes
+ private func keyframeAnimation(
+ for property: LayerProperty,
+ keyframes: ContiguousArray>,
+ value keyframeValueMapping: (KeyframeValue) throws -> ValueRepresentation,
+ context: LayerAnimationContext)
+ throws
+ -> CAKeyframeAnimation
+ {
+ // Convert the list of `Keyframe` into
+ // the representation used by `CAKeyframeAnimation`
+ var keyTimes = keyframes.map { keyframeModel -> NSNumber in
+ NSNumber(value: Float(context.progressTime(for: keyframeModel.time)))
+ }
+
+ var timingFunctions = self.timingFunctions(for: keyframes)
+ let calculationMode = try self.calculationMode(for: keyframes, context: context)
+
+ let animation = CAKeyframeAnimation(keyPath: property.caLayerKeypath)
+
+ // Position animations define a `CGPath` curve that should be followed,
+ // instead of animating directly between keyframe point values.
+ if property.caLayerKeypath == LayerProperty.position.caLayerKeypath {
+ animation.path = try path(keyframes: keyframes, value: { value in
+ guard let point = try keyframeValueMapping(value) as? CGPoint else {
+ LottieLogger.shared.assertionFailure("Cannot create point from keyframe with value \(value)")
+ return .zero
+ }
+
+ return point
+ })
+ }
+
+ // All other types of keyframes provide individual values that are interpolated by Core Animation
+ else {
+ var values = try keyframes.map { keyframeModel in
+ try keyframeValueMapping(keyframeModel.value)
+ }
+
+ validate(values: &values, keyTimes: &keyTimes, timingFunctions: &timingFunctions, for: calculationMode)
+ animation.values = values
+ }
+
+ animation.calculationMode = calculationMode
+ animation.keyTimes = keyTimes
+ animation.timingFunctions = timingFunctions
+ return animation
+ }
+
+ /// The `CAAnimationCalculationMode` that should be used for a `CAKeyframeAnimation`
+ /// animating the given keyframes
+ private func calculationMode(
+ for keyframes: ContiguousArray>,
+ context: LayerAnimationContext)
+ throws
+ -> CAAnimationCalculationMode
+ {
+ // Animations using `isHold` should use `CAAnimationCalculationMode.discrete`
+ //
+ // - Since we currently only create a single `CAKeyframeAnimation`,
+ // we can currently only correctly support animations where
+ // `isHold` is either always `true` or always `false`
+ // (this requirement doesn't apply to the first/last keyframes).
+ //
+ // - We should be able to support this in the future by creating multiple
+ // `CAKeyframeAnimation`s with different `calculationMode`s and
+ // playing them sequentially.
+ //
+ let intermediateKeyframes = keyframes.dropFirst().dropLast()
+ if intermediateKeyframes.contains(where: \.isHold) {
+ if intermediateKeyframes.allSatisfy(\.isHold) {
+ return .discrete
+ } else {
+ try context.logCompatibilityIssue("Mixed `isHold` / `!isHold` keyframes are currently unsupported")
+ }
+ }
+
+ return .linear
+ }
+
+ /// `timingFunctions` to apply to a `CAKeyframeAnimation` animating the given keyframes
+ private func timingFunctions(
+ for keyframes: ContiguousArray>)
+ -> [CAMediaTimingFunction]
+ {
+ // Compute the timing function between each keyframe and the subsequent keyframe
+ var timingFunctions: [CAMediaTimingFunction] = []
+
+ for (index, keyframe) in keyframes.enumerated()
+ where index != keyframes.indices.last
+ {
+ let nextKeyframe = keyframes[index + 1]
+
+ let controlPoint1 = keyframe.outTangent?.pointValue ?? .zero
+ let controlPoint2 = nextKeyframe.inTangent?.pointValue ?? CGPoint(x: 1, y: 1)
+
+ timingFunctions.append(CAMediaTimingFunction(
+ controlPoints:
+ Float(controlPoint1.x),
+ Float(controlPoint1.y),
+ Float(controlPoint2.x),
+ Float(controlPoint2.y)))
+ }
+
+ return timingFunctions
+ }
+
+ /// Creates a `CGPath` for the given `position` keyframes,
+ /// which accounts for `spatialInTangent`s and `spatialOutTangents`
+ private func path(
+ keyframes positionKeyframes: ContiguousArray>,
+ value keyframeValueMapping: (KeyframeValue) throws -> CGPoint) rethrows
+ -> CGPath {
+ let path = CGMutablePath()
+
+ for (index, keyframe) in positionKeyframes.enumerated() {
+ if index == positionKeyframes.indices.first {
+ path.move(to: try keyframeValueMapping(keyframe.value))
+ }
+
+ if index != positionKeyframes.indices.last {
+ let nextKeyframe = positionKeyframes[index + 1]
+
+ if
+ let controlPoint1 = keyframe.spatialOutTangent?.pointValue,
+ let controlPoint2 = nextKeyframe.spatialInTangent?.pointValue,
+ controlPoint1 != .zero,
+ controlPoint2 != .zero
+ {
+ path.addCurve(
+ to: try keyframeValueMapping(nextKeyframe.value),
+ control1: try keyframeValueMapping(keyframe.value) + controlPoint1,
+ control2: try keyframeValueMapping(nextKeyframe.value) + controlPoint2)
+ }
+
+ else {
+ path.addLine(to: try keyframeValueMapping(nextKeyframe.value))
+ }
+ }
+ }
+
+ path.closeSubpath()
+ return path
+ }
+
+ /// Validates that the requirements of the `CAKeyframeAnimation` API are met correctly
+ private func validate(
+ values: inout [ValueRepresentation],
+ keyTimes: inout [NSNumber],
+ timingFunctions: inout [CAMediaTimingFunction],
+ for calculationMode: CAAnimationCalculationMode)
+ {
+ // Validate that we have correct start (0.0) and end (1.0) keyframes.
+ // From the documentation of `CAKeyframeAnimation.keyTimes`:
+ // - The first value in the `keyTimes` array must be 0.0 and the last value must be 1.0.
+ if keyTimes.first != 0.0 {
+ keyTimes.insert(0.0, at: 0)
+ values.insert(values[0], at: 0)
+ timingFunctions.insert(CAMediaTimingFunction(name: .linear), at: 0)
+ }
+
+ if keyTimes.last != 1.0 {
+ keyTimes.append(1.0)
+ values.append(values.last!)
+ timingFunctions.append(CAMediaTimingFunction(name: .linear))
+ }
+
+ switch calculationMode {
+ case .linear, .cubic:
+ // From the documentation of `CAKeyframeAnimation.keyTimes`:
+ // - The number of elements in the keyTimes array
+ // should match the number of elements in the values property
+ LottieLogger.shared.assert(
+ values.count == keyTimes.count,
+ "`values.count` must exactly equal `keyTimes.count`")
+
+ LottieLogger.shared.assert(
+ timingFunctions.count == (values.count - 1),
+ "`timingFunctions.count` must exactly equal `values.count - 1`")
+
+ case .discrete:
+ // From the documentation of `CAKeyframeAnimation.keyTimes`:
+ // - If the calculationMode is set to discrete... the keyTimes array
+ // should have one more entry than appears in the values array.
+ values.removeLast()
+
+ LottieLogger.shared.assert(
+ keyTimes.count == values.count + 1,
+ "`keyTimes.count` must exactly equal `values.count + 1`")
+
+ default:
+ LottieLogger.shared.assertionFailure("""
+ Unexpected keyframe calculation mode \(calculationMode)
+ """)
+ }
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift
new file mode 100644
index 0000000000..9aadf86163
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift
@@ -0,0 +1,52 @@
+// Created by Cal Stephens on 1/28/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+ /// Adds animations for the given `CombinedShapeItem` to this `CALayer`
+ @nonobjc
+ func addAnimations(
+ for combinedShapes: CombinedShapeItem,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: combinedShapes.shapes.keyframes,
+ value: { paths in
+ let combinedPath = CGMutablePath()
+ for path in paths {
+ combinedPath.addPath(path.cgPath())
+ }
+ return combinedPath
+ },
+ context: context)
+ }
+}
+
+// MARK: - CombinedShapeItem
+
+/// A custom `ShapeItem` subclass that combines multiple `Shape`s into a single `KeyframeGroup`
+final class CombinedShapeItem: ShapeItem {
+
+ // MARK: Lifecycle
+
+ init(shapes: KeyframeGroup<[BezierPath]>, name: String) {
+ self.shapes = shapes
+ super.init(name: name, type: .shape, hidden: false)
+ }
+
+ required init(from _: Decoder) throws {
+ fatalError("init(from:) has not been implemented")
+ }
+
+ required init(dictionary _: [String: Any]) throws {
+ fatalError("init(dictionary:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ let shapes: KeyframeGroup<[BezierPath]>
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift
new file mode 100644
index 0000000000..28262e98a8
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift
@@ -0,0 +1,22 @@
+// Created by Cal Stephens on 12/21/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+ /// Adds animations for the given `BezierPath` keyframes to this `CALayer`
+ @nonobjc
+ func addAnimations(
+ for customPath: KeyframeGroup,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: customPath.keyframes,
+ value: { pathKeyframe in
+ pathKeyframe.cgPath()
+ },
+ context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift
new file mode 100644
index 0000000000..383f3ae451
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift
@@ -0,0 +1,26 @@
+// Created by Cal Stephens on 12/21/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+ /// Adds animations for the given `Ellipse` to this `CALayer`
+ @nonobjc
+ func addAnimations(
+ for ellipse: Ellipse,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: ellipse.size.keyframes,
+ value: { sizeKeyframe in
+ BezierPath.ellipse(
+ size: sizeKeyframe.sizeValue,
+ center: try ellipse.position.exactlyOneKeyframe(context: context, description: "ellipse position").value.pointValue,
+ direction: ellipse.direction)
+ .cgPath()
+ },
+ context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift
new file mode 100644
index 0000000000..d02bda6b8f
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift
@@ -0,0 +1,146 @@
+// Created by Cal Stephens on 1/7/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - GradientShapeItem
+
+/// A `ShapeItem` that represents a gradient
+protocol GradientShapeItem: OpacityAnimationModel {
+ var startPoint: KeyframeGroup { get }
+ var endPoint: KeyframeGroup { get }
+ var gradientType: GradientType { get }
+ var numberOfColors: Int { get }
+ var colors: KeyframeGroup<[Double]> { get }
+}
+
+// MARK: - GradientFill + GradientShapeItem
+
+extension GradientFill: GradientShapeItem { }
+
+// MARK: - GradientStroke + GradientShapeItem
+
+extension GradientStroke: GradientShapeItem { }
+
+// MARK: - GradientRenderLayer + GradientShapeItem
+
+extension GradientRenderLayer {
+
+ // MARK: Internal
+
+ /// Adds gradient-related animations to this layer, from the given `GradientFill`
+ func addGradientAnimations(for gradient: GradientShapeItem, context: LayerAnimationContext) throws {
+ // We have to set `colors` to a non-nil value with some valid number of colors
+ // for the color animation below to have any effect
+ colors = .init(
+ repeating: CGColor.rgb(0, 0, 0),
+ count: gradient.numberOfColors)
+
+ try addAnimation(
+ for: .colors,
+ keyframes: gradient.colors.keyframes,
+ value: { colorComponents in
+ gradient.colorConfiguration(from: colorComponents).map { $0.color }
+ },
+ context: context)
+
+ try addAnimation(
+ for: .locations,
+ keyframes: gradient.colors.keyframes,
+ value: { colorComponents in
+ gradient.colorConfiguration(from: colorComponents).map { $0.location }
+ },
+ context: context)
+
+ try addOpacityAnimation(for: gradient, context: context)
+
+ switch gradient.gradientType {
+ case .linear:
+ try addLinearGradientAnimations(for: gradient, context: context)
+ case .radial:
+ try addRadialGradientAnimations(for: gradient, context: context)
+ case .none:
+ break
+ }
+ }
+
+ // MARK: Private
+
+ private func addLinearGradientAnimations(
+ for gradient: GradientShapeItem,
+ context: LayerAnimationContext)
+ throws
+ {
+ type = .axial
+
+ try addAnimation(
+ for: .startPoint,
+ keyframes: gradient.startPoint.keyframes,
+ value: { absoluteStartPoint in
+ percentBasedPointInBounds(from: absoluteStartPoint.pointValue)
+ },
+ context: context)
+
+ try addAnimation(
+ for: .endPoint,
+ keyframes: gradient.endPoint.keyframes,
+ value: { absoluteEndPoint in
+ percentBasedPointInBounds(from: absoluteEndPoint.pointValue)
+ },
+ context: context)
+ }
+
+ private func addRadialGradientAnimations(for gradient: GradientShapeItem, context: LayerAnimationContext) throws {
+ type = .radial
+
+ // To draw the correct gradients, we have to derive a custom `endPoint`
+ // relative to the `startPoint` value. Since calculating the `endPoint`
+ // at any given time requires knowing the current `startPoint`,
+ // we can't allow them to animate separately.
+ let absoluteStartPoint = try gradient.startPoint
+ .exactlyOneKeyframe(context: context, description: "gradient startPoint").value.pointValue
+
+ let absoluteEndPoint = try gradient.endPoint
+ .exactlyOneKeyframe(context: context, description: "gradient endPoint").value.pointValue
+
+ startPoint = percentBasedPointInBounds(from: absoluteStartPoint)
+
+ let radius = absoluteStartPoint.distanceTo(absoluteEndPoint)
+ endPoint = percentBasedPointInBounds(
+ from: CGPoint(
+ x: absoluteStartPoint.x + radius,
+ y: absoluteStartPoint.y + radius))
+ }
+}
+
+extension GradientShapeItem {
+ /// Converts the compact `[Double]` color components representation
+ /// into an array of `CGColor`s and the location of those colors within the gradient
+ fileprivate func colorConfiguration(
+ from colorComponents: [Double])
+ -> [(color: CGColor, location: CGFloat)]
+ {
+ precondition(
+ colorComponents.count >= numberOfColors * 4,
+ "Each color must have RGB components and a location component")
+
+ var cgColors = [(color: CGColor, location: CGFloat)]()
+
+ // Each group of four `Double` values represents a single `CGColor`,
+ // and its relative location within the gradient.
+ for colorIndex in 0.. {
+ /// The `CALayer` KVC key path that this value should be assigned to
+ let caLayerKeypath: String
+
+ /// The default value of this property on a `CALayer`
+ /// - If the keyframe values are just equal to the default value,
+ /// then we can improve performance a bit by just not creating
+ /// a CAAnimation (since it would be redundant).
+ let defaultValue: ValueRepresentation?
+
+ /// A description of how this property can be customized dynamically
+ /// at runtime using `AnimationView.setValueProvider(_:keypath:)`
+ let customizableProperty: CustomizableProperty?
+}
+
+// MARK: - CustomizableProperty
+
+/// A description of how a `CALayer` property can be customized dynamically
+/// at runtime using `AnimationView.setValueProvider(_:keypath:)`
+struct CustomizableProperty {
+ /// The name that `AnimationKeypath`s can use to refer to this property
+ /// - When building an animation for this property that will be applied
+ /// to a specific layer, this `name` is appended to the end of that
+ /// layer's `AnimationKeypath`. The combined keypath is used to query
+ /// the `ValueProviderStore`.
+ let name: [PropertyName]
+
+ /// A closure that coverts the type-erased value of an `AnyValueProvider`
+ /// to the strongly-typed representation used by this property, if possible.
+ let conversion: (Any) -> ValueRepresentation?
+}
+
+// MARK: - PropertyName
+
+/// The name of a customizable property that can be used in an `AnimationKeypath`
+/// - These values should be shared between the two rendering engines,
+/// since they form the public API of the `AnimationKeypath` system.
+enum PropertyName: String {
+ case color = "Color"
+}
+
+// MARK: CALayer properties
+
+extension LayerProperty {
+ static var position: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.translation",
+ defaultValue: CGPoint(x: 0, y: 0),
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var positionX: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.translation.x",
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var positionY: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.translation.y",
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var scale: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.scale",
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var scaleX: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.scale.x",
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var scaleY: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.scale.y",
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var rotation: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.rotation",
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var rotationY: LayerProperty {
+ .init(
+ caLayerKeypath: "transform.rotation.y",
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var anchorPoint: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CALayer.anchorPoint),
+ // This is intentionally not `GGPoint(x: 0.5, y: 0.5)` (the actual default)
+ // to opt `anchorPoint` out of the KVC `setValue` flow, which causes issues.
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var opacity: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CALayer.opacity),
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+}
+
+// MARK: CAShapeLayer properties
+
+extension LayerProperty {
+ static var path: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.path),
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var fillColor: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.fillColor),
+ defaultValue: nil,
+ customizableProperty: .color)
+ }
+
+ static var lineWidth: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.lineWidth),
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var lineDashPhase: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.lineDashPhase),
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var strokeColor: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.strokeColor),
+ defaultValue: nil,
+ customizableProperty: .color)
+ }
+
+ static var strokeStart: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.strokeStart),
+ defaultValue: 0,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var strokeEnd: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAShapeLayer.strokeEnd),
+ defaultValue: 1,
+ customizableProperty: nil /* currently unsupported */)
+ }
+}
+
+// MARK: CAGradientLayer properties
+
+extension LayerProperty {
+ static var colors: LayerProperty<[CGColor]> {
+ .init(
+ caLayerKeypath: #keyPath(CAGradientLayer.colors),
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var locations: LayerProperty<[CGFloat]> {
+ .init(
+ caLayerKeypath: #keyPath(CAGradientLayer.locations),
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var startPoint: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAGradientLayer.startPoint),
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+
+ static var endPoint: LayerProperty {
+ .init(
+ caLayerKeypath: #keyPath(CAGradientLayer.endPoint),
+ defaultValue: nil,
+ customizableProperty: nil /* currently unsupported */)
+ }
+}
+
+// MARK: - CustomizableProperty types
+
+extension CustomizableProperty {
+ static var color: CustomizableProperty {
+ .init(
+ name: [.color],
+ conversion: { typeErasedValue in
+ guard let color = typeErasedValue as? Color else {
+ return nil
+ }
+
+ return .rgba(CGFloat(color.r), CGFloat(color.g), CGFloat(color.b), CGFloat(color.a))
+ })
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift
new file mode 100644
index 0000000000..d3e81d07df
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift
@@ -0,0 +1,52 @@
+// Created by Cal Stephens on 5/17/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - OpacityAnimationModel
+
+protocol OpacityAnimationModel {
+ /// The opacity animation to apply to a `CALayer`
+ var opacity: KeyframeGroup { get }
+}
+
+// MARK: - Transform + OpacityAnimationModel
+
+extension Transform: OpacityAnimationModel { }
+
+// MARK: - ShapeTransform + OpacityAnimationModel
+
+extension ShapeTransform: OpacityAnimationModel { }
+
+// MARK: - Fill + OpacityAnimationModel
+
+extension Fill: OpacityAnimationModel { }
+
+// MARK: - GradientFill + OpacityAnimationModel
+
+extension GradientFill: OpacityAnimationModel { }
+
+// MARK: - Stroke + OpacityAnimationModel
+
+extension Stroke: OpacityAnimationModel { }
+
+// MARK: - GradientStroke + OpacityAnimationModel
+
+extension GradientStroke: OpacityAnimationModel { }
+
+extension CALayer {
+ /// Adds the opacity animation from the given `OpacityAnimationModel` to this layer
+ @nonobjc
+ func addOpacityAnimation(for opacity: OpacityAnimationModel, context: LayerAnimationContext) throws {
+ try addAnimation(
+ for: .opacity,
+ keyframes: opacity.opacity.keyframes,
+ value: {
+ // Lottie animation files express opacity as a numerical percentage value
+ // (e.g. 0%, 50%, 100%) so we divide by 100 to get the decimal values
+ // expected by Core Animation (e.g. 0.0, 0.5, 1.0).
+ $0.cgFloatValue / 100
+ },
+ context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift
new file mode 100644
index 0000000000..2dd3ff5277
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift
@@ -0,0 +1,29 @@
+// Created by Cal Stephens on 12/21/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+ /// Adds animations for the given `Rectangle` to this `CALayer`
+ @nonobjc
+ func addAnimations(
+ for rectangle: Rectangle,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: rectangle.size.keyframes,
+ value: { sizeKeyframe in
+ BezierPath.rectangle(
+ position: try rectangle.position
+ .exactlyOneKeyframe(context: context, description: "rectangle position").value.pointValue,
+ size: sizeKeyframe.sizeValue,
+ cornerRadius: try rectangle.cornerRadius
+ .exactlyOneKeyframe(context: context, description: "rectangle cornerRadius").value.cgFloatValue,
+ direction: rectangle.direction)
+ .cgPath()
+ },
+ context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift
new file mode 100644
index 0000000000..f439320c73
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift
@@ -0,0 +1,123 @@
+// Created by Cal Stephens on 1/7/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+ /// Adds a `path` animation for the given `ShapeItem`
+ @nonobjc
+ func addAnimations(for shape: ShapeItem, context: LayerAnimationContext) throws {
+ switch shape {
+ case let customShape as Shape:
+ try addAnimations(for: customShape.path, context: context)
+
+ case let combinedShape as CombinedShapeItem:
+ try addAnimations(for: combinedShape, context: context)
+
+ case let ellipse as Ellipse:
+ try addAnimations(for: ellipse, context: context)
+
+ case let rectangle as Rectangle:
+ try addAnimations(for: rectangle, context: context)
+
+ case let star as Star:
+ try addAnimations(for: star, context: context)
+
+ default:
+ // None of the other `ShapeItem` subclasses draw a `path`
+ try context.logCompatibilityIssue("Unexpected shape type \(type(of: shape))")
+ return
+ }
+ }
+
+ /// Adds a `fillColor` animation for the given `Fill` object
+ @nonobjc
+ func addAnimations(for fill: Fill, context: LayerAnimationContext) throws {
+ fillRule = fill.fillRule.caFillRule
+
+ try addAnimation(
+ for: .fillColor,
+ keyframes: fill.color.keyframes,
+ value: \.cgColorValue,
+ context: context)
+
+ try addOpacityAnimation(for: fill, context: context)
+ }
+
+ /// Adds animations for `strokeStart` and `strokeEnd` from the given `Trim` object
+ @nonobjc
+ func addAnimations(for trim: Trim, context: LayerAnimationContext) throws {
+ let (strokeStartKeyframes, strokeEndKeyframes) = trim.caShapeLayerKeyframes()
+
+ if trim.offset.keyframes.contains(where: { $0.value.cgFloatValue != 0 }) {
+ try context.logCompatibilityIssue("""
+ The CoreAnimation rendering engine doesn't support Trim offsets
+ """)
+ }
+
+ try addAnimation(
+ for: .strokeStart,
+ keyframes: strokeStartKeyframes.keyframes,
+ value: { strokeStart in
+ // Lottie animation files express stoke trims as a numerical percentage value
+ // (e.g. 25%, 50%, 100%) so we divide by 100 to get the decimal values
+ // expected by Core Animation (e.g. 0.25, 0.5, 1.0).
+ CGFloat(strokeStart.cgFloatValue) / 100
+ }, context: context)
+
+ try addAnimation(
+ for: .strokeEnd,
+ keyframes: strokeEndKeyframes.keyframes,
+ value: { strokeEnd in
+ // Lottie animation files express stoke trims as a numerical percentage value
+ // (e.g. 25%, 50%, 100%) so we divide by 100 to get the decimal values
+ // expected by Core Animation (e.g. 0.25, 0.5, 1.0).
+ CGFloat(strokeEnd.cgFloatValue) / 100
+ }, context: context)
+ }
+}
+
+extension Trim {
+
+ // MARK: Fileprivate
+
+ /// The `strokeStart` and `strokeEnd` keyframes to apply to a `CAShapeLayer`
+ /// - `CAShapeLayer` requires that `strokeStart` be less than `strokeEnd`.
+ /// - Since this isn't a requirement in the Lottie schema, there are
+ /// some animations that have `strokeStart` and `strokeEnd` flipped.
+ /// - If we detect that this is the case for this specific `Trim`, then
+ /// we swap the start/end keyframes to match what `CAShapeLayer` expects.
+ fileprivate func caShapeLayerKeyframes()
+ -> (strokeStart: KeyframeGroup, strokeEnd: KeyframeGroup)
+ {
+ if startValueIsAlwaysGreaterThanEndValue() {
+ return (strokeStart: end, strokeEnd: start)
+ } else {
+ return (strokeStart: start, strokeEnd: end)
+ }
+ }
+
+ // MARK: Private
+
+ /// Checks whether or not the value for `trim.start` is greater
+ /// than the value for every `trim.end` at every keyframe.
+ private func startValueIsAlwaysGreaterThanEndValue() -> Bool {
+ let keyframeTimes = Set(start.keyframes.map { $0.time } + end.keyframes.map { $0.time })
+
+ let startInterpolator = KeyframeInterpolator(keyframes: start.keyframes)
+ let endInterpolator = KeyframeInterpolator(keyframes: end.keyframes)
+
+ for keyframeTime in keyframeTimes {
+ guard
+ let startAtTime = startInterpolator.value(frame: keyframeTime) as? Vector1D,
+ let endAtTime = endInterpolator.value(frame: keyframeTime) as? Vector1D
+ else { continue }
+
+ if startAtTime.cgFloatValue < endAtTime.cgFloatValue {
+ return false
+ }
+ }
+
+ return true
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StarAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StarAnimation.swift
new file mode 100644
index 0000000000..b1c50ca21f
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StarAnimation.swift
@@ -0,0 +1,90 @@
+// Created by Cal Stephens on 1/10/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CAShapeLayer {
+
+ // MARK: Internal
+
+ /// Adds animations for the given `Rectangle` to this `CALayer`
+ @nonobjc
+ func addAnimations(
+ for star: Star,
+ context: LayerAnimationContext)
+ throws
+ {
+ switch star.starType {
+ case .star:
+ try addStarAnimation(for: star, context: context)
+ case .polygon:
+ try addPolygonAnimation(for: star, context: context)
+ case .none:
+ break
+ }
+ }
+
+ // MARK: Private
+
+ @nonobjc
+ private func addStarAnimation(
+ for star: Star,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: star.position.keyframes,
+ value: { position in
+ // We can only use one set of keyframes to animate a given CALayer keypath,
+ // so we currently animate `position` and ignore any other keyframes.
+ // TODO: Is there a way to support this properly?
+ BezierPath.star(
+ position: position.pointValue,
+ outerRadius: try star.outerRadius
+ .exactlyOneKeyframe(context: context, description: "outerRadius").value.cgFloatValue,
+ innerRadius: try star.innerRadius?
+ .exactlyOneKeyframe(context: context, description: "innerRadius").value.cgFloatValue ?? 0,
+ outerRoundedness: try star.outerRoundness
+ .exactlyOneKeyframe(context: context, description: "outerRoundness").value.cgFloatValue,
+ innerRoundedness: try star.innerRoundness?
+ .exactlyOneKeyframe(context: context, description: "innerRoundness").value.cgFloatValue ?? 0,
+ numberOfPoints: try star.points
+ .exactlyOneKeyframe(context: context, description: "points").value.cgFloatValue,
+ rotation: try star.rotation
+ .exactlyOneKeyframe(context: context, description: "rotation").value.cgFloatValue,
+ direction: star.direction)
+ .cgPath()
+ },
+ context: context)
+ }
+
+ @nonobjc
+ private func addPolygonAnimation(
+ for star: Star,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .path,
+ keyframes: star.position.keyframes,
+ value: { position in
+ // We can only use one set of keyframes to animate a given CALayer keypath,
+ // so we currently animate `position` and ignore any other keyframes.
+ // TODO: Is there a way to support this properly?
+ BezierPath.polygon(
+ position: position.pointValue,
+ numberOfPoints: try star.points
+ .exactlyOneKeyframe(context: context, description: "numberOfPoints").value.cgFloatValue,
+ outerRadius: try star.outerRadius
+ .exactlyOneKeyframe(context: context, description: "outerRadius").value.cgFloatValue,
+ outerRoundedness: try star.outerRoundness
+ .exactlyOneKeyframe(context: context, description: "outerRoundedness").value.cgFloatValue,
+ rotation: try star.rotation
+ .exactlyOneKeyframe(context: context, description: "rotation").value.cgFloatValue,
+ direction: star.direction)
+ .cgPath()
+ },
+ context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift
new file mode 100644
index 0000000000..290b06e96d
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift
@@ -0,0 +1,70 @@
+// Created by Cal Stephens on 2/10/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import Foundation
+import QuartzCore
+
+// MARK: - StrokeShapeItem
+
+/// A `ShapeItem` that represents a stroke
+protocol StrokeShapeItem: OpacityAnimationModel {
+ var strokeColor: KeyframeGroup? { get }
+ var width: KeyframeGroup { get }
+ var lineCap: LineCap { get }
+ var lineJoin: LineJoin { get }
+ var miterLimit: Double { get }
+ var dashPattern: [DashElement]? { get }
+}
+
+// MARK: - Stroke + StrokeShapeItem
+
+extension Stroke: StrokeShapeItem {
+ var strokeColor: KeyframeGroup? { color }
+}
+
+// MARK: - GradientStroke + StrokeShapeItem
+
+extension GradientStroke: StrokeShapeItem {
+ var strokeColor: KeyframeGroup? { nil }
+}
+
+// MARK: - CAShapeLayer + StrokeShapeItem
+
+extension CAShapeLayer {
+ /// Adds animations for properties related to the given `Stroke` object (`strokeColor`, `lineWidth`, etc)
+ @nonobjc
+ func addStrokeAnimations(for stroke: StrokeShapeItem, context: LayerAnimationContext) throws {
+ lineJoin = stroke.lineJoin.caLineJoin
+ lineCap = stroke.lineCap.caLineCap
+ miterLimit = CGFloat(stroke.miterLimit)
+
+ if let strokeColor = stroke.strokeColor {
+ try addAnimation(
+ for: .strokeColor,
+ keyframes: strokeColor.keyframes,
+ value: \.cgColorValue,
+ context: context)
+ }
+
+ try addAnimation(
+ for: .lineWidth,
+ keyframes: stroke.width.keyframes,
+ value: \.cgFloatValue,
+ context: context)
+
+ try addOpacityAnimation(for: stroke, context: context)
+
+ if let (dashPattern, dashPhase) = stroke.dashPattern?.shapeLayerConfiguration {
+ lineDashPattern = try dashPattern.map {
+ try KeyframeGroup(keyframes: $0)
+ .exactlyOneKeyframe(context: context, description: "stroke dashPattern").value.cgFloatValue as NSNumber
+ }
+
+ try addAnimation(
+ for: .lineDashPhase,
+ keyframes: dashPhase,
+ value: \.cgFloatValue,
+ context: context)
+ }
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift
new file mode 100644
index 0000000000..11a5a28ddd
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift
@@ -0,0 +1,205 @@
+// Created by Cal Stephens on 12/17/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - TransformModel
+
+/// This protocol mirrors the interface of `Transform`,
+/// but it also implemented by `ShapeTransform` to allow
+/// both transform types to share the same animation implementation.
+protocol TransformModel {
+ /// The anchor point of the transform.
+ var anchorPoint: KeyframeGroup { get }
+
+ /// The position of the transform. This is nil if the position data was split.
+ var _position: KeyframeGroup? { get }
+
+ /// The positionX of the transform. This is nil if the position property is set.
+ var _positionX: KeyframeGroup? { get }
+
+ /// The positionY of the transform. This is nil if the position property is set.
+ var _positionY: KeyframeGroup? { get }
+
+ /// The scale of the transform
+ var scale: KeyframeGroup { get }
+
+ /// The rotation of the transform. Note: This is single dimensional rotation.
+ var rotation: KeyframeGroup { get }
+}
+
+// MARK: - Transform + TransformModel
+
+extension Transform: TransformModel {
+ var _position: KeyframeGroup? { position }
+ var _positionX: KeyframeGroup? { positionX }
+ var _positionY: KeyframeGroup? { positionY }
+}
+
+// MARK: - ShapeTransform + TransformModel
+
+extension ShapeTransform: TransformModel {
+ var anchorPoint: KeyframeGroup { anchor }
+ var _position: KeyframeGroup? { position }
+ var _positionX: KeyframeGroup? { nil }
+ var _positionY: KeyframeGroup? { nil }
+}
+
+// MARK: - CALayer + TransformModel
+
+extension CALayer {
+
+ // MARK: Internal
+
+ /// Adds transform-related animations from the given `TransformModel` to this layer
+ /// - This _doesn't_ apply `transform.opacity`, which has to be handled separately
+ /// since child layers don't inherit the `opacity` of their parent.
+ @nonobjc
+ func addTransformAnimations(for transformModel: TransformModel, context: LayerAnimationContext) throws {
+ try addPositionAnimations(from: transformModel, context: context)
+ try addAnchorPointAnimation(from: transformModel, context: context)
+ try addScaleAnimations(from: transformModel, context: context)
+ try addRotationAnimation(from: transformModel, context: context)
+ }
+
+ // MARK: Private
+
+ @nonobjc
+ private func addPositionAnimations(
+ from transformModel: TransformModel,
+ context: LayerAnimationContext)
+ throws
+ {
+ if let positionKeyframes = transformModel._position?.keyframes {
+ try addAnimation(
+ for: .position,
+ keyframes: positionKeyframes,
+ value: \.pointValue,
+ context: context)
+ } else if
+ let xKeyframes = transformModel._positionX?.keyframes,
+ let yKeyframes = transformModel._positionY?.keyframes
+ {
+ try addAnimation(
+ for: .positionX,
+ keyframes: xKeyframes,
+ value: \.cgFloatValue,
+ context: context)
+
+ try addAnimation(
+ for: .positionY,
+ keyframes: yKeyframes,
+ value: \.cgFloatValue,
+ context: context)
+ } else {
+ try context.logCompatibilityIssue("""
+ `Transform` values must provide either `position` or `positionX` / `positionY` keyframes
+ """)
+ }
+ }
+
+ @nonobjc
+ private func addAnchorPointAnimation(
+ from transformModel: TransformModel,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .anchorPoint,
+ keyframes: transformModel.anchorPoint.keyframes,
+ value: { absoluteAnchorPoint in
+ guard bounds.width > 0, bounds.height > 0 else {
+ LottieLogger.shared.assertionFailure("Size must be non-zero before an animation can be played")
+ return .zero
+ }
+
+ // Lottie animation files express anchorPoint as an absolute point value,
+ // so we have to divide by the width/height of this layer to get the
+ // relative decimal values expected by Core Animation.
+ return CGPoint(
+ x: CGFloat(absoluteAnchorPoint.x) / bounds.width,
+ y: CGFloat(absoluteAnchorPoint.y) / bounds.height)
+ },
+ context: context)
+ }
+
+ @nonobjc
+ private func addScaleAnimations(
+ from transformModel: TransformModel,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .scaleX,
+ keyframes: transformModel.scale.keyframes,
+ value: { scale in
+ // Lottie animation files express scale as a numerical percentage value
+ // (e.g. 50%, 100%, 200%) so we divide by 100 to get the decimal values
+ // expected by Core Animation (e.g. 0.5, 1.0, 2.0).
+ // - Negative `scale.x` values aren't applied correctly by Core Animation.
+ // This appears to be because we animate `transform.scale.x` and `transform.scale.y`
+ // as separate `CAKeyframeAnimation`s instead of using a single animation of `transform` itself.
+ // https://openradar.appspot.com/FB9862872
+ // - To work around this, we set up a `rotationY` animation below
+ // to flip the view horizontally, which gives us the desired effect.
+ abs(CGFloat(scale.x) / 100)
+ },
+ context: context)
+
+ // When `scale.x` is negative, we have to rotate the view
+ // half way around the y axis to flip it horizontally.
+ // - We don't do this in snapshot tests because it breaks the tests
+ // in surprising ways that don't happen at runtime. Definitely not ideal.
+ if TestHelpers.snapshotTestsAreRunning {
+ if transformModel.scale.keyframes.contains(where: { $0.value.x < 0 }) {
+ LottieLogger.shared.warn("""
+ Negative `scale.x` values are not displayed correctly in snapshot tests
+ """)
+ }
+ } else {
+ try addAnimation(
+ for: .rotationY,
+ keyframes: transformModel.scale.keyframes,
+ value: { scale in
+ if scale.x < 0 {
+ return .pi
+ } else {
+ return 0
+ }
+ },
+ context: context)
+ }
+
+ try addAnimation(
+ for: .scaleY,
+ keyframes: transformModel.scale.keyframes,
+ value: { scale in
+ // Lottie animation files express scale as a numerical percentage value
+ // (e.g. 50%, 100%, 200%) so we divide by 100 to get the decimal values
+ // expected by Core Animation (e.g. 0.5, 1.0, 2.0).
+ // - Negative `scaleY` values are correctly applied (they flip the view
+ // vertically), so we don't have to apply an additional rotation animation
+ // like we do for `scaleX`.
+ CGFloat(scale.y) / 100
+ },
+ context: context)
+ }
+
+ private func addRotationAnimation(
+ from transformModel: TransformModel,
+ context: LayerAnimationContext)
+ throws
+ {
+ try addAnimation(
+ for: .rotation,
+ keyframes: transformModel.rotation.keyframes,
+ value: { rotationDegrees in
+ // Lottie animation files express rotation in degrees
+ // (e.g. 90º, 180º, 360º) so we covert to radians to get the
+ // values expected by Core Animation (e.g. π/2, π, 2π)
+ rotationDegrees.cgFloatValue * .pi / 180
+ },
+ context: context)
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift
new file mode 100644
index 0000000000..8d12356f0a
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift
@@ -0,0 +1,37 @@
+// Created by Cal Stephens on 12/21/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CALayer {
+ /// Adds an animation for the given `inTime` and `outTime` to this `CALayer`
+ @nonobjc
+ func addVisibilityAnimation(
+ inFrame: AnimationFrameTime,
+ outFrame: AnimationFrameTime,
+ context: LayerAnimationContext)
+ {
+ let animation = CAKeyframeAnimation(keyPath: #keyPath(isHidden))
+ animation.calculationMode = .discrete
+
+ animation.values = [
+ true, // hidden, before `inFrame`
+ false, // visible
+ true, // hidden, after `outFrame`
+ ]
+
+ // From the documentation of `keyTimes`:
+ // - If the calculationMode is set to discrete, the first value in the array
+ // must be 0.0 and the last value must be 1.0. The array should have one more
+ // entry than appears in the values array. For example, if there are two values,
+ // there should be three key times.
+ animation.keyTimes = [
+ NSNumber(value: 0.0),
+ NSNumber(value: max(Double(context.progressTime(for: inFrame)), 0)),
+ NSNumber(value: min(Double(context.progressTime(for: outFrame)), 1)),
+ NSNumber(value: 1.0),
+ ]
+
+ add(animation, timedWith: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CompatibilityTracker.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CompatibilityTracker.swift
new file mode 100644
index 0000000000..f08e05a9d8
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CompatibilityTracker.swift
@@ -0,0 +1,128 @@
+// Created by Cal Stephens on 5/4/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+// MARK: - CompatibilityIssue
+
+/// A compatibility issue that was encountered while setting up an animation with the Core Animation engine
+struct CompatibilityIssue: CustomStringConvertible {
+ let message: String
+ let context: String
+
+ var description: String {
+ "[\(context)] \(message)"
+ }
+}
+
+// MARK: - CompatibilityTracker
+
+/// A type that tracks whether or not an animation is compatible with the Core Animation engine
+final class CompatibilityTracker {
+
+ // MARK: Lifecycle
+
+ init(mode: Mode) {
+ self.mode = mode
+ }
+
+ // MARK: Internal
+
+ /// How compatibility issues should be handled
+ enum Mode {
+ /// When a compatibility issue is encountered, an error will be thrown immediately,
+ /// aborting the animation setup process as soon as possible.
+ case abort
+
+ /// When a compatibility issue is encountered, it is stored in `CompatibilityTracker.issues`
+ case track
+ }
+
+ enum Error: Swift.Error {
+ case encounteredCompatibilityIssue(CompatibilityIssue)
+ }
+
+ /// Records a compatibility issue that will be reported according to `CompatibilityTracker.Mode`
+ func logIssue(message: String, context: String) throws {
+ LottieLogger.shared.assert(!context.isEmpty, "Compatibility issue context is unexpectedly empty")
+
+ let issue = CompatibilityIssue(
+ // Compatibility messages are usually written in source files using multi-line strings,
+ // but converting them to be a single line makes it easier to read the ultimate log output.
+ message: message.replacingOccurrences(of: "\n", with: " "),
+ context: context)
+
+ switch mode {
+ case .abort:
+ throw CompatibilityTracker.Error.encounteredCompatibilityIssue(issue)
+ case .track:
+ issues.append(issue)
+ }
+ }
+
+ /// Asserts that a condition is true, otherwise logs a compatibility issue that will be reported
+ /// according to `CompatibilityTracker.Mode`
+ func assert(
+ _ condition: Bool,
+ _ message: @autoclosure () -> String,
+ context: @autoclosure () -> String)
+ throws
+ {
+ if !condition {
+ try logIssue(message: message(), context: context())
+ }
+ }
+
+ /// Reports the compatibility issues that were recorded when setting up the animation,
+ /// and clears the set of tracked issues.
+ func reportCompatibilityIssues(_ handler: ([CompatibilityIssue]) -> Void) {
+ handler(issues)
+ issues = []
+ }
+
+ // MARK: Private
+
+ private let mode: Mode
+
+ /// Compatibility issues encountered while setting up the animation
+ private var issues = [CompatibilityIssue]()
+
+}
+
+// MARK: - CompatibilityTrackerProviding
+
+protocol CompatibilityTrackerProviding {
+ var compatibilityTracker: CompatibilityTracker { get }
+ var compatibilityIssueContext: String { get }
+}
+
+extension CompatibilityTrackerProviding {
+ /// Records a compatibility issue that will be reported according to `CompatibilityTracker.Mode`
+ func logCompatibilityIssue(_ message: String) throws {
+ try compatibilityTracker.logIssue(message: message, context: compatibilityIssueContext)
+ }
+
+ /// Asserts that a condition is true, otherwise logs a compatibility issue that will be reported
+ /// according to `CompatibilityTracker.Mode`
+ func compatibilityAssert(
+ _ condition: Bool,
+ _ message: @autoclosure () -> String)
+ throws
+ {
+ try compatibilityTracker.assert(condition, message(), context: compatibilityIssueContext)
+ }
+}
+
+// MARK: - LayerContext + CompatibilityTrackerProviding
+
+extension LayerContext: CompatibilityTrackerProviding {
+ var compatibilityIssueContext: String {
+ layerName
+ }
+}
+
+// MARK: - LayerAnimationContext + CompatibilityTrackerProviding
+
+extension LayerAnimationContext: CompatibilityTrackerProviding {
+ var compatibilityIssueContext: String {
+ currentKeypath.fullPath
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CoreAnimationLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CoreAnimationLayer.swift
new file mode 100644
index 0000000000..05f140e59f
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/CoreAnimationLayer.swift
@@ -0,0 +1,456 @@
+// Created by Cal Stephens on 12/13/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import Foundation
+import QuartzCore
+
+// MARK: - CoreAnimationLayer
+
+/// The root `CALayer` of the Core Animation rendering engine
+final class CoreAnimationLayer: BaseAnimationLayer {
+
+ // MARK: Lifecycle
+
+ /// Initializes a `CALayer` that renders the given animation using `CAAnimation`s.
+ /// - This initializer is throwing, but will only throw when using
+ /// `CompatibilityTracker.Mode.abort`.
+ init(
+ animation: Animation,
+ imageProvider: AnimationImageProvider,
+ fontProvider: AnimationFontProvider,
+ compatibilityTrackerMode: CompatibilityTracker.Mode)
+ throws
+ {
+ self.animation = animation
+ self.imageProvider = imageProvider
+ self.fontProvider = fontProvider
+ compatibilityTracker = CompatibilityTracker(mode: compatibilityTrackerMode)
+ super.init()
+
+ setup()
+ try setupChildLayers()
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ animation = typedLayer.animation
+ currentAnimationConfiguration = typedLayer.currentAnimationConfiguration
+ imageProvider = typedLayer.imageProvider
+ fontProvider = typedLayer.fontProvider
+ didSetUpAnimation = typedLayer.didSetUpAnimation
+ compatibilityTracker = typedLayer.compatibilityTracker
+ super.init(layer: typedLayer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ /// Timing-related configuration to apply to this layer's child `CAAnimation`s
+ /// - This is effectively a configurable subset of `CAMediaTiming`
+ struct CAMediaTimingConfiguration: Equatable {
+ var autoreverses = false
+ var repeatCount: Float = 0
+ var speed: Float = 1
+ var timeOffset: TimeInterval = 0
+ }
+
+ enum PlaybackState: Equatable {
+ /// The animation is playing in real-time
+ case playing
+ /// The animation is statically displaying a specific frame
+ case paused(frame: AnimationFrameTime)
+ }
+
+ /// A closure that is called after this layer sets up its animation.
+ /// If the animation setup was unsuccessful and encountered compatibility issues,
+ /// those issues are included in this call.
+ var didSetUpAnimation: (([CompatibilityIssue]) -> Void)?
+
+ /// The `AnimationImageProvider` that `ImageLayer`s use to retrieve images,
+ /// referenced by name in the animation json.
+ var imageProvider: AnimationImageProvider {
+ didSet { reloadImages() }
+ }
+
+ /// The `FontProvider` that `TextLayer`s use to retrieve the `CTFont`
+ /// that they should use to render their text content
+ var fontProvider: AnimationFontProvider {
+ didSet { reloadFonts() }
+ }
+
+ /// Queues the animation with the given timing configuration
+ /// to begin playing at the next `display()` call.
+ /// - This batches together animations so that even if `playAnimation`
+ /// is called multiple times in the same run loop cycle, the animation
+ /// will only be set up a single time.
+ func playAnimation(
+ context: AnimationContext,
+ timingConfiguration: CAMediaTimingConfiguration,
+ playbackState: PlaybackState = .playing)
+ {
+ pendingAnimationConfiguration = (
+ animationConfiguration: .init(animationContext: context, timingConfiguration: timingConfiguration),
+ playbackState: playbackState)
+
+ setNeedsDisplay()
+ }
+
+ override func layoutSublayers() {
+ super.layoutSublayers()
+
+ // If no animation has been set up yet, display the first frame
+ // now that the layer hierarchy has been setup and laid out
+ if
+ pendingAnimationConfiguration == nil,
+ currentAnimationConfiguration == nil,
+ bounds.size != .zero
+ {
+ currentFrame = animation.frameTime(forProgress: animationProgress)
+ }
+ }
+
+ override func display() {
+ // We intentionally don't call `super.display()`, since this layer
+ // doesn't directly render any content.
+ // - This fixes an issue where certain animations would unexpectedly
+ // allocate a very large amount of memory (400mb+).
+ // - Alternatively this layer could subclass `CATransformLayer`,
+ // but this causes Core Animation to emit unnecessary logs.
+
+ if let pendingAnimationConfiguration = pendingAnimationConfiguration {
+ self.pendingAnimationConfiguration = nil
+
+ do {
+ try setupAnimation(for: pendingAnimationConfiguration.animationConfiguration)
+ } catch {
+ if case CompatibilityTracker.Error.encounteredCompatibilityIssue(let compatibilityIssue) = error {
+ // Even though the animation setup failed, we still update the layer's playback state
+ // so it can be read by the parent `AnimationView` when handling this error
+ currentPlaybackState = pendingAnimationConfiguration.playbackState
+
+ didSetUpAnimation?([compatibilityIssue])
+ return
+ }
+ }
+
+ currentPlaybackState = pendingAnimationConfiguration.playbackState
+
+ compatibilityTracker.reportCompatibilityIssues { compatibilityIssues in
+ didSetUpAnimation?(compatibilityIssues)
+ }
+ }
+ }
+
+ // MARK: Private
+
+ private struct AnimationConfiguration: Equatable {
+ let animationContext: AnimationContext
+ let timingConfiguration: CAMediaTimingConfiguration
+ }
+
+ /// The configuration for the most recent animation which has been
+ /// queued by calling `playAnimation` but not yet actually set up
+ private var pendingAnimationConfiguration: (
+ animationConfiguration: AnimationConfiguration,
+ playbackState: PlaybackState)?
+
+ /// Configuration for the animation that is currently setup in this layer
+ private var currentAnimationConfiguration: AnimationConfiguration?
+
+ /// The current progress of the placeholder `CAAnimation`,
+ /// which is also the realtime animation progress of this layer's animation
+ @objc private var animationProgress: CGFloat = 0
+
+ private let animation: Animation
+ private let valueProviderStore = ValueProviderStore()
+ private let compatibilityTracker: CompatibilityTracker
+
+ /// The current playback state of the animation that is displayed in this layer
+ private var currentPlaybackState: PlaybackState? {
+ didSet {
+ guard playbackState != oldValue else { return }
+
+ switch playbackState {
+ case .playing, nil:
+ timeOffset = 0
+ case .paused(let frame):
+ timeOffset = animation.time(forFrame: frame)
+ }
+ }
+ }
+
+ /// The current or pending playback state of the animation displayed in this layer
+ private var playbackState: PlaybackState? {
+ pendingAnimationConfiguration?.playbackState ?? currentPlaybackState
+ }
+
+ /// Context used when setting up and configuring sublayers
+ private var layerContext: LayerContext {
+ LayerContext(
+ animation: animation,
+ imageProvider: imageProvider,
+ fontProvider: fontProvider,
+ compatibilityTracker: compatibilityTracker,
+ layerName: "root layer")
+ }
+
+ private func setup() {
+ bounds = animation.bounds
+ }
+
+ private func setupChildLayers() throws {
+ try setupLayerHierarchy(
+ for: animation.layers,
+ context: layerContext)
+ }
+
+ /// Immediately builds and begins playing `CAAnimation`s for each sublayer
+ private func setupAnimation(for configuration: AnimationConfiguration) throws {
+ // Remove any existing animations from the layer hierarchy
+ removeAnimations()
+
+ currentAnimationConfiguration = configuration
+
+ let layerContext = LayerAnimationContext(
+ animation: animation,
+ timingConfiguration: configuration.timingConfiguration,
+ startFrame: configuration.animationContext.playFrom,
+ endFrame: configuration.animationContext.playTo,
+ valueProviderStore: valueProviderStore,
+ compatibilityTracker: compatibilityTracker,
+ currentKeypath: AnimationKeypath(keys: []))
+
+ // Perform a layout pass if necessary so all of the sublayers
+ // have the most up-to-date sizing information
+ layoutIfNeeded()
+
+ // Set the speed of this layer, which will be inherited
+ // by all sublayers and their animations.
+ // - This is required to support scrubbing with a speed of 0
+ speed = configuration.timingConfiguration.speed
+
+ // Setup a placeholder animation to let us track the realtime animation progress
+ setupPlaceholderAnimation(context: layerContext)
+
+ // Set up the new animations with the current `TimingConfiguration`
+ for animationLayer in sublayers ?? [] {
+ try (animationLayer as? AnimationLayer)?.setupAnimations(context: layerContext)
+ }
+ }
+
+ /// Sets up a placeholder `CABasicAnimation` that tracks the current
+ /// progress of this animation (between 0 and 1). This lets us provide
+ /// realtime animation progress via `self.currentFrame`.
+ private func setupPlaceholderAnimation(context: LayerAnimationContext) {
+ let animationProgressTracker = CABasicAnimation(keyPath: #keyPath(animationProgress))
+ animationProgressTracker.fromValue = 0
+ animationProgressTracker.toValue = 1
+
+ let timedProgressAnimation = animationProgressTracker.timed(with: context, for: self)
+ timedProgressAnimation.delegate = currentAnimationConfiguration?.animationContext.closure
+ add(timedProgressAnimation, forKey: #keyPath(animationProgress))
+ }
+
+ // Removes the current `CAAnimation`s, and rebuilds new animations
+ // using the same configuration as the previous animations.
+ private func rebuildCurrentAnimation() {
+ guard
+ let currentConfiguration = currentAnimationConfiguration,
+ let playbackState = playbackState,
+ // Don't replace any pending animations that are queued to begin
+ // on the next run loop cycle, since an existing pending animation
+ // will cause the animation to be rebuilt anyway.
+ pendingAnimationConfiguration == nil
+ else { return }
+
+ removeAnimations()
+
+ switch playbackState {
+ case .paused(let frame):
+ currentFrame = frame
+
+ case .playing:
+ playAnimation(
+ context: currentConfiguration.animationContext,
+ timingConfiguration: currentConfiguration.timingConfiguration)
+ }
+ }
+
+}
+
+// MARK: RootAnimationLayer
+
+extension CoreAnimationLayer: RootAnimationLayer {
+
+ var primaryAnimationKey: AnimationKey {
+ .specific(#keyPath(animationProgress))
+ }
+
+ var isAnimationPlaying: Bool? {
+ switch playbackState {
+ case .playing:
+ return true
+ case nil, .paused:
+ return false
+ }
+ }
+
+ var currentFrame: AnimationFrameTime {
+ get {
+ switch playbackState {
+ case .playing, nil:
+ return animation.frameTime(forProgress: (presentation() ?? self).animationProgress)
+ case .paused(let frame):
+ return frame
+ }
+ }
+ set {
+ // We can display a specific frame of the animation by setting
+ // `timeOffset` of this layer. This requires setting up the layer hierarchy
+ // with a specific configuration (speed=0, etc) at least once. But if
+ // the layer hierarchy is already set up correctly, we can update the
+ // `timeOffset` very cheaply.
+ let requiredAnimationConfiguration = AnimationConfiguration(
+ animationContext: AnimationContext(
+ playFrom: animation.startFrame,
+ playTo: animation.endFrame,
+ closure: nil),
+ timingConfiguration: CAMediaTimingConfiguration(speed: 0))
+
+ if
+ pendingAnimationConfiguration == nil,
+ currentAnimationConfiguration == requiredAnimationConfiguration
+ {
+ currentPlaybackState = .paused(frame: newValue)
+ }
+
+ else {
+ playAnimation(
+ context: requiredAnimationConfiguration.animationContext,
+ timingConfiguration: requiredAnimationConfiguration.timingConfiguration,
+ playbackState: .paused(frame: newValue))
+ }
+ }
+ }
+
+ var renderScale: CGFloat {
+ get { contentsScale }
+ set {
+ contentsScale = newValue
+
+ for sublayer in allSublayers {
+ sublayer.contentsScale = newValue
+ }
+ }
+ }
+
+ var respectAnimationFrameRate: Bool {
+ get { false }
+ set { LottieLogger.shared.assertionFailure("`respectAnimationFrameRate` is currently unsupported") }
+ }
+
+ var _animationLayers: [CALayer] {
+ (sublayers ?? []).filter { $0 is AnimationLayer }
+ }
+
+ var textProvider: AnimationTextProvider {
+ get { DictionaryTextProvider([:]) }
+ set { LottieLogger.shared.assertionFailure("`textProvider` is currently unsupported") }
+ }
+
+ func reloadImages() {
+ // When the image provider changes, we have to update all `ImageLayer`s
+ // so they can query the most up-to-date image from the new image provider.
+ for sublayer in allSublayers {
+ if let imageLayer = sublayer as? ImageLayer {
+ imageLayer.setupImage(context: layerContext)
+ }
+ }
+ }
+
+ func reloadFonts() {
+ // When the text provider changes, we have to update all `TextLayer`s
+ // so they can query the most up-to-date font from the new font provider.
+ for sublayer in allSublayers {
+ if let textLayer = sublayer as? TextLayer {
+ try? textLayer.configureRenderLayer(with: layerContext)
+ }
+ }
+ }
+
+ func forceDisplayUpdate() {
+ // Unimplemented / unused
+ }
+
+ func logHierarchyKeypaths() {
+ // Unimplemented / unused
+ }
+
+ func setValueProvider(_ valueProvider: AnyValueProvider, keypath: AnimationKeypath) {
+ valueProviderStore.setValueProvider(valueProvider, keypath: keypath)
+
+ // We need to rebuild the current animation after registering a value provider,
+ // since any existing `CAAnimation`s could now be out of date.
+ rebuildCurrentAnimation()
+ }
+
+ func getValue(for _: AnimationKeypath, atFrame _: AnimationFrameTime?) -> Any? {
+ LottieLogger.shared.assertionFailure("""
+ The Core Animation rendering engine doesn't support querying values for individual frames
+ """)
+ return nil
+ }
+
+ func getOriginalValue(for _: AnimationKeypath, atFrame _: AnimationFrameTime?) -> Any? {
+ LottieLogger.shared.assertionFailure("""
+ The Core Animation rendering engine doesn't support querying values for individual frames
+ """)
+ return nil
+ }
+
+ func layer(for _: AnimationKeypath) -> CALayer? {
+ LottieLogger.shared.assertionFailure("`AnimationKeypath`s are currently unsupported")
+ return nil
+ }
+
+ func animatorNodes(for _: AnimationKeypath) -> [AnimatorNode]? {
+ LottieLogger.shared.assertionFailure("`AnimatorNode`s are not used in this rendering implementation")
+ return nil
+ }
+
+ func removeAnimations() {
+ currentAnimationConfiguration = nil
+ currentPlaybackState = nil
+ removeAllAnimations()
+
+ for sublayer in allSublayers {
+ sublayer.removeAllAnimations()
+ }
+ }
+
+}
+
+// MARK: - CALayer + allSublayers
+
+extension CALayer {
+ /// All of the layers in the layer tree that are descendants from this later
+ @nonobjc
+ var allSublayers: [CALayer] {
+ var allSublayers: [CALayer] = []
+
+ for sublayer in sublayers ?? [] {
+ allSublayers.append(sublayer)
+ allSublayers.append(contentsOf: sublayer.allSublayers)
+ }
+
+ return allSublayers
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift
new file mode 100644
index 0000000000..5b0baf16d1
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift
@@ -0,0 +1,35 @@
+// Created by Cal Stephens on 12/15/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - CALayer + fillBoundsOfSuperlayer
+
+extension CALayer {
+ /// Updates the `bounds` of this layer to fill the bounds of its `superlayer`
+ /// without setting `frame` (which is not permitted if the layer can rotate)
+ @nonobjc
+ func fillBoundsOfSuperlayer() {
+ guard let superlayer = superlayer else { return }
+
+ if let customLayerLayer = self as? CustomLayoutLayer {
+ customLayerLayer.layout(superlayerBounds: superlayer.bounds)
+ }
+
+ else {
+ // By default the `anchorPoint` of a layer is `CGPoint(x: 0.5, y: 0.5)`.
+ // Setting it to `.zero` makes the layer have the same coordinate space
+ // as its superlayer, which lets use use `superlayer.bounds` directly.
+ anchorPoint = .zero
+
+ bounds = superlayer.bounds
+ }
+ }
+}
+
+// MARK: - CustomLayoutLayer
+
+/// A `CALayer` that sets a custom `bounds` and `anchorPoint` relative to its superlayer
+protocol CustomLayoutLayer: CALayer {
+ func layout(superlayerBounds: CGRect)
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift
new file mode 100644
index 0000000000..728a8937c7
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift
@@ -0,0 +1,37 @@
+// Created by Cal Stephens on 1/11/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+// MARK: - KeyframeGroup + exactlyOneKeyframe
+
+extension KeyframeGroup {
+ /// Retrieves the first `Keyframe` from this group,
+ /// and asserts that there are not any extra keyframes that would be ignored
+ ///
+ /// - There are several places in Lottie animation definitions where multiple
+ /// sets of keyframe timings can be provided for properties that have to
+ /// be applied to a single `CALayer` property (for example, the definition for a
+ /// `Rectangle` technically lets you animate `size`, `position`, and `cornerRadius`
+ /// separately, but these all have to be combined into a single `CAKeyframeAnimation`
+ /// on the `CAShapeLayer.path` property.
+ ///
+ /// - In those sorts of cases, we currently choose one one `KeyframeGroup` to provide the
+ /// timing information, and disallow simultaneous animations on the other properties.
+ ///
+ func exactlyOneKeyframe(
+ context: CompatibilityTrackerProviding,
+ description: String,
+ fileID _: StaticString = #fileID,
+ line _: UInt = #line)
+ throws
+ -> Keyframe
+ {
+ try context.compatibilityAssert(
+ keyframes.count == 1,
+ """
+ The Core Animation rendering engine does not support animating multiple keyframes
+ for \(description) values (due to limitations of Core Animation `CAKeyframeAnimation`s).
+ """)
+
+ return keyframes[0]
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift
new file mode 100644
index 0000000000..04237b5a28
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift
@@ -0,0 +1,61 @@
+// Created by Cal Stephens on 1/28/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+// MARK: - Keyframes
+
+enum Keyframes {
+ /// Combines the given `[KeyframeGroup]` of `Keyframe`s
+ /// into a single `KeyframeGroup` of `Keyframe<[T]>`s
+ /// if all of the `KeyframeGroup`s have the exact same animation timing
+ static func combinedIfPossible(_ groups: [KeyframeGroup]) -> KeyframeGroup<[T]>? {
+ guard
+ !groups.isEmpty,
+ groups.allSatisfy({ $0.hasSameTimingParameters(as: groups[0]) })
+ else { return nil }
+
+ var combinedKeyframes = ContiguousArray>()
+
+ for index in groups[0].keyframes.indices {
+ let baseKeyframe = groups[0].keyframes[index]
+ let combinedValues = groups.map { $0.keyframes[index].value }
+ combinedKeyframes.append(baseKeyframe.withValue(combinedValues))
+ }
+
+ return KeyframeGroup(keyframes: combinedKeyframes)
+ }
+
+ /// Combines the given `[KeyframeGroup?]` of `Keyframe`s
+ /// into a single `KeyframeGroup` of `Keyframe<[T]>`s
+ /// if all of the `KeyframeGroup`s have the exact same animation timing
+ static func combinedIfPossible(_ groups: [KeyframeGroup?]) -> KeyframeGroup<[T]>? {
+ let nonOptionalGroups = groups.compactMap { $0 }
+ guard nonOptionalGroups.count == groups.count else { return nil }
+ return combinedIfPossible(nonOptionalGroups)
+ }
+}
+
+extension KeyframeGroup {
+ /// Whether or not all of the keyframes in this `KeyframeGroup` have the same
+ /// timing parameters as the corresponding keyframe in the other given `KeyframeGroup`
+ func hasSameTimingParameters(as other: KeyframeGroup) -> Bool {
+ guard keyframes.count == other.keyframes.count else {
+ return false
+ }
+
+ return zip(keyframes, other.keyframes).allSatisfy {
+ $0.hasSameTimingParameters(as: $1)
+ }
+ }
+}
+
+extension Keyframe {
+ /// Whether or not this keyframe has the same timing parameters as the given keyframe
+ func hasSameTimingParameters(as other: Keyframe) -> Bool {
+ time == other.time
+ && isHold == other.isHold
+ && inTangent == other.inTangent
+ && outTangent == other.outTangent
+ && spatialInTangent == other.spatialInTangent
+ && spatialOutTangent == other.spatialOutTangent
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift
new file mode 100644
index 0000000000..37ae2531da
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift
@@ -0,0 +1,70 @@
+// Created by Cal Stephens on 12/14/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - AnimationLayer
+
+/// A type of `CALayer` that can be used in a Lottie animation
+/// - Layers backed by a `LayerModel` subclass should subclass `BaseCompositionLayer`
+protocol AnimationLayer: CALayer {
+ /// Instructs this layer to setup its `CAAnimation`s
+ /// using the given `LayerAnimationContext`
+ func setupAnimations(context: LayerAnimationContext) throws
+}
+
+// MARK: - LayerAnimationContext
+
+// Context describing the timing parameters of the current animation
+struct LayerAnimationContext {
+ /// The animation being played
+ let animation: Animation
+
+ /// The timing configuration that should be applied to `CAAnimation`s
+ let timingConfiguration: CoreAnimationLayer.CAMediaTimingConfiguration
+
+ /// The absolute frame number that this animation begins at
+ let startFrame: AnimationFrameTime
+
+ /// The absolute frame number that this animation ends at
+ let endFrame: AnimationFrameTime
+
+ /// The set of custom Value Providers applied to this animation
+ let valueProviderStore: ValueProviderStore
+
+ /// Information about whether or not an animation is compatible with the Core Animation engine
+ let compatibilityTracker: CompatibilityTracker
+
+ /// The AnimationKeypath represented by the current layer
+ var currentKeypath: AnimationKeypath
+
+ /// A closure that remaps the given frame in the child layer's local time to a frame
+ /// in the animation's overall global time
+ private(set) var timeRemapping: ((AnimationFrameTime) -> AnimationFrameTime) = { $0 }
+
+ /// Adds the given component string to the `AnimationKeypath` stored
+ /// that describes the current path being configured by this context value
+ func addingKeypathComponent(_ component: String) -> LayerAnimationContext {
+ var context = self
+ context.currentKeypath.keys.append(component)
+ return context
+ }
+
+ /// The `AnimationProgressTime` for the given `AnimationFrameTime` within this layer,
+ /// accounting for the `timeRemapping` applied to this layer
+ func progressTime(for frame: AnimationFrameTime) -> AnimationProgressTime {
+ animation.progressTime(forFrame: timeRemapping(frame), clamped: false)
+ }
+
+ /// Chains an additional `timeRemapping` closure onto this layer context
+ func withTimeRemapping(
+ _ additionalTimeRemapping: @escaping (AnimationFrameTime) -> AnimationFrameTime)
+ -> LayerAnimationContext
+ {
+ var copy = self
+ copy.timeRemapping = { [existingTimeRemapping = timeRemapping] time in
+ existingTimeRemapping(additionalTimeRemapping(time))
+ }
+ return copy
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift
new file mode 100644
index 0000000000..06248b20f8
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift
@@ -0,0 +1,33 @@
+// Created by Cal Stephens on 1/27/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+/// A base `CALayer` that manages the frame and animations
+/// of its `sublayers` and `mask`
+class BaseAnimationLayer: CALayer, AnimationLayer {
+
+ // MARK: Internal
+
+ override func layoutSublayers() {
+ super.layoutSublayers()
+
+ for sublayer in managedSublayers {
+ sublayer.fillBoundsOfSuperlayer()
+ }
+ }
+
+ func setupAnimations(context: LayerAnimationContext) throws {
+ for childAnimationLayer in managedSublayers {
+ try (childAnimationLayer as? AnimationLayer)?.setupAnimations(context: context)
+ }
+ }
+
+ // MARK: Private
+
+ /// All of the sublayers managed by this container
+ private var managedSublayers: [CALayer] {
+ (sublayers ?? []) + [mask].compactMap { $0 }
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift
new file mode 100644
index 0000000000..67b6bab151
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift
@@ -0,0 +1,87 @@
+// Created by Cal Stephens on 12/20/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - BaseCompositionLayer
+
+/// The base type of `AnimationLayer` that can contain other `AnimationLayer`s
+class BaseCompositionLayer: BaseAnimationLayer {
+
+ // MARK: Lifecycle
+
+ init(layerModel: LayerModel) {
+ baseLayerModel = layerModel
+ super.init()
+
+ setupSublayers()
+ compositingFilter = layerModel.blendMode.filterName
+ name = layerModel.name
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ baseLayerModel = typedLayer.baseLayerModel
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ /// Whether or not this layer render should render any visible content
+ var renderLayerContents: Bool { true }
+
+ /// Sets up the base `LayerModel` animations for this layer,
+ /// and all child `AnimationLayer`s.
+ /// - Can be overridden by subclasses, which much call `super`.
+ override func setupAnimations(context: LayerAnimationContext) throws {
+ var context = context
+ if renderLayerContents {
+ context = context.addingKeypathComponent(baseLayerModel.name)
+ }
+
+ try setupLayerAnimations(context: context)
+ try setupChildAnimations(context: context)
+ }
+
+ func setupLayerAnimations(context: LayerAnimationContext) throws {
+ let context = context.addingKeypathComponent(baseLayerModel.name)
+
+ try addTransformAnimations(for: baseLayerModel.transform, context: context)
+
+ if renderLayerContents {
+ try addOpacityAnimation(for: baseLayerModel.transform, context: context)
+
+ addVisibilityAnimation(
+ inFrame: CGFloat(baseLayerModel.inFrame),
+ outFrame: CGFloat(baseLayerModel.outFrame),
+ context: context)
+ }
+ }
+
+ func setupChildAnimations(context: LayerAnimationContext) throws {
+ try super.setupAnimations(context: context)
+ }
+
+ // MARK: Private
+
+ private let baseLayerModel: LayerModel
+
+ private func setupSublayers() {
+ if
+ renderLayerContents,
+ let masks = baseLayerModel.masks
+ {
+ mask = MaskCompositionLayer(masks: masks)
+ }
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift
new file mode 100644
index 0000000000..571605b854
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift
@@ -0,0 +1,131 @@
+// Created by Cal Stephens on 1/11/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+extension CALayer {
+ /// Sets up an `AnimationLayer` / `CALayer` hierarchy in this layer,
+ /// using the given list of layers.
+ @nonobjc
+ func setupLayerHierarchy(
+ for layers: [LayerModel],
+ context: LayerContext)
+ throws
+ {
+ // An `Animation`'s `LayerModel`s are listed from front to back,
+ // but `CALayer.sublayers` are listed from back to front.
+ // We reverse the layer ordering to match what Core Animation expects.
+ // The final view hierarchy must display the layers in this exact order.
+ let layersInZAxisOrder = layers.reversed()
+
+ let layersByIndex = Dictionary(grouping: layersInZAxisOrder, by: \.index)
+ .compactMapValues(\.first)
+
+ /// Layers specify a `parent` layer. Child layers inherit the `transform` of their parent.
+ /// - We can't add the child as a sublayer of the parent `CALayer`, since that would
+ /// break the ordering specified in `layersInZAxisOrder`.
+ /// - Instead, we create an invisible `TransformLayer` to handle the parent
+ /// transform animations, and add the child layer to that `TransformLayer`.
+ func makeParentTransformLayer(
+ childLayerModel: LayerModel,
+ childLayer: CALayer,
+ name: (LayerModel) -> String)
+ -> CALayer
+ {
+ guard
+ let parentIndex = childLayerModel.parent,
+ let parentLayerModel = layersByIndex[parentIndex]
+ else { return childLayer }
+
+ let parentLayer = TransformLayer(layerModel: parentLayerModel)
+ parentLayer.name = name(parentLayerModel)
+ parentLayer.addSublayer(childLayer)
+
+ return makeParentTransformLayer(
+ childLayerModel: parentLayerModel,
+ childLayer: parentLayer,
+ name: name)
+ }
+
+ // Create an `AnimationLayer` for each `LayerModel`
+ for (layerModel, maskLayerModel) in try layersInZAxisOrder.pairedLayersAndMasks(context: context) {
+ guard let layer = try layerModel.makeAnimationLayer(context: context) else {
+ continue
+ }
+
+ // If this layer has a `parent`, we create an invisible `TransformLayer`
+ // to handle displaying / animating the parent transform.
+ let parentTransformLayer = makeParentTransformLayer(
+ childLayerModel: layerModel,
+ childLayer: layer,
+ name: { parentLayerModel in
+ "\(layerModel.name) (parent, \(parentLayerModel.name))"
+ })
+
+ // Create the `mask` layer for this layer, if it has a `MatteType`
+ if
+ let maskLayerModel = maskLayerModel,
+ let maskLayer = try maskLayerModel.makeAnimationLayer(context: context)
+ {
+ let maskParentTransformLayer = makeParentTransformLayer(
+ childLayerModel: maskLayerModel,
+ childLayer: maskLayer,
+ name: { parentLayerModel in
+ "\(maskLayerModel.name) (mask of \(layerModel.name)) (parent, \(parentLayerModel.name))"
+ })
+
+ // Set up a parent container to host both the layer
+ // and its mask in the same coordinate space
+ let maskContainer = BaseAnimationLayer()
+ maskContainer.name = "\(layerModel.name) (parent, masked)"
+ maskContainer.addSublayer(parentTransformLayer)
+
+ // Core Animation will silently fail to apply a mask if a `mask` layer
+ // itself _also_ has a `mask`. As a workaround, we can wrap this layer's
+ // mask in an additional container layer which never has its own `mask`.
+ let additionalMaskParent = BaseAnimationLayer()
+ additionalMaskParent.addSublayer(maskParentTransformLayer)
+ maskContainer.mask = additionalMaskParent
+
+ addSublayer(maskContainer)
+ }
+
+ else {
+ addSublayer(parentTransformLayer)
+ }
+ }
+ }
+
+}
+
+extension Collection where Element == LayerModel {
+ /// Pairs each `LayerModel` within this array with
+ /// a `LayerModel` to use as its mask, if applicable
+ /// based on the layer's `MatteType` configuration.
+ /// - Assumes the layers are sorted in z-axis order.
+ fileprivate func pairedLayersAndMasks(context: LayerContext) throws -> [(layer: LayerModel, mask: LayerModel?)] {
+ var layersAndMasks = [(layer: LayerModel, mask: LayerModel?)]()
+ var unprocessedLayers = reversed()
+
+ while let layer = unprocessedLayers.popLast() {
+ /// If a layer has a `MatteType`, then the next layer will be used as its `mask`
+ if
+ let matteType = layer.matte,
+ matteType != .none,
+ let maskLayer = unprocessedLayers.popLast()
+ {
+ try context.compatibilityAssert(
+ matteType == .add,
+ "The Core Animation rendering engine currently only supports `MatteMode.add`.")
+
+ layersAndMasks.append((layer: layer, mask: maskLayer))
+ }
+
+ else {
+ layersAndMasks.append((layer: layer, mask: nil))
+ }
+ }
+
+ return layersAndMasks
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift
new file mode 100644
index 0000000000..0238811ba5
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift
@@ -0,0 +1,87 @@
+// Created by Cal Stephens on 1/10/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - GradientRenderLayer
+
+/// A `CAGradientLayer` subclass used to render a gradient _outside_ the normal layer bounds
+///
+/// - `GradientFill.startPoint` and `GradientFill.endPoint` are expressed
+/// with respect to the `bounds` of the `ShapeItemLayer`.
+///
+/// - The gradient itself is supposed to be rendered infinitely in all directions
+/// (e.g. including outside of `bounds`). This is because `ShapeItemLayer` paths
+/// don't necessarily sit within the layer's `bounds`.
+///
+/// - To support this, `GradientRenderLayer` tracks a `gradientReferenceBounds`
+/// that `startPoint` / `endPoint` are calculated relative to.
+/// The _actual_ `bounds` of this layer is padded by a large amount so that
+/// the gradient can be drawn outside of the `gradientReferenceBounds`.
+///
+final class GradientRenderLayer: CAGradientLayer {
+
+ // MARK: Internal
+
+ /// The reference bounds within this layer that the gradient's
+ /// `startPoint` and `endPoint` should be calculated relative to
+ var gradientReferenceBounds: CGRect = .zero {
+ didSet {
+ if oldValue != gradientReferenceBounds {
+ updateLayout()
+ }
+ }
+ }
+
+ /// Converts the given `CGPoint` within `gradientReferenceBounds`
+ /// to a percentage value relative to the full `bounds` of this layer
+ /// - This converts absolute `startPoint` and `endPoint` values into
+ /// the percent-based values expected by Core Animation,
+ /// with respect to the custom bounds geometry used by this layer type.
+ func percentBasedPointInBounds(from referencePoint: CGPoint) -> CGPoint {
+ guard bounds.width > 0, bounds.height > 0 else {
+ LottieLogger.shared.assertionFailure("Size must be non-zero before an animation can be played")
+ return .zero
+ }
+
+ let pointInBounds = CGPoint(
+ x: referencePoint.x + gradientPadding,
+ y: referencePoint.y + gradientPadding)
+
+ return CGPoint(
+ x: CGFloat(pointInBounds.x) / bounds.width,
+ y: CGFloat(pointInBounds.y) / bounds.height)
+ }
+
+ // MARK: Private
+
+ /// Extra padding around the `gradientReferenceBounds` where the gradient is also rendered
+ /// - This specific value is arbitrary and can be increased if necessary.
+ /// Theoretically this should be "infinite", to match the behavior of
+ /// `CGContext.drawLinearGradient` with `[.drawsAfterEndLocation, .drawsBeforeStartLocation]`.
+ private let gradientPadding: CGFloat = 2_000
+
+ private func updateLayout() {
+ anchorPoint = .zero
+
+ bounds = CGRect(
+ x: gradientReferenceBounds.origin.x,
+ y: gradientReferenceBounds.origin.y,
+ width: gradientPadding + gradientReferenceBounds.width + gradientPadding,
+ height: gradientPadding + gradientReferenceBounds.height + gradientPadding)
+
+ transform = CATransform3DMakeTranslation(
+ -gradientPadding,
+ -gradientPadding,
+ 0)
+ }
+
+}
+
+// MARK: CustomLayoutLayer
+
+extension GradientRenderLayer: CustomLayoutLayer {
+ func layout(superlayerBounds: CGRect) {
+ gradientReferenceBounds = superlayerBounds
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ImageLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ImageLayer.swift
new file mode 100644
index 0000000000..98350f0454
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ImageLayer.swift
@@ -0,0 +1,79 @@
+// Created by Cal Stephens on 1/10/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - ImageLayer
+
+/// The `CALayer` type responsible for rendering `ImageLayerModel`s
+final class ImageLayer: BaseCompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(
+ imageLayer: ImageLayerModel,
+ context: LayerContext)
+ {
+ self.imageLayer = imageLayer
+ super.init(layerModel: imageLayer)
+ setupImage(context: context)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ imageLayer = typedLayer.imageLayer
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ func setupImage(context: LayerContext) {
+ guard
+ let imageAsset = context.animation.assetLibrary?.imageAssets[imageLayer.referenceID],
+ let image = context.imageProvider.imageForAsset(asset: imageAsset)
+ else {
+ self.imageAsset = nil
+ contents = nil
+ return
+ }
+
+ self.imageAsset = imageAsset
+ contents = image
+ setNeedsLayout()
+ }
+
+ // MARK: Private
+
+ private let imageLayer: ImageLayerModel
+ private var imageAsset: ImageAsset?
+
+}
+
+// MARK: CustomLayoutLayer
+
+extension ImageLayer: CustomLayoutLayer {
+ func layout(superlayerBounds: CGRect) {
+ anchorPoint = .zero
+
+ guard let imageAsset = imageAsset else {
+ bounds = superlayerBounds
+ return
+ }
+
+ // Image layers specifically need to use the size of the image itself
+ bounds = CGRect(
+ x: superlayerBounds.origin.x,
+ y: superlayerBounds.origin.y,
+ width: CGFloat(imageAsset.width),
+ height: CGFloat(imageAsset.height))
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift
new file mode 100644
index 0000000000..7a2b47e15e
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift
@@ -0,0 +1,60 @@
+// Created by Cal Stephens on 12/20/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - LayerContext
+
+/// Context available when constructing an `AnimationLayer`
+struct LayerContext {
+ let animation: Animation
+ let imageProvider: AnimationImageProvider
+ let fontProvider: AnimationFontProvider
+ let compatibilityTracker: CompatibilityTracker
+ var layerName: String
+
+ func forLayer(_ layer: LayerModel) -> LayerContext {
+ var context = self
+ context.layerName = layer.name
+ return context
+ }
+}
+
+// MARK: - LayerModel + makeAnimationLayer
+
+extension LayerModel {
+ /// Constructs an `AnimationLayer` / `CALayer` that represents this `LayerModel`
+ func makeAnimationLayer(context: LayerContext) throws -> BaseCompositionLayer? {
+ let context = context.forLayer(self)
+
+ switch (type, self) {
+ case (.precomp, let preCompLayerModel as PreCompLayerModel):
+ let preCompLayer = PreCompLayer(preCompLayer: preCompLayerModel)
+ try preCompLayer.setup(context: context)
+ return preCompLayer
+
+ case (.solid, let solidLayerModel as SolidLayerModel):
+ return SolidLayer(solidLayerModel)
+
+ case (.shape, let shapeLayerModel as ShapeLayerModel):
+ return try ShapeLayer(shapeLayer: shapeLayerModel, context: context)
+
+ case (.image, let imageLayerModel as ImageLayerModel):
+ return ImageLayer(imageLayer: imageLayerModel, context: context)
+
+ case (.text, let textLayerModel as TextLayerModel):
+ return try TextLayer(textLayerModel: textLayerModel, context: context)
+
+ case (.null, _):
+ return TransformLayer(layerModel: self)
+
+ default:
+ try context.logCompatibilityIssue("""
+ Unexpected layer type combination ("\(type)" and "\(Swift.type(of: self))")
+ """)
+
+ return nil
+ }
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift
new file mode 100644
index 0000000000..8663bd5eae
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift
@@ -0,0 +1,104 @@
+// Created by Cal Stephens on 1/6/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - MaskCompositionLayer
+
+/// The CALayer type responsible for rendering the `Mask` of a `BaseCompositionLayer`
+final class MaskCompositionLayer: CALayer {
+
+ // MARK: Lifecycle
+
+ init(masks: [Mask]) {
+ maskLayers = masks.map(MaskLayer.init(mask:))
+ super.init()
+
+ for maskLayer in maskLayers {
+ addSublayer(maskLayer)
+ }
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ maskLayers = typedLayer.maskLayers
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ override func layoutSublayers() {
+ super.layoutSublayers()
+
+ for sublayer in sublayers ?? [] {
+ sublayer.fillBoundsOfSuperlayer()
+ }
+ }
+
+ // MARK: Private
+
+ private let maskLayers: [MaskLayer]
+
+}
+
+// MARK: AnimationLayer
+
+extension MaskCompositionLayer: AnimationLayer {
+ func setupAnimations(context: LayerAnimationContext) throws {
+ for maskLayer in maskLayers {
+ try maskLayer.setupAnimations(context: context)
+ }
+ }
+}
+
+// MARK: - MaskLayer
+
+extension MaskCompositionLayer {
+ final class MaskLayer: CAShapeLayer {
+
+ // MARK: Lifecycle
+
+ init(mask: Mask) {
+ maskModel = mask
+ super.init()
+ fillColor = .rgb(0, 0, 0)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ maskModel = typedLayer.maskModel
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Private
+
+ private let maskModel: Mask
+
+ }
+}
+
+// MARK: - MaskCompositionLayer.MaskLayer + AnimationLayer
+
+extension MaskCompositionLayer.MaskLayer: AnimationLayer {
+ func setupAnimations(context: LayerAnimationContext) throws {
+ try addAnimations(for: maskModel.shape, context: context)
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift
new file mode 100644
index 0000000000..ee10d9f807
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift
@@ -0,0 +1,140 @@
+// Created by Cal Stephens on 12/14/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - PreCompLayer
+
+/// The `CALayer` type responsible for rendering `PreCompLayerModel`s
+final class PreCompLayer: BaseCompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(preCompLayer: PreCompLayerModel) {
+ self.preCompLayer = preCompLayer
+ super.init(layerModel: preCompLayer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ preCompLayer = typedLayer.preCompLayer
+ timeRemappingInterpolator = typedLayer.timeRemappingInterpolator
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ /// Post-init setup for `PreCompLayer`s.
+ /// Should always be called after `PreCompLayer.init(preCompLayer:)`.
+ ///
+ /// This is a workaround for a hard-to-reproduce crash that was
+ /// triggered when `PreCompLayer.init` was called reentantly. We didn't
+ /// have any consistent repro steps for this crash (it happened 100% of
+ /// the time for some testers, and 0% of the time for other testers),
+ /// but moving this code out of `PreCompLayer.init` does seem to fix it.
+ ///
+ /// The stack trace looked like:
+ /// - `_os_unfair_lock_recursive_abort`
+ /// - `-[CALayerAccessibility__UIKit__QuartzCore dealloc]`
+ /// - `PreCompLayer.__allocating_init(preCompLayer:context:)` <- reentrant init call
+ /// - ...
+ /// - `CALayer.setupLayerHierarchy(for:context:)`
+ /// - `PreCompLayer.init(preCompLayer:context:)`
+ ///
+ func setup(context: LayerContext) throws {
+ if let timeRemappingKeyframes = preCompLayer.timeRemapping {
+ timeRemappingInterpolator = try .timeRemapping(keyframes: timeRemappingKeyframes, context: context)
+ } else {
+ timeRemappingInterpolator = nil
+ }
+
+ try setupLayerHierarchy(
+ for: context.animation.assetLibrary?.precompAssets[preCompLayer.referenceID]?.layers ?? [],
+ context: context)
+ }
+
+ override func setupAnimations(context: LayerAnimationContext) throws {
+ var context = context
+ context = context.addingKeypathComponent(preCompLayer.name)
+ try setupLayerAnimations(context: context)
+
+ // Precomp layers can adjust the local time of their child layers (relative to the
+ // animation's global time) via `timeRemapping` or a custom `startTime`
+ let contextForChildren = context.withTimeRemapping { [preCompLayer, timeRemappingInterpolator] layerLocalFrame in
+ if let timeRemappingInterpolator = timeRemappingInterpolator {
+ return timeRemappingInterpolator.value(frame: layerLocalFrame) as? AnimationFrameTime ?? layerLocalFrame
+ } else {
+ return layerLocalFrame + AnimationFrameTime(preCompLayer.startTime)
+ }
+ }
+
+ try setupChildAnimations(context: contextForChildren)
+ }
+
+ // MARK: Private
+
+ private let preCompLayer: PreCompLayerModel
+ private var timeRemappingInterpolator: KeyframeInterpolator?
+
+}
+
+// MARK: CustomLayoutLayer
+
+extension PreCompLayer: CustomLayoutLayer {
+ func layout(superlayerBounds: CGRect) {
+ anchorPoint = .zero
+
+ // Pre-comp layers use a size specified in the layer model,
+ // and clip the composition to that bounds
+ bounds = CGRect(
+ x: superlayerBounds.origin.x,
+ y: superlayerBounds.origin.y,
+ width: CGFloat(preCompLayer.width),
+ height: CGFloat(preCompLayer.height))
+
+ masksToBounds = true
+ }
+}
+
+extension KeyframeInterpolator where ValueType == AnimationFrameTime {
+ /// A `KeyframeInterpolator` for the given `timeRemapping` keyframes
+ static func timeRemapping(
+ keyframes timeRemappingKeyframes: KeyframeGroup,
+ context: LayerContext)
+ throws
+ -> KeyframeInterpolator
+ {
+ try context.logCompatibilityIssue("""
+ The Core Animation rendering engine partially supports time remapping keyframes,
+ but this is somewhat experimental and has some known issues. Since it doesn't work
+ in all cases, we have to fall back to using the main thread engine when using
+ `RenderingEngineOption.automatic`.
+ """)
+
+ // `timeRemapping` is a mapping from the animation's global time to the layer's local time.
+ // In the Core Animation engine, we need to perform the opposite calculation -- convert
+ // the layer's local time into the animation's global time. We can get this by inverting
+ // the time remapping, swapping the x axis (global time) and the y axis (local time).
+ let localTimeToGlobalTimeMapping = timeRemappingKeyframes.keyframes.map { keyframe in
+ Keyframe(
+ value: keyframe.time,
+ time: keyframe.value.cgFloatValue * CGFloat(context.animation.framerate),
+ isHold: keyframe.isHold,
+ inTangent: keyframe.inTangent,
+ outTangent: keyframe.outTangent,
+ spatialInTangent: keyframe.spatialInTangent,
+ spatialOutTangent: keyframe.spatialOutTangent)
+ }
+
+ return KeyframeInterpolator(keyframes: .init(localTimeToGlobalTimeMapping))
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift
new file mode 100644
index 0000000000..9c3d54415e
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift
@@ -0,0 +1,257 @@
+// Created by Cal Stephens on 12/13/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - ShapeItemLayer
+
+/// A CALayer type that renders an array of `[ShapeItem]`s,
+/// from a `Group` in a `ShapeLayerModel`.
+final class ShapeItemLayer: BaseAnimationLayer {
+
+ // MARK: Lifecycle
+
+ /// Initializes a `ShapeItemLayer` that renders a `Group` from a `ShapeLayerModel`
+ /// - Parameters:
+ /// - shape: The `ShapeItem` in this group that renders a `GGPath`
+ /// - otherItems: Other items in this group that affect the appearance of the shape
+ init(shape: Item, otherItems: [Item], context: LayerContext) throws {
+ self.shape = shape
+ self.otherItems = otherItems
+
+ try context.compatibilityAssert(
+ shape.item.drawsCGPath,
+ "`ShapeItemLayer` must contain exactly one `ShapeItem` that draws a `GPPath`")
+
+ try context.compatibilityAssert(
+ !otherItems.contains(where: { $0.item.drawsCGPath }),
+ "`ShapeItemLayer` must contain exactly one `ShapeItem` that draws a `GPPath`")
+
+ super.init()
+
+ setupLayerHierarchy()
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ shape = typedLayer.shape
+ otherItems = typedLayer.otherItems
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ /// An item that can be displayed by this layer
+ struct Item {
+ /// A `ShapeItem` that should be rendered by this layer
+ let item: ShapeItem
+
+ /// The group that contains this `ShapeItem`, if applicable
+ let parentGroup: Group?
+ }
+
+ override func setupAnimations(context: LayerAnimationContext) throws {
+ try super.setupAnimations(context: context)
+
+ guard let sublayerConfiguration = sublayerConfiguration else { return }
+
+ switch sublayerConfiguration.fill {
+ case .solidFill(let shapeLayer):
+ try setupSolidFillAnimations(shapeLayer: shapeLayer, context: context)
+
+ case .gradientFill(let gradientLayers):
+ try setupGradientFillAnimations(
+ gradientLayer: gradientLayers.gradientLayer,
+ maskLayer: gradientLayers.maskLayer,
+ context: context)
+ }
+
+ if let gradientStrokeConfiguration = sublayerConfiguration.gradientStroke {
+ try setupGradientStrokeAnimations(
+ gradientLayer: gradientStrokeConfiguration.gradientLayer,
+ maskLayer: gradientStrokeConfiguration.maskLayer,
+ context: context)
+ }
+ }
+
+ // MARK: Private
+
+ private struct GradientLayers {
+ /// The `CALayer` that renders the actual gradient
+ let gradientLayer: GradientRenderLayer
+ /// The `CAShapeLayer` that clips the gradient layer to the expected shape
+ let maskLayer: CAShapeLayer
+ }
+
+ /// The configuration of this layer's `fill` sublayers
+ private enum FillLayerConfiguration {
+ /// This layer displays a single `CAShapeLayer`
+ case solidFill(CAShapeLayer)
+
+ /// This layer displays a `GradientRenderLayer` masked by a `CAShapeLayer`.
+ case gradientFill(GradientLayers)
+ }
+
+ /// The `ShapeItem` in this group that renders a `GGPath`
+ private let shape: Item
+
+ /// Other items in this group that affect the appearance of the shape
+ private let otherItems: [Item]
+
+ /// The current configuration of this layer's sublayer(s)
+ private var sublayerConfiguration: (fill: FillLayerConfiguration, gradientStroke: GradientLayers?)?
+
+ private func setupLayerHierarchy() {
+ // We have to build a different layer hierarchy depending on if
+ // we're rendering a gradient (a `CAGradientLayer` masked by a `CAShapeLayer`)
+ // or a solid shape (a simple `CAShapeLayer`).
+ let fillLayerConfiguration: FillLayerConfiguration
+ if otherItems.contains(where: { $0.item is GradientFill }) {
+ fillLayerConfiguration = setupGradientFillLayerHierarchy()
+ } else {
+ fillLayerConfiguration = setupSolidFillLayerHierarchy()
+ }
+
+ let gradientStrokeConfiguration: GradientLayers?
+ if otherItems.contains(where: { $0.item is GradientStroke }) {
+ gradientStrokeConfiguration = setupGradientStrokeLayerHierarchy()
+ } else {
+ gradientStrokeConfiguration = nil
+ }
+
+ sublayerConfiguration = (fillLayerConfiguration, gradientStrokeConfiguration)
+ }
+
+ private func setupSolidFillLayerHierarchy() -> FillLayerConfiguration {
+ let shapeLayer = LottieCAShapeLayer()
+ addSublayer(shapeLayer)
+
+ // `CAShapeLayer.fillColor` defaults to black, so we have to
+ // nil out the background color if there isn't an expected fill color
+ if !otherItems.contains(where: { $0.item is Fill }) {
+ shapeLayer.fillColor = nil
+ }
+
+ return .solidFill(shapeLayer)
+ }
+
+ private func setupGradientFillLayerHierarchy() -> FillLayerConfiguration {
+ let pathMask = LottieCAShapeLayer()
+ pathMask.fillColor = .rgb(0, 0, 0)
+ mask = pathMask
+
+ let gradientLayer = GradientRenderLayer()
+ addSublayer(gradientLayer)
+
+ return .gradientFill(.init(gradientLayer: gradientLayer, maskLayer: pathMask))
+ }
+
+ private func setupGradientStrokeLayerHierarchy() -> GradientLayers {
+ let container = BaseAnimationLayer()
+
+ let pathMask = LottieCAShapeLayer()
+ pathMask.fillColor = nil
+ pathMask.strokeColor = .rgb(0, 0, 0)
+ container.mask = pathMask
+
+ let gradientLayer = GradientRenderLayer()
+ container.addSublayer(gradientLayer)
+ addSublayer(container)
+
+ return .init(gradientLayer: gradientLayer, maskLayer: pathMask)
+ }
+
+ private func setupSolidFillAnimations(
+ shapeLayer: CAShapeLayer,
+ context: LayerAnimationContext)
+ throws
+ {
+ try shapeLayer.addAnimations(for: shape.item, context: context.for(shape))
+
+ if let (fill, context) = otherItems.first(Fill.self, context: context) {
+ try shapeLayer.addAnimations(for: fill, context: context)
+ }
+
+ if let (stroke, context) = otherItems.first(Stroke.self, context: context) {
+ try shapeLayer.addStrokeAnimations(for: stroke, context: context)
+ }
+
+ if let (trim, context) = otherItems.first(Trim.self, context: context) {
+ try shapeLayer.addAnimations(for: trim, context: context)
+ }
+ }
+
+ private func setupGradientFillAnimations(
+ gradientLayer: GradientRenderLayer,
+ maskLayer: CAShapeLayer,
+ context: LayerAnimationContext)
+ throws
+ {
+ try maskLayer.addAnimations(for: shape.item, context: context.for(shape))
+
+ if let (gradientFill, context) = otherItems.first(GradientFill.self, context: context) {
+ try gradientLayer.addGradientAnimations(for: gradientFill, context: context)
+ }
+ }
+
+ private func setupGradientStrokeAnimations(
+ gradientLayer: GradientRenderLayer,
+ maskLayer: CAShapeLayer,
+ context: LayerAnimationContext)
+ throws
+ {
+ try maskLayer.addAnimations(for: shape.item, context: context.for(shape))
+
+ if let (gradientStroke, context) = otherItems.first(GradientStroke.self, context: context) {
+ try gradientLayer.addGradientAnimations(for: gradientStroke, context: context)
+ try maskLayer.addStrokeAnimations(for: gradientStroke, context: context)
+ }
+
+ if let (trim, context) = otherItems.first(Trim.self, context: context) {
+ try maskLayer.addAnimations(for: trim, context: context)
+ }
+ }
+
+}
+
+// MARK: - [ShapeItem] helpers
+
+extension Array where Element == ShapeItemLayer.Item {
+ /// The first `ShapeItem` in this array of the given type
+ func first(
+ _: ItemType.Type, context: LayerAnimationContext)
+ -> (item: ItemType, context: LayerAnimationContext)?
+ {
+ for item in self {
+ if let match = item.item as? ItemType {
+ return (match, context.for(item))
+ }
+ }
+
+ return nil
+ }
+}
+
+extension LayerAnimationContext {
+ /// An updated `LayerAnimationContext` with the`AnimationKeypath`
+ /// that refers to this specific `ShapeItem`.
+ func `for`(_ item: ShapeItemLayer.Item) -> LayerAnimationContext {
+ var context = self
+
+ if let group = item.parentGroup {
+ context.currentKeypath.keys.append(group.name)
+ }
+
+ context.currentKeypath.keys.append(item.item.name)
+ return context
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift
new file mode 100644
index 0000000000..a997ea85cc
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift
@@ -0,0 +1,305 @@
+// Created by Cal Stephens on 12/14/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - ShapeLayer
+
+/// The CALayer type responsible for rendering `ShapeLayerModel`s
+final class ShapeLayer: BaseCompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(shapeLayer: ShapeLayerModel, context: LayerContext) throws {
+ self.shapeLayer = shapeLayer
+ super.init(layerModel: shapeLayer)
+ try setupGroups(from: shapeLayer.items, parentGroup: nil, context: context)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ shapeLayer = typedLayer.shapeLayer
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Private
+
+ private let shapeLayer: ShapeLayerModel
+
+}
+
+// MARK: - GroupLayer
+
+/// The CALayer type responsible for rendering `Group`s
+final class GroupLayer: BaseAnimationLayer {
+
+ // MARK: Lifecycle
+
+ init(group: Group, inheritedItems: [ShapeItemLayer.Item], context: LayerContext) throws {
+ self.group = group
+ self.inheritedItems = inheritedItems
+ super.init()
+ try setupLayerHierarchy(context: context)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ group = typedLayer.group
+ inheritedItems = typedLayer.inheritedItems
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ override func setupAnimations(context: LayerAnimationContext) throws {
+ try super.setupAnimations(context: context)
+
+ if let (shapeTransform, context) = nonGroupItems.first(ShapeTransform.self, context: context) {
+ try addTransformAnimations(for: shapeTransform, context: context)
+ try addOpacityAnimation(for: shapeTransform, context: context)
+ }
+ }
+
+ // MARK: Private
+
+ private let group: Group
+
+ /// `ShapeItem`s that were listed in the parent's `items: [ShapeItem]` array
+ /// - This layer's parent is either the root `ShapeLayerModel` or some other `Group`
+ private let inheritedItems: [ShapeItemLayer.Item]
+
+ /// `ShapeItem`s (other than nested `Group`s) that are included in this group
+ private lazy var nonGroupItems = group.items
+ .filter { !($0 is Group) }
+ .map { ShapeItemLayer.Item(item: $0, parentGroup: group) }
+ + inheritedItems
+
+ private func setupLayerHierarchy(context: LayerContext) throws {
+ // Groups can contain other groups, so we may have to continue
+ // recursively creating more `GroupLayer`s
+ try setupGroups(from: group.items, parentGroup: group, context: context)
+
+ // Create `ShapeItemLayer`s for each subgroup of shapes that should be rendered as a single unit
+ // - These groups are listed from front-to-back, so we have to add the sublayers in reverse order
+ for shapeRenderGroup in nonGroupItems.shapeRenderGroups.reversed() {
+ // If all of the path-drawing `ShapeItem`s have keyframes with the same timing information,
+ // we can combine the `[KeyframeGroup]` (which have to animate in separate layers)
+ // into a single `KeyframeGroup<[BezierPath]>`, which can be combined into a single CGPath animation.
+ //
+ // This is how Groups with multiple path-drawing items are supposed to be rendered,
+ // because combining multiple paths into a single `CGPath` (instead of rendering them in separate layers)
+ // allows `CAShapeLayerFillRule.evenOdd` to be applied if the paths overlap. We just can't do this
+ // in all cases, due to limitations of Core Animation.
+ if
+ shapeRenderGroup.pathItems.count > 1,
+ let combinedShapeKeyframes = Keyframes.combinedIfPossible(
+ shapeRenderGroup.pathItems.map { ($0.item as? Shape)?.path }),
+ // `Trim`s are currently only applied correctly using individual `ShapeItemLayer`s,
+ // because each path has to be trimmed separately.
+ !shapeRenderGroup.otherItems.contains(where: { $0.item is Trim })
+ {
+ let combinedShape = CombinedShapeItem(
+ shapes: combinedShapeKeyframes,
+ name: group.name)
+
+ let sublayer = try ShapeItemLayer(
+ shape: ShapeItemLayer.Item(item: combinedShape, parentGroup: group),
+ otherItems: shapeRenderGroup.otherItems,
+ context: context)
+
+ addSublayer(sublayer)
+ }
+
+ // Otherwise, if each `ShapeItem` that draws a `GGPath` animates independently,
+ // we have to create a separate `ShapeItemLayer` for each one.
+ else {
+ for pathDrawingItem in shapeRenderGroup.pathItems {
+ let sublayer = try ShapeItemLayer(
+ shape: pathDrawingItem,
+ otherItems: shapeRenderGroup.otherItems,
+ context: context)
+
+ addSublayer(sublayer)
+ }
+ }
+ }
+ }
+
+}
+
+extension CALayer {
+ /// Sets up `GroupLayer`s for each `Group` in the given list of `ShapeItem`s
+ /// - Each `Group` item becomes its own `GroupLayer` sublayer.
+ /// - Other `ShapeItem` are applied to all sublayers
+ fileprivate func setupGroups(from items: [ShapeItem], parentGroup: Group?, context: LayerContext) throws {
+ let (groupItems, otherItems) = items.grouped(by: { $0 is Group })
+
+ // Groups are listed from front to back,
+ // but `CALayer.sublayers` are listed from back to front.
+ let groupsInZAxisOrder = groupItems.reversed()
+
+ for group in groupsInZAxisOrder {
+ guard let group = group as? Group else { continue }
+
+ // `ShapeItem`s either draw a path, or modify how a path is rendered.
+ // - If this group doesn't have any items that draw a path, then its
+ // items are applied to all of this groups children.
+ let inheritedItems: [ShapeItemLayer.Item]
+ if !otherItems.contains(where: { $0.drawsCGPath }) {
+ inheritedItems = otherItems.map {
+ ShapeItemLayer.Item(item: $0, parentGroup: parentGroup)
+ }
+ } else {
+ inheritedItems = []
+ }
+
+ let groupLayer = try GroupLayer(
+ group: group,
+ inheritedItems: inheritedItems,
+ context: context)
+
+ addSublayer(groupLayer)
+ }
+ }
+}
+
+extension ShapeItem {
+ /// Whether or not this `ShapeItem` is responsible for rendering a `CGPath`
+ var drawsCGPath: Bool {
+ switch type {
+ case .ellipse, .rectangle, .shape, .star:
+ return true
+
+ case .fill, .gradientFill, .group, .gradientStroke, .merge,
+ .repeater, .round, .stroke, .trim, .transform, .unknown:
+ return false
+ }
+ }
+
+ /// Whether or not this `ShapeItem` provides a fill for a set of shapes
+ var isFill: Bool {
+ switch type {
+ case .fill, .gradientFill:
+ return true
+
+ case .ellipse, .rectangle, .shape, .star, .group, .gradientStroke,
+ .merge, .repeater, .round, .stroke, .trim, .transform, .unknown:
+ return false
+ }
+ }
+
+ /// Whether or not this `ShapeItem` provides a stroke for a set of shapes
+ var isStroke: Bool {
+ switch type {
+ case .stroke, .gradientStroke:
+ return true
+
+ case .ellipse, .rectangle, .shape, .star, .group, .gradientFill,
+ .merge, .repeater, .round, .fill, .trim, .transform, .unknown:
+ return false
+ }
+ }
+}
+
+extension Collection {
+ /// Splits this collection into two groups, based on the given predicate
+ func grouped(by predicate: (Element) -> Bool) -> (trueElements: [Element], falseElements: [Element]) {
+ var trueElements = [Element]()
+ var falseElements = [Element]()
+
+ for element in self {
+ if predicate(element) {
+ trueElements.append(element)
+ } else {
+ falseElements.append(element)
+ }
+ }
+
+ return (trueElements, falseElements)
+ }
+}
+
+// MARK: - ShapeRenderGroup
+
+/// A group of `ShapeItem`s that should be rendered together as a single unit
+struct ShapeRenderGroup {
+ /// The items in this group that render `CGPath`s
+ var pathItems: [ShapeItemLayer.Item] = []
+ /// Shape items that modify the appearance of the shapes rendered by this group
+ var otherItems: [ShapeItemLayer.Item] = []
+}
+
+extension Array where Element == ShapeItemLayer.Item {
+ /// Splits this list of `ShapeItem`s into groups that should be rendered together as individual units
+ var shapeRenderGroups: [ShapeRenderGroup] {
+ var renderGroups = [ShapeRenderGroup()]
+
+ for item in self {
+ // `renderGroups` is non-empty, so is guaranteed to have a valid end index
+ let lastIndex = renderGroups.indices.last!
+
+ if item.item.drawsCGPath {
+ renderGroups[lastIndex].pathItems.append(item)
+ }
+
+ // `Fill` items are unique, because they specifically only apply to _previous_ shapes in a `Group`
+ // - For example, with [Rectangle, Fill(Red), Circle, Fill(Blue)], the Rectangle should be Red
+ // but the Circle should be Blue.
+ // - To handle this, we create a new `ShapeRenderGroup` when we encounter a `Fill` item
+ else if item.item.isFill {
+ renderGroups[lastIndex].otherItems.append(item)
+ renderGroups.append(ShapeRenderGroup())
+ }
+
+ // Other items in the list are applied to all subgroups
+ else {
+ for index in renderGroups.indices {
+ renderGroups[index].otherItems.append(item)
+ }
+ }
+ }
+
+ // `Fill` and `Stroke` items have an `alpha` property that can be animated separately,
+ // but each layer only has a single `opacity` property, so we have to create
+ // separate layers / render groups for each of these if necessary.
+ return renderGroups.flatMap { group -> [ShapeRenderGroup] in
+ let (strokesAndFills, otherItems) = group.otherItems.grouped(by: { $0.item.isFill || $0.item.isStroke })
+
+ // However, if all of the strokes / fills have the exact same opacity animation configuration,
+ // then we can continue using a single layer / render group.
+ let allAlphaAnimationsAreIdentical = strokesAndFills.allSatisfy { item in
+ (item.item as? OpacityAnimationModel)?.opacity
+ == (strokesAndFills.first?.item as? OpacityAnimationModel)?.opacity
+ }
+
+ if allAlphaAnimationsAreIdentical {
+ return [group]
+ }
+
+ // Create a new group for each stroke / fill
+ return strokesAndFills.map { strokeOrFill in
+ ShapeRenderGroup(
+ pathItems: group.pathItems,
+ otherItems: [strokeOrFill] + otherItems)
+ }
+ }
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/SolidLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/SolidLayer.swift
new file mode 100644
index 0000000000..c2be2550e8
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/SolidLayer.swift
@@ -0,0 +1,47 @@
+// Created by Cal Stephens on 12/13/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - SolidLayer
+
+final class SolidLayer: BaseCompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(_ solidLayer: SolidLayerModel) {
+ self.solidLayer = solidLayer
+ super.init(layerModel: solidLayer)
+ setupContentLayer()
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ solidLayer = typedLayer.solidLayer
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Private
+
+ private let solidLayer: SolidLayerModel
+
+ private func setupContentLayer() {
+ // Render the fill color in a child `CAShapeLayer`
+ // - Using a `CAShapeLayer` specifically, instead of a `CALayer` with a `backgroundColor`,
+ // allows the size of the fill shape to be different from `contentsLayer.size`.
+ let shapeLayer = LottieCAShapeLayer()
+ shapeLayer.fillColor = solidLayer.colorHex.cgColor
+ shapeLayer.path = CGPath(rect: .init(x: 0, y: 0, width: solidLayer.width, height: solidLayer.height), transform: nil)
+ addSublayer(shapeLayer)
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TextLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TextLayer.swift
new file mode 100644
index 0000000000..28fecbbb45
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TextLayer.swift
@@ -0,0 +1,91 @@
+// Created by Cal Stephens on 2/9/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+/// The `CALayer` type responsible for rendering `TextLayer`s
+final class TextLayer: BaseCompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(
+ textLayerModel: TextLayerModel,
+ context: LayerContext)
+ throws
+ {
+ self.textLayerModel = textLayerModel
+ super.init(layerModel: textLayerModel)
+ setupSublayers()
+ try configureRenderLayer(with: context)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ /// Called by CoreAnimation to create a shadow copy of this layer
+ /// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ override init(layer: Any) {
+ guard let typedLayer = layer as? Self else {
+ fatalError("\(Self.self).init(layer:) incorrectly called with \(type(of: layer))")
+ }
+
+ textLayerModel = typedLayer.textLayerModel
+ super.init(layer: typedLayer)
+ }
+
+ // MARK: Internal
+
+ func configureRenderLayer(with context: LayerContext) throws {
+ // We can't use `CATextLayer`, because it doesn't support enough features we use.
+ // Instead, we use the same `CoreTextRenderLayer` (with a custom `draw` implementation)
+ // used by the Main Thread rendering engine. This means the Core Animation engine can't
+ // _animate_ text properties, but it can display static text without any issues.
+ let text = try textLayerModel.text.exactlyOneKeyframe(context: context, description: "text layer text").value
+
+ // The Core Animation engine doesn't currently support `TextAnimator`s.
+ // - We could add support for animating the transform-related properties without much trouble.
+ // - We may be able to support animating `fillColor` by getting clever with layer blend modes
+ // or masks (e.g. use `CoreTextRenderLayer` to draw black glyphs, and then fill them in
+ // using a `CAShapeLayer`).
+ if !textLayerModel.animators.isEmpty {
+ try context.logCompatibilityIssue("""
+ The Core Animation rendering engine currently doesn't support text animators.
+ """)
+ }
+
+ renderLayer.text = text.text
+ renderLayer.font = context.fontProvider.fontFor(family: text.fontFamily, size: CGFloat(text.fontSize))
+
+ renderLayer.alignment = text.justification.textAlignment
+ renderLayer.lineHeight = CGFloat(text.lineHeight)
+ renderLayer.tracking = (CGFloat(text.fontSize) * CGFloat(text.tracking)) / 1000
+
+ renderLayer.fillColor = text.fillColorData?.cgColorValue
+ renderLayer.strokeColor = text.strokeColorData?.cgColorValue
+ renderLayer.strokeWidth = CGFloat(text.strokeWidth ?? 0)
+ renderLayer.strokeOnTop = text.strokeOverFill ?? false
+
+ renderLayer.preferredSize = text.textFrameSize?.sizeValue
+ renderLayer.sizeToFit()
+
+ renderLayer.transform = CATransform3DIdentity
+ renderLayer.position = text.textFramePosition?.pointValue ?? .zero
+ }
+
+ // MARK: Private
+
+ private let textLayerModel: TextLayerModel
+ private let renderLayer = CoreTextRenderLayer()
+
+ private func setupSublayers() {
+ // Place the text render layer in an additional container
+ // - Direct sublayers of a `BaseCompositionLayer` always fill the bounds
+ // of their superlayer -- so this container will be the bounds of self,
+ // and the text render layer can be positioned anywhere.
+ let textContainerLayer = CALayer()
+ textContainerLayer.addSublayer(renderLayer)
+ addSublayer(textContainerLayer)
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TransformLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TransformLayer.swift
new file mode 100644
index 0000000000..027739a447
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/Layers/TransformLayer.swift
@@ -0,0 +1,11 @@
+// Created by Cal Stephens on 12/21/21.
+// Copyright © 2021 Airbnb Inc. All rights reserved.
+
+/// The CALayer type responsible for only rendering the `transform` of a `LayerModel`
+final class TransformLayer: BaseCompositionLayer {
+
+ /// `TransformLayer`s don't render any visible content,
+ /// they just `transform` their sublayers
+ override var renderLayerContents: Bool { false }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/ValueProviderStore.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/ValueProviderStore.swift
new file mode 100644
index 0000000000..a3d4aecf90
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/CoreAnimation/ValueProviderStore.swift
@@ -0,0 +1,127 @@
+// Created by Cal Stephens on 1/13/22.
+// Copyright © 2022 Airbnb Inc. All rights reserved.
+
+import QuartzCore
+
+// MARK: - ValueProviderStore
+
+/// Registration and storage for `AnyValueProvider`s that can dynamically
+/// provide custom values for `AnimationKeypath`s within an `Animation`.
+final class ValueProviderStore {
+
+ // MARK: Internal
+
+ /// Registers an `AnyValueProvider` for the given `AnimationKeypath`
+ func setValueProvider(_ valueProvider: AnyValueProvider, keypath: AnimationKeypath) {
+ LottieLogger.shared.assert(
+ valueProvider.typeErasedStorage.isSupportedByCoreAnimationRenderingEngine,
+ """
+ The Core Animation rendering engine doesn't support Value Providers that vend a closure,
+ because that would require calling the closure on the main thread once per frame.
+ """)
+
+ // TODO: Support more value types
+ LottieLogger.shared.assert(
+ keypath.keys.last == PropertyName.color.rawValue,
+ "The Core Animation rendering engine currently only supports customizing color values")
+
+ valueProviders.append((keypath: keypath, valueProvider: valueProvider))
+ }
+
+ // Retrieves the custom value keyframes for the given property,
+ // if an `AnyValueProvider` was registered for the given keypath.
+ func customKeyframes(
+ of customizableProperty: CustomizableProperty,
+ for keypath: AnimationKeypath,
+ context: LayerAnimationContext)
+ throws
+ -> KeyframeGroup?
+ {
+ guard let anyValueProvider = valueProvider(for: keypath) else {
+ return nil
+ }
+
+ // Retrieve the type-erased keyframes from the custom `ValueProvider`
+ let typeErasedKeyframes: [Keyframe]
+ switch anyValueProvider.typeErasedStorage {
+ case .singleValue(let typeErasedValue):
+ typeErasedKeyframes = [Keyframe(typeErasedValue)]
+
+ case .keyframes(let keyframes, _):
+ typeErasedKeyframes = keyframes
+
+ case .closure:
+ try context.logCompatibilityIssue("""
+ The Core Animation rendering engine doesn't support Value Providers that vend a closure,
+ because that would require calling the closure on the main thread once per frame.
+ """)
+ return nil
+ }
+
+ // Convert the type-erased keyframe values using this `CustomizableProperty`'s conversion closure
+ let typedKeyframes = typeErasedKeyframes.compactMap { typeErasedKeyframe -> Keyframe? in
+ guard let convertedValue = customizableProperty.conversion(typeErasedKeyframe.value) else {
+ LottieLogger.shared.assertionFailure("""
+ Could not convert value of type \(type(of: typeErasedKeyframe.value)) to expected type \(Value.self)
+ """)
+ return nil
+ }
+
+ return typeErasedKeyframe.withValue(convertedValue)
+ }
+
+ // Verify that all of the keyframes were successfully converted to the expected type
+ guard typedKeyframes.count == typeErasedKeyframes.count else {
+ return nil
+ }
+
+ return KeyframeGroup(keyframes: ContiguousArray(typedKeyframes))
+ }
+
+ // MARK: Private
+
+ private var valueProviders = [(keypath: AnimationKeypath, valueProvider: AnyValueProvider)]()
+
+ /// Retrieves the most-recently-registered Value Provider that matches the given keypat
+ private func valueProvider(for keypath: AnimationKeypath) -> AnyValueProvider? {
+ // Find the last keypath matching the given keypath,
+ // so we return the value provider that was registered most-recently
+ valueProviders.last(where: { registeredKeypath, _ in
+ keypath.matches(registeredKeypath)
+ })?.valueProvider
+ }
+
+}
+
+extension AnyValueProviderStorage {
+ /// Whether or not this type of value provider is supported
+ /// by the new Core Animation rendering engine
+ var isSupportedByCoreAnimationRenderingEngine: Bool {
+ switch self {
+ case .singleValue, .keyframes:
+ return true
+ case .closure:
+ return false
+ }
+ }
+}
+
+extension AnimationKeypath {
+ /// Whether or not this keypath from the animation hierarchy
+ /// matches the given keypath (which may contain wildcards)
+ func matches(_ keypath: AnimationKeypath) -> Bool {
+ var regex = "^" // match the start of the string
+ + keypath.keys.joined(separator: "\\.") // match this keypath, escaping "." characters
+ + "$" // match the end of the string
+
+ // ** wildcards match anything
+ // - "**.Color" matches both "Layer 1.Color" and "Layer 1.Layer 2.Color"
+ regex = regex.replacingOccurrences(of: "**", with: ".+")
+
+ // * wildcards match any individual path component
+ // - "*.Color" matches "Layer 1.Color" but not "Layer 1.Layer 2.Color"
+ regex = regex.replacingOccurrences(of: "*", with: "[^.]+")
+
+ return fullPath.range(of: regex, options: .regularExpression) != nil
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.cpp
new file mode 100644
index 0000000000..e4fca1e328
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.cpp
@@ -0,0 +1,29 @@
+#include "CompositionLayer.hpp"
+
+#include "Lottie/Public/Primitives/RenderTree.hpp"
+
+namespace lottie {
+
+InvertedMatteLayer::InvertedMatteLayer(std::shared_ptr inputMatte) :
+_inputMatte(inputMatte) {
+ setBounds(inputMatte->bounds());
+ setNeedsDisplay(true);
+
+ addSublayer(_inputMatte);
+}
+
+void InvertedMatteLayer::setup() {
+ _inputMatte->setLayerDelegate(shared_from_base());
+}
+
+void InvertedMatteLayer::frameUpdated(double frame) {
+ setNeedsDisplay(true);
+}
+
+std::shared_ptr makeInvertedMatteLayer(std::shared_ptr compositionLayer) {
+ auto result = std::make_shared(compositionLayer);
+ result->setup();
+ return result;
+}
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp
new file mode 100644
index 0000000000..df28991e4e
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp
@@ -0,0 +1,217 @@
+#ifndef CompositionLayer_hpp
+#define CompositionLayer_hpp
+
+#include "Lottie/Public/Primitives/Vectors.hpp"
+#include "Lottie/Public/Primitives/CALayer.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.hpp"
+#include "Lottie/Private/Model/Layers/LayerModel.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/Utility/LayerTransformNode.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/CompositionLayerDelegate.hpp"
+
+#include
+
+namespace lottie {
+
+class CompositionLayer;
+class InvertedMatteLayer;
+
+/// A layer that inverses the alpha output of its input layer.
+class InvertedMatteLayer: public CALayer, public CompositionLayerDelegate {
+public:
+ InvertedMatteLayer(std::shared_ptr inputMatte);
+
+ void setup();
+
+ std::shared_ptr _inputMatte;
+ //let wrapperLayer = CALayer()
+
+ virtual void frameUpdated(double frame) override;
+ /*virtual bool implementsDraw() const override;
+ virtual void draw(std::shared_ptr const &context) override;*/
+ //virtual std::shared_ptr renderableItem() override;
+
+ virtual bool isInvertedMatte() const override {
+ return true;
+ }
+};
+
+std::shared_ptr makeInvertedMatteLayer(std::shared_ptr compositionLayer);
+
+/// The base class for a child layer of CompositionContainer
+class CompositionLayer: public CALayer, public KeypathSearchable {
+public:
+ CompositionLayer(std::shared_ptr const &layer, Vector2D size) {
+ _contentsLayer = std::make_shared();
+
+ _transformNode = std::make_shared(layer->transform);
+
+ if (layer->masks.has_value()) {
+ _maskLayer = std::make_shared(layer->masks.value());
+ } else {
+ _maskLayer = nullptr;
+ }
+
+ _matteType = layer->matte;
+
+ _inFrame = layer->inFrame;
+ _outFrame = layer->outFrame;
+ _timeStretch = layer->timeStretch();
+ _startFrame = layer->startTime;
+ if (layer->name.has_value()) {
+ _keypathName = layer->name.value();
+ } else {
+ _keypathName = "Layer";
+ }
+
+ _childKeypaths.push_back(_transformNode->transformProperties());
+
+ _contentsLayer->setBounds(CGRect(0.0, 0.0, size.x, size.y));
+
+ if (layer->blendMode.has_value() && layer->blendMode.value() != BlendMode::Normal) {
+ setCompositingFilter(layer->blendMode);
+ }
+
+ addSublayer(_contentsLayer);
+
+ if (_maskLayer) {
+ _contentsLayer->setMask(_maskLayer);
+ }
+ }
+
+ virtual std::string keypathName() const override {
+ return _keypathName;
+ }
+
+ virtual std::map> keypathProperties() const override {
+ return {};
+ }
+
+ virtual std::shared_ptr keypathLayer() const override {
+ return _contentsLayer;
+ }
+
+ void displayWithFrame(double frame, bool forceUpdates) {
+ _transformNode->updateTree(frame, forceUpdates);
+ bool layerVisible = isInRangeOrEqual(frame, _inFrame, _outFrame);
+ /// Only update contents if current time is within the layers time bounds.
+ if (layerVisible) {
+ displayContentsWithFrame(frame, forceUpdates);
+ if (_maskLayer) {
+ _maskLayer->updateWithFrame(frame, forceUpdates);
+ }
+ }
+ _contentsLayer->setTransform(_transformNode->globalTransform());
+ _contentsLayer->setOpacity(_transformNode->opacity());
+ _contentsLayer->setIsHidden(!layerVisible);
+
+ if (const auto delegate = _layerDelegate.lock()) {
+ delegate->frameUpdated(frame);
+ }
+ }
+
+ virtual void displayContentsWithFrame(double frame, bool forceUpdates) {
+ /// To be overridden by subclass
+ }
+
+
+ virtual std::vector> const &childKeypaths() const override {
+ return _childKeypaths;
+ }
+
+ std::shared_ptr _matteLayer;
+ void setMatteLayer(std::shared_ptr matteLayer) {
+ _matteLayer = matteLayer;
+ if (matteLayer) {
+ if (_matteType.has_value() && _matteType.value() == MatteType::Invert) {
+ setMask(makeInvertedMatteLayer(matteLayer));
+ } else {
+ setMask(matteLayer);
+ }
+ } else {
+ setMask(nullptr);
+ }
+ }
+
+ std::weak_ptr const &layerDelegate() const {
+ return _layerDelegate;
+ }
+ void setLayerDelegate(std::weak_ptr const &layerDelegate) {
+ _layerDelegate = layerDelegate;
+ }
+
+ std::shared_ptr const &contentsLayer() const {
+ return _contentsLayer;
+ }
+
+ std::shared_ptr const &maskLayer() const {
+ return _maskLayer;
+ }
+ void setMaskLayer(std::shared_ptr const &maskLayer) {
+ _maskLayer = maskLayer;
+ }
+
+ std::optional const &matteType() const {
+ return _matteType;
+ }
+
+ double inFrame() const {
+ return _inFrame;
+ }
+ double outFrame() const {
+ return _outFrame;
+ }
+ double startFrame() const {
+ return _startFrame;
+ }
+ double timeStretch() const {
+ return _timeStretch;
+ }
+
+ virtual std::shared_ptr renderTreeNode() {
+ return nullptr;
+ }
+
+public:
+ std::shared_ptr const transformNode() const {
+ return _transformNode;
+ }
+
+protected:
+ std::shared_ptr _contentsLayer;
+ std::optional _matteType;
+
+private:
+ std::weak_ptr _layerDelegate;
+
+ std::shared_ptr _transformNode;
+
+ std::shared_ptr _maskLayer;
+
+ double _inFrame = 0.0;
+ double _outFrame = 0.0;
+ double _startFrame = 0.0;
+ double _timeStretch = 0.0;
+
+ // MARK: Keypath Searchable
+
+ std::string _keypathName;
+
+ //std::shared_ptr _renderTree;
+
+public:
+ virtual bool isImageCompositionLayer() const {
+ return false;
+ }
+
+ virtual bool isTextCompositionLayer() const {
+ return false;
+ }
+
+protected:
+ std::vector> _childKeypaths;
+};
+
+}
+
+#endif /* CompositionLayer_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift
new file mode 100644
index 0000000000..0c647bf907
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift
@@ -0,0 +1,164 @@
+//
+// LayerContainer.swift
+// lottie-swift
+//
+// Created by Brandon Withrow on 1/22/19.
+//
+
+import Foundation
+import QuartzCore
+
+protocol LottieDrawingLayer: CALayer {
+}
+
+// MARK: - CompositionLayer
+
+/// The base class for a child layer of CompositionContainer
+class CompositionLayer: CALayer, KeypathSearchable {
+
+ // MARK: Lifecycle
+
+ init(layer: LayerModel, size: CGSize) {
+ transformNode = LayerTransformNode(transform: layer.transform)
+ if let masks = layer.masks {
+ maskLayer = MaskContainerLayer(masks: masks)
+ } else {
+ maskLayer = nil
+ }
+ matteType = layer.matte
+ inFrame = layer.inFrame.cgFloat
+ outFrame = layer.outFrame.cgFloat
+ timeStretch = layer.timeStretch.cgFloat
+ startFrame = layer.startTime.cgFloat
+ keypathName = layer.name
+ childKeypaths = [transformNode.transformProperties]
+ super.init()
+ anchorPoint = .zero
+ actions = [
+ "opacity" : NSNull(),
+ "transform" : NSNull(),
+ "bounds" : NSNull(),
+ "anchorPoint" : NSNull(),
+ "sublayerTransform" : NSNull(),
+ ]
+
+ contentsLayer.anchorPoint = .zero
+ contentsLayer.bounds = CGRect(origin: .zero, size: size)
+ contentsLayer.actions = [
+ "opacity" : NSNull(),
+ "transform" : NSNull(),
+ "bounds" : NSNull(),
+ "anchorPoint" : NSNull(),
+ "sublayerTransform" : NSNull(),
+ "hidden" : NSNull(),
+ ]
+ compositingFilter = layer.blendMode.filterName
+ addSublayer(contentsLayer)
+
+ if let maskLayer = maskLayer {
+ contentsLayer.mask = maskLayer
+ }
+
+ name = layer.name
+ }
+
+ override init(layer: Any) {
+ /// Used for creating shadow model layers. Read More here: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ guard let layer = layer as? CompositionLayer else {
+ fatalError("Wrong Layer Class")
+ }
+ transformNode = layer.transformNode
+ matteType = layer.matteType
+ inFrame = layer.inFrame
+ outFrame = layer.outFrame
+ timeStretch = layer.timeStretch
+ startFrame = layer.startFrame
+ keypathName = layer.keypathName
+ childKeypaths = [transformNode.transformProperties]
+ maskLayer = nil
+ super.init(layer: layer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ weak var layerDelegate: CompositionLayerDelegate?
+
+ let transformNode: LayerTransformNode
+
+ let contentsLayer = CALayer()
+
+ let maskLayer: MaskContainerLayer?
+
+ let matteType: MatteType?
+
+ let inFrame: CGFloat
+ let outFrame: CGFloat
+ let startFrame: CGFloat
+ let timeStretch: CGFloat
+
+ // MARK: Keypath Searchable
+
+ let keypathName: String
+
+ final var childKeypaths: [KeypathSearchable]
+
+ var renderScale: CGFloat = 1 {
+ didSet {
+ updateRenderScale()
+ }
+ }
+
+ var matteLayer: CompositionLayer? {
+ didSet {
+ if let matte = matteLayer {
+ if let type = matteType, type == .invert {
+ mask = InvertedMatteLayer(inputMatte: matte)
+ } else {
+ mask = matte
+ }
+ } else {
+ mask = nil
+ }
+ }
+ }
+
+ var keypathProperties: [String: AnyNodeProperty] {
+ [:]
+ }
+
+ var keypathLayer: CALayer? {
+ contentsLayer
+ }
+
+ final func displayWithFrame(frame: CGFloat, forceUpdates: Bool) {
+ transformNode.updateTree(frame, forceUpdates: forceUpdates)
+ let layerVisible = frame.isInRangeOrEqual(inFrame, outFrame)
+ /// Only update contents if current time is within the layers time bounds.
+ if layerVisible {
+ displayContentsWithFrame(frame: frame, forceUpdates: forceUpdates)
+ maskLayer?.updateWithFrame(frame: frame, forceUpdates: forceUpdates)
+ }
+ contentsLayer.transform = transformNode.globalTransform
+ contentsLayer.opacity = transformNode.opacity
+ contentsLayer.isHidden = !layerVisible
+ layerDelegate?.frameUpdated(frame: frame)
+ }
+
+ func displayContentsWithFrame(frame _: CGFloat, forceUpdates _: Bool) {
+ /// To be overridden by subclass
+ }
+
+ func updateRenderScale() {
+ contentsScale = renderScale
+ }
+}
+
+// MARK: - CompositionLayerDelegate
+
+protocol CompositionLayerDelegate: AnyObject {
+ func frameUpdated(frame: CGFloat)
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayerDelegate.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayerDelegate.hpp
new file mode 100644
index 0000000000..59b05a3426
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayerDelegate.hpp
@@ -0,0 +1,13 @@
+#ifndef CompositionLayerDelegate_hpp
+#define CompositionLayerDelegate_hpp
+
+namespace lottie {
+
+class CompositionLayerDelegate {
+public:
+ virtual void frameUpdated(double frame) = 0;
+};
+
+}
+
+#endif /* CompositionLayerDelegate_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.cpp
new file mode 100644
index 0000000000..ad3b669b24
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.cpp
@@ -0,0 +1,5 @@
+#include "ImageCompositionLayer.hpp"
+
+namespace lottie {
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.hpp
new file mode 100644
index 0000000000..8b9d709245
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.hpp
@@ -0,0 +1,42 @@
+#ifndef ImageCompositionLayer_hpp
+#define ImageCompositionLayer_hpp
+
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp"
+#include "Lottie/Private/Model/Layers/ImageLayerModel.hpp"
+
+namespace lottie {
+
+class ImageCompositionLayer: public CompositionLayer {
+public:
+ ImageCompositionLayer(std::shared_ptr const &imageLayer, Vector2D const &size) :
+ CompositionLayer(imageLayer, size) {
+ _imageReferenceID = imageLayer->referenceID;
+
+ contentsLayer()->setMasksToBounds(true);
+ }
+
+ std::shared_ptr image() {
+ return _image;
+ }
+ void setImage(std::shared_ptr image) {
+ _image = image;
+ contentsLayer()->setContents(image);
+ }
+
+ std::string const &imageReferenceID() {
+ return _imageReferenceID;
+ }
+
+public:
+ virtual bool isImageCompositionLayer() const override {
+ return true;
+ }
+
+private:
+ std::string _imageReferenceID;
+ std::shared_ptr _image;
+};
+
+}
+
+#endif /* ImageCompositionLayer_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift
new file mode 100644
index 0000000000..b1be98001d
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift
@@ -0,0 +1,50 @@
+//
+// ImageCompositionLayer.swift
+// lottie-swift
+//
+// Created by Brandon Withrow on 1/25/19.
+//
+
+import CoreGraphics
+import Foundation
+import QuartzCore
+
+final class ImageCompositionLayer: CompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(imageLayer: ImageLayerModel, size: CGSize) {
+ imageReferenceID = imageLayer.referenceID
+ super.init(layer: imageLayer, size: size)
+ contentsLayer.masksToBounds = true
+ contentsLayer.contentsGravity = CALayerContentsGravity.resize
+ }
+
+ override init(layer: Any) {
+ /// Used for creating shadow model layers. Read More here: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ guard let layer = layer as? ImageCompositionLayer else {
+ fatalError("init(layer:) Wrong Layer Class")
+ }
+ imageReferenceID = layer.imageReferenceID
+ image = nil
+ super.init(layer: layer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ let imageReferenceID: String
+
+ var image: CGImage? = nil {
+ didSet {
+ if let image = image {
+ contentsLayer.contents = image
+ } else {
+ contentsLayer.contents = nil
+ }
+ }
+ }
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.cpp
new file mode 100644
index 0000000000..398d52d57c
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.cpp
@@ -0,0 +1,5 @@
+#include "MaskContainerLayer.hpp"
+
+namespace lottie {
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.hpp
new file mode 100644
index 0000000000..069bf5c63b
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.hpp
@@ -0,0 +1,176 @@
+#ifndef MaskContainerLayer_hpp
+#define MaskContainerLayer_hpp
+
+#include "Lottie/Private/Model/Objects/Mask.hpp"
+#include "Lottie/Public/Primitives/CALayer.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.hpp"
+
+namespace lottie {
+
+inline MaskMode usableMaskMode(MaskMode mode) {
+ switch (mode) {
+ case MaskMode::Add:
+ return MaskMode::Add;
+ case MaskMode::Subtract:
+ return MaskMode::Subtract;
+ case MaskMode::Intersect:
+ return MaskMode::Intersect;
+ case MaskMode::Lighten:
+ return MaskMode::Add;
+ case MaskMode::Darken:
+ return MaskMode::Darken;
+ case MaskMode::Difference:
+ return MaskMode::Intersect;
+ case MaskMode::None:
+ return MaskMode::None;
+ }
+}
+
+class MaskNodeProperties: public NodePropertyMap {
+public:
+ MaskNodeProperties(std::shared_ptr const &mask) :
+ _mode(mask->mode()),
+ _inverted(mask->inverted) {
+ _opacity = std::make_shared>(std::make_shared>(mask->opacity->keyframes));
+ _shape = std::make_shared>(std::make_shared>(mask->shape.keyframes));
+ _expansion = std::make_shared>(std::make_shared>(mask->expansion->keyframes));
+
+ _propertyMap.insert(std::make_pair("Opacity", _opacity));
+ _propertyMap.insert(std::make_pair("Shape", _shape));
+ _propertyMap.insert(std::make_pair("Expansion", _expansion));
+
+ for (const auto &it : _propertyMap) {
+ _properties.push_back(it.second);
+ }
+ }
+
+ virtual std::vector> &properties() override {
+ return _properties;
+ }
+
+ virtual std::vector> const &childKeypaths() const override {
+ return _childKeypaths;
+ }
+
+ std::shared_ptr> const &opacity() const {
+ return _opacity;
+ }
+
+ std::shared_ptr> const &shape() const {
+ return _shape;
+ }
+
+ std::shared_ptr> const &expansion() const {
+ return _expansion;
+ }
+
+ MaskMode mode() const {
+ return _mode;
+ }
+
+ bool inverted() const {
+ return _inverted;
+ }
+
+private:
+ std::map> _propertyMap;
+ std::vector> _childKeypaths;
+
+ std::vector> _properties;
+
+ MaskMode _mode = MaskMode::Add;
+ bool _inverted = false;
+
+ std::shared_ptr> _opacity;
+ std::shared_ptr> _shape;
+ std::shared_ptr> _expansion;
+};
+
+class MaskLayer: public CALayer {
+public:
+ MaskLayer(std::shared_ptr const &mask) :
+ _properties(mask) {
+ _maskLayer = std::make_shared();
+
+ addSublayer(_maskLayer);
+
+ if (mask->mode() == MaskMode::Add) {
+ _maskLayer->setFillColor(Color(1.0, 0.0, 0.0, 1.0));
+ } else {
+ _maskLayer->setFillColor(Color(0.0, 1.0, 0.0, 1.0));
+ }
+ _maskLayer->setFillRule(FillRule::EvenOdd);
+ }
+
+ void updateWithFrame(double frame, bool forceUpdates) {
+ if (_properties.opacity()->needsUpdate(frame) || forceUpdates) {
+ _properties.opacity()->update(frame);
+ setOpacity(_properties.opacity()->value().value);
+ }
+
+ if (_properties.shape()->needsUpdate(frame) || forceUpdates) {
+ _properties.shape()->update(frame);
+ _properties.expansion()->update(frame);
+
+ auto path = _properties.shape()->value().cgPath();
+ auto usableMode = usableMaskMode(_properties.mode());
+ if ((usableMode == MaskMode::Subtract && !_properties.inverted()) ||
+ (usableMode == MaskMode::Add && _properties.inverted())) {
+ /// Add a bounds rect to invert the mask
+ auto newPath = CGPath::makePath();
+ newPath->addRect(CGRect::veryLarge());
+ newPath->addPath(path);
+ path = std::static_pointer_cast(newPath);
+ }
+ _maskLayer->setPath(path);
+ }
+ }
+
+private:
+ MaskNodeProperties _properties;
+
+ std::shared_ptr _maskLayer;
+};
+
+class MaskContainerLayer: public CALayer {
+public:
+ MaskContainerLayer(std::vector> const &masks) {
+ auto containerLayer = std::make_shared();
+ bool firstObject = true;
+ for (const auto &mask : masks) {
+ auto maskLayer = std::make_shared(mask);
+ _maskLayers.push_back(maskLayer);
+
+ auto usableMode = usableMaskMode(mask->mode());
+ if (usableMode == MaskMode::None) {
+ continue;
+ } else if (usableMode == MaskMode::Add || firstObject) {
+ firstObject = false;
+ containerLayer->addSublayer(maskLayer);
+ } else {
+ containerLayer->setMask(maskLayer);
+ auto newContainer = std::make_shared();
+ newContainer->addSublayer(containerLayer);
+ containerLayer = newContainer;
+ }
+ }
+ addSublayer(containerLayer);
+ }
+
+ // MARK: Internal
+
+ void updateWithFrame(double frame, bool forceUpdates) {
+ for (const auto &maskLayer : _maskLayers) {
+ maskLayer->updateWithFrame(frame, forceUpdates);
+ }
+ }
+
+private:
+ std::vector> _maskLayers;
+};
+
+}
+
+#endif /* MaskContainerLayer_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift
new file mode 100644
index 0000000000..f98d321212
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift
@@ -0,0 +1,191 @@
+//
+// MaskContainerLayer.swift
+// lottie-swift
+//
+// Created by Brandon Withrow on 1/25/19.
+//
+
+import Foundation
+import QuartzCore
+
+extension MaskMode {
+ var usableMode: MaskMode {
+ switch self {
+ case .add:
+ return .add
+ case .subtract:
+ return .subtract
+ case .intersect:
+ return .intersect
+ case .lighten:
+ return .add
+ case .darken:
+ return .darken
+ case .difference:
+ return .intersect
+ case .none:
+ return .none
+ }
+ }
+}
+
+// MARK: - MaskContainerLayer
+
+final class MaskContainerLayer: CALayer {
+
+ // MARK: Lifecycle
+
+ init(masks: [Mask]) {
+ super.init()
+ anchorPoint = .zero
+ var containerLayer = CALayer()
+ var firstObject = true
+ for mask in masks {
+ let maskLayer = MaskLayer(mask: mask)
+ maskLayers.append(maskLayer)
+ if mask.mode.usableMode == .none {
+ continue
+ } else if mask.mode.usableMode == .add || firstObject {
+ firstObject = false
+ containerLayer.addSublayer(maskLayer)
+ } else {
+ containerLayer.mask = maskLayer
+ let newContainer = CALayer()
+ newContainer.addSublayer(containerLayer)
+ containerLayer = newContainer
+ }
+ }
+ addSublayer(containerLayer)
+ }
+
+ override init(layer: Any) {
+ /// Used for creating shadow model layers. Read More here: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ guard let layer = layer as? MaskContainerLayer else {
+ fatalError("init(layer:) Wrong Layer Class")
+ }
+ super.init(layer: layer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ func updateWithFrame(frame: CGFloat, forceUpdates: Bool) {
+ maskLayers.forEach({ $0.updateWithFrame(frame: frame, forceUpdates: forceUpdates) })
+ }
+
+ // MARK: Fileprivate
+
+ fileprivate var maskLayers: [MaskLayer] = []
+}
+
+extension CGRect {
+ static var veryLargeRect: CGRect {
+ CGRect(
+ x: -100_000_000,
+ y: -100_000_000,
+ width: 200_000_000,
+ height: 200_000_000)
+ }
+}
+
+// MARK: - MaskLayer
+
+private class MaskLayer: CALayer {
+
+ // MARK: Lifecycle
+
+ init(mask: Mask) {
+ properties = MaskNodeProperties(mask: mask)
+ super.init()
+ addSublayer(maskLayer)
+ anchorPoint = .zero
+ maskLayer.fillColor = mask.mode == .add
+ ? CGColor(colorSpace: CGColorSpaceCreateDeviceRGB(), components: [1, 0, 0, 1])
+ : CGColor(colorSpace: CGColorSpaceCreateDeviceRGB(), components: [0, 1, 0, 1])
+ maskLayer.fillRule = CAShapeLayerFillRule.evenOdd
+ actions = [
+ "opacity" : NSNull(),
+ ]
+
+ }
+
+ override init(layer: Any) {
+ properties = nil
+ super.init(layer: layer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ let properties: MaskNodeProperties?
+
+ let maskLayer = LottieCAShapeLayer()
+
+ func updateWithFrame(frame: CGFloat, forceUpdates: Bool) {
+ guard let properties = properties else { return }
+ if properties.opacity.needsUpdate(frame: frame) || forceUpdates {
+ properties.opacity.update(frame: frame)
+ opacity = Float(properties.opacity.value.cgFloatValue)
+ }
+
+ if properties.shape.needsUpdate(frame: frame) || forceUpdates {
+ properties.shape.update(frame: frame)
+ properties.expansion.update(frame: frame)
+
+ let shapePath = properties.shape.value.cgPath()
+ var path = shapePath
+ if
+ properties.mode.usableMode == .subtract && !properties.inverted ||
+ (properties.mode.usableMode == .add && properties.inverted)
+ {
+ /// Add a bounds rect to invert the mask
+ let newPath = CGMutablePath()
+ newPath.addRect(CGRect.veryLargeRect)
+ newPath.addPath(shapePath)
+ path = newPath
+ }
+ maskLayer.path = path
+ }
+
+ }
+}
+
+// MARK: - MaskNodeProperties
+
+private class MaskNodeProperties: NodePropertyMap {
+
+ // MARK: Lifecycle
+
+ init(mask: Mask) {
+ mode = mask.mode
+ inverted = mask.inverted
+ opacity = NodeProperty(provider: KeyframeInterpolator(keyframes: mask.opacity.keyframes))
+ shape = NodeProperty(provider: KeyframeInterpolator(keyframes: mask.shape.keyframes))
+ expansion = NodeProperty(provider: KeyframeInterpolator(keyframes: mask.expansion.keyframes))
+ propertyMap = [
+ "Opacity" : opacity,
+ "Shape" : shape,
+ "Expansion" : expansion,
+ ]
+ properties = Array(propertyMap.values)
+ }
+
+ // MARK: Internal
+
+ var propertyMap: [String: AnyNodeProperty]
+
+ var properties: [AnyNodeProperty]
+
+ let mode: MaskMode
+ let inverted: Bool
+
+ let opacity: NodeProperty
+ let shape: NodeProperty
+ let expansion: NodeProperty
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.cpp
new file mode 100644
index 0000000000..6c5345cfd6
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.cpp
@@ -0,0 +1,5 @@
+#include "NullCompositionLayer.hpp"
+
+namespace lottie {
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.hpp
new file mode 100644
index 0000000000..c3d3dea5cc
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.hpp
@@ -0,0 +1,17 @@
+#ifndef NullCompositionLayer_hpp
+#define NullCompositionLayer_hpp
+
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp"
+
+namespace lottie {
+
+class NullCompositionLayer: public CompositionLayer {
+public:
+ NullCompositionLayer(std::shared_ptr const &layer) :
+ CompositionLayer(layer, Vector2D::Zero()) {
+ }
+};
+
+}
+
+#endif /* NullCompositionLayer_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift
new file mode 100644
index 0000000000..3fdf163760
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift
@@ -0,0 +1,28 @@
+//
+// NullCompositionLayer.swift
+// lottie-swift
+//
+// Created by Brandon Withrow on 1/25/19.
+//
+
+import Foundation
+
+final class NullCompositionLayer: CompositionLayer {
+
+ init(layer: LayerModel) {
+ super.init(layer: layer, size: .zero)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ override init(layer: Any) {
+ /// Used for creating shadow model layers. Read More here: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ guard let layer = layer as? NullCompositionLayer else {
+ fatalError("init(layer:) Wrong Layer Class")
+ }
+ super.init(layer: layer)
+ }
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.cpp
new file mode 100644
index 0000000000..d3428a9b1b
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.cpp
@@ -0,0 +1,5 @@
+#include "PreCompositionLayer.hpp"
+
+namespace lottie {
+
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.hpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.hpp
new file mode 100644
index 0000000000..384d96d645
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.hpp
@@ -0,0 +1,200 @@
+#ifndef PreCompositionLayer_hpp
+#define PreCompositionLayer_hpp
+
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp"
+#include "Lottie/Private/Model/Layers/PreCompLayerModel.hpp"
+#include "Lottie/Private/Model/Assets/PrecompAsset.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/Utility/LayerImageProvider.hpp"
+#include "Lottie/Public/TextProvider/AnimationTextProvider.hpp"
+#include "Lottie/Public/FontProvider/AnimationFontProvider.hpp"
+#include "Lottie/Private/Model/Assets/AssetLibrary.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.hpp"
+
+namespace lottie {
+
+class PreCompositionLayer: public CompositionLayer {
+public:
+ PreCompositionLayer(
+ std::shared_ptr const &precomp,
+ PrecompAsset const &asset,
+ std::shared_ptr const &layerImageProvider,
+ std::shared_ptr const &textProvider,
+ std::shared_ptr const &fontProvider,
+ std::shared_ptr const &assetLibrary,
+ double frameRate
+ ) : CompositionLayer(precomp, Vector2D(precomp->width, precomp->height)) {
+ if (precomp->timeRemapping) {
+ _remappingNode = std::make_shared>(std::make_shared>(precomp->timeRemapping->keyframes));
+ }
+ _frameRate = frameRate;
+
+ setBounds(CGRect(0.0, 0.0, precomp->width, precomp->height));
+ contentsLayer()->setMasksToBounds(true);
+ contentsLayer()->setBounds(bounds());
+
+ auto layers = initializeCompositionLayers(
+ asset.layers,
+ assetLibrary,
+ layerImageProvider,
+ textProvider,
+ fontProvider,
+ frameRate
+ );
+
+ std::vector> imageLayers;
+
+ std::shared_ptr mattedLayer;
+
+ for (auto layerIt = layers.rbegin(); layerIt != layers.rend(); layerIt++) {
+ std::shared_ptr layer = *layerIt;
+ layer->setBounds(bounds());
+ _animationLayers.push_back(layer);
+
+ if (layer->isImageCompositionLayer()) {
+ imageLayers.push_back(std::static_pointer_cast(layer));
+ }
+ if (mattedLayer) {
+ /// The previous layer requires this layer to be its matte
+ mattedLayer->setMatteLayer(layer);
+ mattedLayer = nullptr;
+ continue;
+ }
+ if (layer->matteType().has_value() && (layer->matteType().value() == MatteType::Add || layer->matteType().value() == MatteType::Invert)) {
+ /// We have a layer that requires a matte.
+ mattedLayer = layer;
+ }
+ contentsLayer()->addSublayer(layer);
+ }
+
+ for (const auto &layer : layers) {
+ _childKeypaths.push_back(layer);
+ }
+
+ layerImageProvider->addImageLayers(imageLayers);
+ }
+
+ virtual std::map> keypathProperties() const override {
+ if (!_remappingNode) {
+ return {};
+ }
+
+ std::map> result;
+ result.insert(std::make_pair("Time Remap", _remappingNode));
+
+ return result;
+ }
+
+ virtual void displayContentsWithFrame(double frame, bool forceUpdates) override {
+ double localFrame = 0.0;
+ if (_remappingNode) {
+ _remappingNode->update(frame);
+ localFrame = _remappingNode->value().value * _frameRate;
+ } else {
+ localFrame = (frame - startFrame()) / timeStretch();
+ }
+
+ for (const auto &animationLayer : _animationLayers) {
+ animationLayer->displayWithFrame(localFrame, forceUpdates);
+ }
+ }
+
+ virtual std::shared_ptr renderTreeNode() override {
+ if (_contentsLayer->isHidden()) {
+ return nullptr;
+ }
+
+ std::shared_ptr maskNode;
+ bool invertMask = false;
+ if (_matteLayer) {
+ maskNode = _matteLayer->renderTreeNode();
+ if (maskNode && _matteType.has_value() && _matteType.value() == MatteType::Invert) {
+ invertMask = true;
+ }
+ }
+
+ std::vector> renderTreeValue;
+ auto renderTreeContentItem = renderTree();
+ if (renderTreeContentItem) {
+ renderTreeValue.push_back(renderTreeContentItem);
+ }
+
+ std::vector> subnodes;
+ subnodes.push_back(std::make_shared(
+ _contentsLayer->bounds(),
+ _contentsLayer->position(),
+ _contentsLayer->transform(),
+ _contentsLayer->opacity(),
+ _contentsLayer->masksToBounds(),
+ _contentsLayer->isHidden(),
+ nullptr,
+ renderTreeValue,
+ nullptr,
+ false
+ ));
+
+ assert(opacity() == 1.0);
+ assert(!isHidden());
+ assert(!masksToBounds());
+ assert(transform().isIdentity());
+ assert(position() == Vector2D::Zero());
+
+ return std::make_shared(
+ bounds(),
+ position(),
+ transform(),
+ opacity(),
+ masksToBounds(),
+ isHidden(),
+ nullptr,
+ subnodes,
+ maskNode,
+ invertMask
+ );
+ }
+
+ std::shared_ptr renderTree() {
+ std::vector> result;
+
+ for (const auto &animationLayer : _animationLayers) {
+ bool found = false;
+ for (const auto &sublayer : contentsLayer()->sublayers()) {
+ if (animationLayer == sublayer) {
+ found = true;
+ break;
+ }
+ }
+ if (found) {
+ auto node = animationLayer->renderTreeNode();
+ if (node) {
+ result.push_back(node);
+ }
+ }
+ }
+
+ std::vector> subnodes;
+ return std::make_shared(
+ CGRect(0.0, 0.0, 0.0, 0.0),
+ Vector2D(0.0, 0.0),
+ CATransform3D::identity(),
+ 1.0,
+ false,
+ false,
+ nullptr,
+ result,
+ nullptr,
+ false
+ );
+ }
+
+private:
+ double _frameRate = 0.0;
+ std::shared_ptr> _remappingNode;
+
+ std::vector> _animationLayers;
+};
+
+}
+
+#endif /* PreCompositionLayer_hpp */
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift
new file mode 100644
index 0000000000..d0722deb78
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift
@@ -0,0 +1,121 @@
+//
+// PreCompositionLayer.swift
+// lottie-swift
+//
+// Created by Brandon Withrow on 1/25/19.
+//
+
+import Foundation
+import QuartzCore
+
+final class PreCompositionLayer: CompositionLayer {
+
+ // MARK: Lifecycle
+
+ init(
+ precomp: PreCompLayerModel,
+ asset: PrecompAsset,
+ layerImageProvider: LayerImageProvider,
+ textProvider: AnimationTextProvider,
+ fontProvider: AnimationFontProvider,
+ assetLibrary: AssetLibrary?,
+ frameRate: CGFloat)
+ {
+ animationLayers = []
+ if let keyframes = precomp.timeRemapping?.keyframes {
+ remappingNode = NodeProperty(provider: KeyframeInterpolator(keyframes: keyframes))
+ } else {
+ remappingNode = nil
+ }
+ self.frameRate = frameRate
+ super.init(layer: precomp, size: CGSize(width: precomp.width, height: precomp.height))
+ bounds = CGRect(origin: .zero, size: CGSize(width: precomp.width, height: precomp.height))
+ contentsLayer.masksToBounds = true
+ contentsLayer.bounds = bounds
+
+ let layers = asset.layers.initializeCompositionLayers(
+ assetLibrary: assetLibrary,
+ layerImageProvider: layerImageProvider,
+ textProvider: textProvider,
+ fontProvider: fontProvider,
+ frameRate: frameRate)
+
+ var imageLayers = [ImageCompositionLayer]()
+
+ var mattedLayer: CompositionLayer? = nil
+
+ for layer in layers.reversed() {
+ layer.bounds = bounds
+ animationLayers.append(layer)
+ if let imageLayer = layer as? ImageCompositionLayer {
+ imageLayers.append(imageLayer)
+ }
+ if let matte = mattedLayer {
+ /// The previous layer requires this layer to be its matte
+ matte.matteLayer = layer
+ mattedLayer = nil
+ continue
+ }
+ if
+ let matte = layer.matteType,
+ matte == .add || matte == .invert
+ {
+ /// We have a layer that requires a matte.
+ mattedLayer = layer
+ }
+ contentsLayer.addSublayer(layer)
+ }
+
+ childKeypaths.append(contentsOf: layers)
+
+ layerImageProvider.addImageLayers(imageLayers)
+ }
+
+ override init(layer: Any) {
+ /// Used for creating shadow model layers. Read More here: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
+ guard let layer = layer as? PreCompositionLayer else {
+ fatalError("init(layer:) Wrong Layer Class")
+ }
+ frameRate = layer.frameRate
+ remappingNode = nil
+ animationLayers = []
+
+ super.init(layer: layer)
+ }
+
+ required init?(coder _: NSCoder) {
+ fatalError("init(coder:) has not been implemented")
+ }
+
+ // MARK: Internal
+
+ let frameRate: CGFloat
+ let remappingNode: NodeProperty?
+
+ override var keypathProperties: [String: AnyNodeProperty] {
+ guard let remappingNode = remappingNode else {
+ return super.keypathProperties
+ }
+ return ["Time Remap" : remappingNode]
+ }
+
+ override func displayContentsWithFrame(frame: CGFloat, forceUpdates: Bool) {
+ let localFrame: CGFloat
+ if let remappingNode = remappingNode {
+ remappingNode.update(frame: frame)
+ localFrame = remappingNode.value.cgFloatValue * frameRate
+ } else {
+ localFrame = (frame - startFrame) / timeStretch
+ }
+ animationLayers.forEach( { $0.displayWithFrame(frame: localFrame, forceUpdates: forceUpdates) })
+ }
+
+ override func updateRenderScale() {
+ super.updateRenderScale()
+ animationLayers.forEach( { $0.renderScale = renderScale } )
+ }
+
+ // MARK: Fileprivate
+
+ fileprivate var animationLayers: [CompositionLayer]
+}
diff --git a/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.cpp b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.cpp
new file mode 100644
index 0000000000..fd1f61ecdc
--- /dev/null
+++ b/Tests/LottieMetalTest/LottieSwift/Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.cpp
@@ -0,0 +1,1354 @@
+#include "ShapeCompositionLayer.hpp"
+
+#include "Lottie/Private/Model/ShapeItems/Group.hpp"
+#include "Lottie/Private/Model/ShapeItems/Ellipse.hpp"
+#include "Lottie/Private/Model/ShapeItems/Rectangle.hpp"
+#include "Lottie/Private/Model/ShapeItems/Star.hpp"
+#include "Lottie/Private/Model/ShapeItems/Shape.hpp"
+#include "Lottie/Private/Model/ShapeItems/Trim.hpp"
+#include "Lottie/Private/Model/ShapeItems/Stroke.hpp"
+#include "Lottie/Private/Model/ShapeItems/GradientStroke.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/RenderLayers/GetGradientParameters.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.hpp"
+#include "Lottie/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/DashPatternInterpolator.hpp"
+#include "Lottie/Private/MainThread/LayerContainers/CompLayers/ShapeUtils/BezierPathUtils.hpp"
+#include "Lottie/Private/Model/ShapeItems/ShapeTransform.hpp"
+
+namespace lottie {
+
+class ShapeLayerPresentationTree {
+public:
+ class FillOutput {
+ public:
+ FillOutput() {
+ }
+ ~FillOutput() = default;
+
+ virtual void update(AnimationFrameTime frameTime) = 0;
+ virtual std::shared_ptr fill() = 0;
+ };
+
+ class SolidFillOutput : public FillOutput {
+ public:
+ explicit SolidFillOutput(Fill const &fill) :
+ rule(fill.fillRule.value_or(FillRule::NonZeroWinding)),
+ color(fill.color.keyframes),
+ opacity(fill.opacity.keyframes) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (color.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ colorValue = color.value(frameTime);
+ }
+
+ if (opacity.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ opacityValue = opacity.value(frameTime).value;
+ }
+
+ if (!_fill || hasUpdates) {
+ auto solid = std::make_shared(colorValue, opacityValue * 0.01);
+ _fill = std::make_shared(
+ solid,
+ rule
+ );
+ }
+ }
+
+ virtual std::shared_ptr fill() override {
+ return _fill;
+ }
+
+ private:
+ FillRule rule;
+
+ KeyframeInterpolator color;
+ Color colorValue = Color(0.0, 0.0, 0.0, 0.0);
+
+ KeyframeInterpolator opacity;
+ double opacityValue = 0.0;
+
+ std::shared_ptr _fill;
+ };
+
+ class GradientFillOutput : public FillOutput {
+ public:
+ explicit GradientFillOutput(GradientFill const &gradientFill) :
+ rule(FillRule::NonZeroWinding),
+ numberOfColors(gradientFill.numberOfColors),
+ gradientType(gradientFill.gradientType),
+ colors(gradientFill.colors.keyframes),
+ startPoint(gradientFill.startPoint.keyframes),
+ endPoint(gradientFill.endPoint.keyframes),
+ opacity(gradientFill.opacity.keyframes) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (colors.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ colorsValue = colors.value(frameTime);
+ }
+
+ if (startPoint.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ startPointValue = startPoint.value(frameTime);
+ }
+
+ if (endPoint.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ endPointValue = endPoint.value(frameTime);
+ }
+
+ if (opacity.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ opacityValue = opacity.value(frameTime).value;
+ }
+
+ if (!_fill || hasUpdates) {
+ std::vector colors;
+ std::vector locations;
+ getGradientParameters(numberOfColors, colorsValue, colors, locations);
+
+ auto gradient = std::make_shared(
+ opacityValue * 0.01,
+ gradientType,
+ colors,
+ locations,
+ Vector2D(startPointValue.x, startPointValue.y),
+ Vector2D(endPointValue.x, endPointValue.y)
+ );
+ _fill = std::make_shared(
+ gradient,
+ rule
+ );
+ }
+ }
+
+ virtual std::shared_ptr fill() override {
+ return _fill;
+ }
+
+ private:
+ FillRule rule;
+ int numberOfColors = 0;
+ GradientType gradientType;
+
+ KeyframeInterpolator colors;
+ GradientColorSet colorsValue;
+
+ KeyframeInterpolator startPoint;
+ Vector3D startPointValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator endPoint;
+ Vector3D endPointValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator opacity;
+ double opacityValue = 0.0;
+
+ std::shared_ptr _fill;
+ };
+
+ class StrokeOutput {
+ public:
+ StrokeOutput() {
+ }
+ ~StrokeOutput() = default;
+
+ virtual void update(AnimationFrameTime frameTime) = 0;
+ virtual std::shared_ptr stroke() = 0;
+ };
+
+ class SolidStrokeOutput : public StrokeOutput {
+ public:
+ SolidStrokeOutput(Stroke const &stroke) :
+ lineJoin(stroke.lineJoin),
+ lineCap(stroke.lineCap),
+ miterLimit(stroke.miterLimit.value_or(4.0)),
+ color(stroke.color.keyframes),
+ opacity(stroke.opacity.keyframes),
+ width(stroke.width.keyframes) {
+ if (stroke.dashPattern.has_value()) {
+ StrokeShapeDashConfiguration dashConfiguration(stroke.dashPattern.value());
+ dashPattern = std::make_unique(dashConfiguration.dashPatterns);
+
+ if (!dashConfiguration.dashPhase.empty()) {
+ dashPhase = std::make_unique>(dashConfiguration.dashPhase);
+ }
+ }
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (color.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ colorValue = color.value(frameTime);
+ }
+
+ if (opacity.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ opacityValue = opacity.value(frameTime).value;
+ }
+
+ if (width.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ widthValue = width.value(frameTime).value;
+ }
+
+ if (dashPattern) {
+ if (dashPattern->hasUpdate(frameTime)) {
+ hasUpdates = true;
+ dashPatternValue = dashPattern->value(frameTime);
+ }
+ }
+
+ if (dashPhase) {
+ if (dashPhase->hasUpdate(frameTime)) {
+ hasUpdates = true;
+ dashPhaseValue = dashPhase->value(frameTime).value;
+ }
+ }
+
+ if (!_stroke || hasUpdates) {
+ bool hasNonZeroDashes = false;
+ if (!dashPatternValue.values.empty()) {
+ for (const auto &value : dashPatternValue.values) {
+ if (value != 0) {
+ hasNonZeroDashes = true;
+ break;
+ }
+ }
+ }
+
+ auto solid = std::make_shared(colorValue, opacityValue * 0.01);
+ _stroke = std::make_shared(
+ solid,
+ widthValue,
+ lineJoin,
+ lineCap,
+ miterLimit,
+ hasNonZeroDashes ? dashPhaseValue : 0.0,
+ hasNonZeroDashes ? dashPatternValue.values : std::vector()
+ );
+ }
+ }
+
+ virtual std::shared_ptr stroke() override {
+ return _stroke;
+ }
+
+ private:
+ LineJoin lineJoin;
+ LineCap lineCap;
+ double miterLimit = 4.0;
+
+ KeyframeInterpolator color;
+ Color colorValue = Color(0.0, 0.0, 0.0, 0.0);
+
+ KeyframeInterpolator opacity;
+ double opacityValue = 0.0;
+
+ KeyframeInterpolator width;
+ double widthValue = 0.0;
+
+ std::unique_ptr dashPattern;
+ DashPattern dashPatternValue = DashPattern({});
+
+ std::unique_ptr> dashPhase;
+ double dashPhaseValue = 0.0;
+
+ std::shared_ptr _stroke;
+ };
+
+ class GradientStrokeOutput : public StrokeOutput {
+ public:
+ GradientStrokeOutput(GradientStroke const &gradientStroke) :
+ lineJoin(gradientStroke.lineJoin),
+ lineCap(gradientStroke.lineCap),
+ miterLimit(gradientStroke.miterLimit.value_or(4.0)),
+ numberOfColors(gradientStroke.numberOfColors),
+ gradientType(gradientStroke.gradientType),
+ colors(gradientStroke.colors.keyframes),
+ startPoint(gradientStroke.startPoint.keyframes),
+ endPoint(gradientStroke.endPoint.keyframes),
+ opacity(gradientStroke.opacity.keyframes),
+ width(gradientStroke.width.keyframes) {
+ if (gradientStroke.dashPattern.has_value()) {
+ StrokeShapeDashConfiguration dashConfiguration(gradientStroke.dashPattern.value());
+ dashPattern = std::make_unique(dashConfiguration.dashPatterns);
+
+ if (!dashConfiguration.dashPhase.empty()) {
+ dashPhase = std::make_unique>(dashConfiguration.dashPhase);
+ }
+ }
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (colors.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ colorsValue = colors.value(frameTime);
+ }
+
+ if (startPoint.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ startPointValue = startPoint.value(frameTime);
+ }
+
+ if (endPoint.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ endPointValue = endPoint.value(frameTime);
+ }
+
+ if (opacity.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ opacityValue = opacity.value(frameTime).value;
+ }
+
+ if (width.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ widthValue = width.value(frameTime).value;
+ }
+
+ if (dashPattern) {
+ if (dashPattern->hasUpdate(frameTime)) {
+ hasUpdates = true;
+ dashPatternValue = dashPattern->value(frameTime);
+ }
+ }
+
+ if (dashPhase) {
+ if (dashPhase->hasUpdate(frameTime)) {
+ hasUpdates = true;
+ dashPhaseValue = dashPhase->value(frameTime).value;
+ }
+ }
+
+ if (!_stroke || hasUpdates) {
+ bool hasNonZeroDashes = false;
+ if (!dashPatternValue.values.empty()) {
+ for (const auto &value : dashPatternValue.values) {
+ if (value != 0) {
+ hasNonZeroDashes = true;
+ break;
+ }
+ }
+ }
+
+ std::vector colors;
+ std::vector locations;
+ getGradientParameters(numberOfColors, colorsValue, colors, locations);
+
+ auto gradient = std::make_shared(
+ opacityValue * 0.01,
+ gradientType,
+ colors,
+ locations,
+ Vector2D(startPointValue.x, startPointValue.y),
+ Vector2D(endPointValue.x, endPointValue.y)
+ );
+ _stroke = std::make_shared(
+ gradient,
+ widthValue,
+ lineJoin,
+ lineCap,
+ miterLimit,
+ hasNonZeroDashes ? dashPhaseValue : 0.0,
+ hasNonZeroDashes ? dashPatternValue.values : std::vector()
+ );
+ }
+ }
+
+ virtual std::shared_ptr stroke() override {
+ return _stroke;
+ }
+
+ private:
+ LineJoin lineJoin;
+ LineCap lineCap;
+ double miterLimit = 4.0;
+
+ int numberOfColors = 0;
+ GradientType gradientType;
+
+ KeyframeInterpolator colors;
+ GradientColorSet colorsValue;
+
+ KeyframeInterpolator startPoint;
+ Vector3D startPointValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator endPoint;
+ Vector3D endPointValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator opacity;
+ double opacityValue = 0.0;
+
+ KeyframeInterpolator width;
+ double widthValue = 0.0;
+
+ std::unique_ptr dashPattern;
+ DashPattern dashPatternValue = DashPattern({});
+
+ std::unique_ptr> dashPhase;
+ double dashPhaseValue = 0.0;
+
+ std::shared_ptr _stroke;
+ };
+
+ struct TrimParams {
+ double start = 0.0;
+ double end = 0.0;
+ double offset = 0.0;
+ TrimType type = TrimType::Simultaneously;
+ size_t subItemLimit = 0;
+
+ TrimParams(double start_, double end_, double offset_, TrimType type_, size_t subItemLimit_) :
+ start(start_),
+ end(end_),
+ offset(offset_),
+ type(type_),
+ subItemLimit(subItemLimit_) {
+ }
+ };
+
+ class TrimParamsOutput {
+ public:
+ TrimParamsOutput(Trim const &trim, size_t subItemLimit) :
+ type(trim.trimType),
+ subItemLimit(subItemLimit),
+ start(trim.start.keyframes),
+ end(trim.end.keyframes),
+ offset(trim.offset.keyframes) {
+ }
+
+ void update(AnimationFrameTime frameTime) {
+ if (start.hasUpdate(frameTime)) {
+ startValue = start.value(frameTime).value;
+ }
+
+ if (end.hasUpdate(frameTime)) {
+ endValue = end.value(frameTime).value;
+ }
+
+ if (offset.hasUpdate(frameTime)) {
+ offsetValue = offset.value(frameTime).value;
+ }
+ }
+
+ TrimParams trimParams() {
+ double resolvedStartValue = startValue * 0.01;
+ double resolvedEndValue = endValue * 0.01;
+ double resolvedStart = std::min(resolvedStartValue, resolvedEndValue);
+ double resolvedEnd = std::max(resolvedStartValue, resolvedEndValue);
+
+ double resolvedOffset = fmod(offsetValue, 360.0) / 360.0;
+
+ return TrimParams(resolvedStart, resolvedEnd, resolvedOffset, type, subItemLimit);
+ }
+
+ private:
+ TrimType type;
+ size_t subItemLimit = 0;
+
+ KeyframeInterpolator start;
+ double startValue = 0.0;
+
+ KeyframeInterpolator end;
+ double endValue = 0.0;
+
+ KeyframeInterpolator offset;
+ double offsetValue = 0.0;
+ };
+
+ struct ShadingVariant {
+ std::shared_ptr fill;
+ std::shared_ptr stroke;
+ size_t subItemLimit = 0;
+
+ std::shared_ptr renderTree;
+ };
+
+ struct TransformedPath {
+ BezierPath path;
+ CATransform3D transform;
+
+ TransformedPath(BezierPath const &path_, CATransform3D const &transform_) :
+ path(path_),
+ transform(transform_) {
+ }
+ };
+
+ class PathOutput {
+ public:
+ PathOutput() {
+ }
+ virtual ~PathOutput() = default;
+
+ virtual void update(AnimationFrameTime frameTime) = 0;
+ virtual BezierPath const *currentPath() = 0;
+ };
+
+ class StaticPathOutput : public PathOutput {
+ public:
+ explicit StaticPathOutput(BezierPath const &path) :
+ resolvedPath(path) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ }
+
+ virtual BezierPath const *currentPath() override {
+ return &resolvedPath;
+ }
+
+ private:
+ BezierPath resolvedPath;
+ };
+
+ class ShapePathOutput : public PathOutput {
+ public:
+ explicit ShapePathOutput(Shape const &shape) :
+ path(shape.path.keyframes) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ if (!hasValidData || path.hasUpdate(frameTime)) {
+ path.update(frameTime, resolvedPath);
+ }
+
+ hasValidData = true;
+ }
+
+ virtual BezierPath const *currentPath() override {
+ return &resolvedPath;
+ }
+
+ private:
+ bool hasValidData = false;
+
+ BezierPathKeyframeInterpolator path;
+
+ BezierPath resolvedPath;
+ };
+
+ class RectanglePathOutput : public PathOutput {
+ public:
+ explicit RectanglePathOutput(Rectangle const &rectangle) :
+ direction(rectangle.direction.value_or(PathDirection::Clockwise)),
+ position(rectangle.position.keyframes),
+ size(rectangle.size.keyframes),
+ cornerRadius(rectangle.cornerRadius.keyframes) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (!hasValidData || position.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ positionValue = position.value(frameTime);
+ }
+ if (!hasValidData || size.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ sizeValue = size.value(frameTime);
+ }
+ if (!hasValidData || cornerRadius.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ cornerRadiusValue = cornerRadius.value(frameTime).value;
+ }
+
+ if (hasUpdates) {
+ resolvedPath = makeRectangleBezierPath(Vector2D(positionValue.x, positionValue.y), Vector2D(sizeValue.x, sizeValue.y), cornerRadiusValue, direction);
+ }
+
+ hasValidData = true;
+ }
+
+ virtual BezierPath const *currentPath() override {
+ return &resolvedPath;
+ }
+
+ private:
+ bool hasValidData = false;
+
+ PathDirection direction;
+
+ KeyframeInterpolator position;
+ Vector3D positionValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator size;
+ Vector3D sizeValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator cornerRadius;
+ double cornerRadiusValue = 0.0;
+
+ BezierPath resolvedPath;
+ };
+
+ class EllipsePathOutput : public PathOutput {
+ public:
+ explicit EllipsePathOutput(Ellipse const &ellipse) :
+ direction(ellipse.direction.value_or(PathDirection::Clockwise)),
+ position(ellipse.position.keyframes),
+ size(ellipse.size.keyframes) {
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (!hasValidData || position.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ positionValue = position.value(frameTime);
+ }
+ if (!hasValidData || size.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ sizeValue = size.value(frameTime);
+ }
+
+ if (hasUpdates) {
+ resolvedPath = makeEllipseBezierPath(Vector2D(sizeValue.x, sizeValue.y), Vector2D(positionValue.x, positionValue.y), direction);
+ }
+
+ hasValidData = true;
+ }
+
+ virtual BezierPath const *currentPath() override {
+ return &resolvedPath;
+ }
+
+ private:
+ bool hasValidData = false;
+
+ PathDirection direction;
+
+ KeyframeInterpolator position;
+ Vector3D positionValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator size;
+ Vector3D sizeValue = Vector3D(0.0, 0.0, 0.0);
+
+ BezierPath resolvedPath;
+ };
+
+ class StarPathOutput : public PathOutput {
+ public:
+ explicit StarPathOutput(Star const &star) :
+ direction(star.direction.value_or(PathDirection::Clockwise)),
+ position(star.position.keyframes),
+ outerRadius(star.outerRadius.keyframes),
+ outerRoundedness(star.outerRoundness.keyframes),
+ rotation(star.rotation.keyframes),
+ points(star.points.keyframes) {
+ if (star.innerRadius.has_value()) {
+ innerRadius = std::make_unique>(std::make_shared>(star.innerRadius->keyframes));
+ } else {
+ innerRadius = std::make_unique>(std::make_shared>(Vector1D(0.0)));
+ }
+
+ if (star.innerRoundness.has_value()) {
+ innerRoundedness = std::make_unique>(std::make_shared>(star.innerRoundness->keyframes));
+ } else {
+ innerRoundedness = std::make_unique>(std::make_shared>(Vector1D(0.0)));
+ }
+ }
+
+ virtual void update(AnimationFrameTime frameTime) override {
+ bool hasUpdates = false;
+
+ if (!hasValidData || position.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ positionValue = position.value(frameTime);
+ }
+
+ if (!hasValidData || outerRadius.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ outerRadiusValue = outerRadius.value(frameTime).value;
+ }
+
+ innerRadius->update(frameTime);
+ if (!hasValidData || innerRadiusValue != innerRadius->value().value) {
+ hasUpdates = true;
+ innerRadiusValue = innerRadius->value().value;
+ }
+
+ if (!hasValidData || outerRoundedness.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ outerRoundednessValue = outerRoundedness.value(frameTime).value;
+ }
+
+ innerRoundedness->update(frameTime);
+ if (!hasValidData || innerRoundednessValue != innerRoundedness->value().value) {
+ hasUpdates = true;
+ innerRoundednessValue = innerRoundedness->value().value;
+ }
+
+ if (!hasValidData || points.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ pointsValue = points.value(frameTime).value;
+ }
+
+ if (!hasValidData || rotation.hasUpdate(frameTime)) {
+ hasUpdates = true;
+ rotationValue = rotation.value(frameTime).value;
+ }
+
+ if (hasUpdates) {
+ resolvedPath = makeStarBezierPath(Vector2D(positionValue.x, positionValue.y), outerRadiusValue, innerRadiusValue, outerRoundednessValue, innerRoundednessValue, pointsValue, rotationValue, direction);
+ }
+
+ hasValidData = true;
+ }
+
+ virtual BezierPath const *currentPath() override {
+ return &resolvedPath;
+ }
+
+ private:
+ bool hasValidData = false;
+
+ PathDirection direction;
+
+ KeyframeInterpolator position;
+ Vector3D positionValue = Vector3D(0.0, 0.0, 0.0);
+
+ KeyframeInterpolator outerRadius;
+ double outerRadiusValue = 0.0;
+
+ KeyframeInterpolator outerRoundedness;
+ double outerRoundednessValue = 0.0;
+
+ std::unique_ptr> innerRadius;
+ double innerRadiusValue = 0.0;
+
+ std::unique_ptr