lottie-ios 3.4.0 → 3.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (394) hide show
  1. package/.github/workflows/main.yml +10 -7
  2. package/.github/workflows/stale_issues.yml +17 -0
  3. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  4. package/Lottie.xcodeproj/project.pbxproj +33 -21
  5. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (macOS).xcscheme +2 -2
  6. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  7. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +5 -6
  8. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +114 -1
  9. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
  10. package/Package.swift +1 -1
  11. package/README.md +5 -6
  12. package/Rakefile +52 -17
  13. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +7 -2
  14. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +192 -67
  15. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +28 -0
  16. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +31 -4
  17. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +98 -43
  18. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +19 -19
  19. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +34 -7
  20. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +25 -14
  21. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +61 -32
  22. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +6 -2
  23. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +29 -11
  24. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +2 -2
  25. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +116 -23
  26. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +9 -0
  27. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +2 -1
  28. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +48 -12
  29. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +10 -3
  30. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +5 -0
  31. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +1 -1
  32. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +2 -2
  33. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
  34. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +94 -38
  35. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +131 -46
  36. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +16 -2
  37. package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -1
  38. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +0 -2
  39. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -2
  40. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +1 -2
  41. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +30 -1
  42. package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -0
  43. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -1
  44. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +5 -2
  45. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +4 -7
  46. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +5 -0
  47. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +1 -2
  48. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +1 -1
  49. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +1 -1
  50. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +1 -1
  51. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +3 -3
  52. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +3 -0
  53. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +1 -1
  54. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +28 -1
  55. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +1 -1
  56. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
  57. package/Sources/Private/Model/Animation.swift +4 -4
  58. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +25 -0
  59. package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -1
  60. package/Sources/Private/Model/ShapeItems/Fill.swift +1 -1
  61. package/Sources/Private/Model/ShapeItems/GradientFill.swift +14 -1
  62. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +0 -1
  63. package/Sources/Private/Model/ShapeItems/Group.swift +6 -1
  64. package/Sources/Private/Model/ShapeItems/Merge.swift +0 -1
  65. package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -1
  66. package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -1
  67. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -1
  68. package/Sources/Private/Model/ShapeItems/Star.swift +0 -1
  69. package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -1
  70. package/Sources/Private/Model/ShapeItems/Trim.swift +0 -1
  71. package/Sources/Private/Model/Text/TextAnimator.swift +0 -1
  72. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +1 -2
  73. package/Sources/Private/Utility/Extensions/MathKit.swift +1 -2
  74. package/Sources/Private/Utility/Extensions/StringExtensions.swift +0 -1
  75. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -1
  76. package/Sources/Private/{MainThread/NodeRenderSystem/NodeProperties/ValueProviders → Utility/Interpolatable}/KeyframeInterpolator.swift +1 -4
  77. package/Sources/Private/Utility/Primitives/BezierPath.swift +1 -2
  78. package/Sources/Private/Utility/Primitives/CurveVertex.swift +2 -4
  79. package/Sources/Public/Animation/AnimationPublic.swift +2 -4
  80. package/Sources/Public/Animation/AnimationView.swift +29 -7
  81. package/Sources/Public/Animation/AnimationViewInitializers.swift +13 -11
  82. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -2
  83. package/Sources/Public/FontProvider/AnimationFontProvider.swift +1 -1
  84. package/Sources/Public/Logging/LottieLogger.swift +15 -2
  85. package/Sources/Public/TextProvider/AnimationTextProvider.swift +1 -1
  86. package/Sources/Public/iOS/AnimatedButton.swift +10 -4
  87. package/Sources/Public/iOS/AnimatedControl.swift +3 -5
  88. package/Sources/Public/iOS/AnimatedSwitch.swift +9 -6
  89. package/Sources/Public/iOS/BundleImageProvider.swift +2 -3
  90. package/Sources/Public/iOS/FilepathImageProvider.swift +1 -2
  91. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +1 -2
  92. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +1 -3
  93. package/Tests/AnimationKeypathTests.swift +10 -1
  94. package/Tests/AutomaticEngineTests.swift +1 -0
  95. package/Tests/ParsingTests.swift +2 -1
  96. package/Tests/PerformanceTests.swift +28 -29
  97. package/Tests/SnapshotConfiguration.swift +19 -0
  98. package/Tests/SnapshotTests.swift +4 -0
  99. package/Tests/Utils/HardcodedTextProvider.swift +27 -0
  100. package/lottie-ios.podspec +2 -2
  101. package/package.json +1 -1
  102. package/script/test-carthage/CarthageTest/AppDelegate.swift +6 -7
  103. package/script/test-carthage/CarthageTest/ViewController.swift +1 -1
  104. package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
  105. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  106. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  107. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
  108. package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
  109. package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
  110. package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
  111. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +159 -5
  112. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  113. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  114. package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +0 -23
  115. package/Mintfile +0 -3
  116. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  117. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  118. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  119. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  120. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  121. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  122. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  123. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -1
  124. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  125. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  126. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  127. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  128. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  129. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  130. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  131. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  132. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  133. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  134. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  135. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  136. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  137. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  138. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  139. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  140. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  141. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  142. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  143. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  144. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  145. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  146. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  147. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  148. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  149. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  150. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  151. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  152. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -1
  153. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  154. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  155. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  156. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  157. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  158. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  159. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  160. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  161. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  162. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  163. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  164. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  165. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  166. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  167. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  168. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  169. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  170. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  171. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  172. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  173. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
  174. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  175. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  176. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  177. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  178. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  179. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  180. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  181. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  182. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  183. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  184. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  185. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  186. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  187. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  188. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  189. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  190. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  191. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  192. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  193. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  194. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  195. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  196. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  197. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  198. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  199. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  200. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  201. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  202. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -0
  203. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  204. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  205. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  206. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  207. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  208. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  209. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  210. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  211. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  212. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  213. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  214. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  215. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  216. package/Tests/Artifacts/LottieTests.xcresult/Info.plist +0 -29
  217. package/Tests/Samples/9squares_AlBoardman.json +0 -1
  218. package/Tests/Samples/Boat_Loader.json +0 -1
  219. package/Tests/Samples/HamburgerArrow.json +0 -1
  220. package/Tests/Samples/IconTransitions.json +0 -1
  221. package/Tests/Samples/Images/dog.png +0 -0
  222. package/Tests/Samples/Issues/issue_1403.json +0 -1
  223. package/Tests/Samples/Issues/issue_1407.json +0 -1
  224. package/Tests/Samples/Issues/issue_1488.json +0 -1
  225. package/Tests/Samples/Issues/issue_1505.json +0 -1
  226. package/Tests/Samples/Issues/issue_1628.json +0 -1
  227. package/Tests/Samples/Issues/pr_1536.json +0 -1
  228. package/Tests/Samples/Issues/pr_1563.json +0 -8439
  229. package/Tests/Samples/Issues/pr_1592.json +0 -5527
  230. package/Tests/Samples/Issues/pr_1599.json +0 -738
  231. package/Tests/Samples/Issues/pr_1604_1.json +0 -1
  232. package/Tests/Samples/Issues/pr_1604_2.json +0 -1
  233. package/Tests/Samples/LottieFiles/LICENSE.md +0 -14
  234. package/Tests/Samples/LottieFiles/bounce_strokes.json +0 -1
  235. package/Tests/Samples/LottieFiles/cactus.json +0 -1
  236. package/Tests/Samples/LottieFiles/dog_car_ride.json +0 -1
  237. package/Tests/Samples/LottieFiles/draft_icon.json +0 -1
  238. package/Tests/Samples/LottieFiles/gradient_1.json +0 -1
  239. package/Tests/Samples/LottieFiles/gradient_2.json +0 -1
  240. package/Tests/Samples/LottieFiles/gradient_pill.json +0 -1
  241. package/Tests/Samples/LottieFiles/gradient_shapes.json +0 -1
  242. package/Tests/Samples/LottieFiles/gradient_square.json +0 -1
  243. package/Tests/Samples/LottieFiles/growth.json +0 -1
  244. package/Tests/Samples/LottieFiles/infinity_loader.json +0 -1
  245. package/Tests/Samples/LottieFiles/loading_dots_1.json +0 -1
  246. package/Tests/Samples/LottieFiles/loading_dots_2.json +0 -1
  247. package/Tests/Samples/LottieFiles/loading_dots_3.json +0 -1
  248. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +0 -1
  249. package/Tests/Samples/LottieFiles/settings_slider.json +0 -1
  250. package/Tests/Samples/LottieFiles/shop.json +0 -1
  251. package/Tests/Samples/LottieFiles/step_loader.json +0 -1
  252. package/Tests/Samples/LottieLogo1.json +0 -1
  253. package/Tests/Samples/LottieLogo1_masked.json +0 -1
  254. package/Tests/Samples/LottieLogo2.json +0 -1
  255. package/Tests/Samples/MotionCorpse_Jrcanest.json +0 -1
  256. package/Tests/Samples/Nonanimating/BasicLayers.json +0 -1
  257. package/Tests/Samples/Nonanimating/DisableNodesTest.json +0 -1
  258. package/Tests/Samples/Nonanimating/FirstText.json +0 -1
  259. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +0 -1
  260. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +0 -1
  261. package/Tests/Samples/Nonanimating/Text_Glyph.json +0 -1
  262. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +0 -1
  263. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +0 -1
  264. package/Tests/Samples/Nonanimating/Zoom.json +0 -1
  265. package/Tests/Samples/Nonanimating/_dog.json +0 -1
  266. package/Tests/Samples/Nonanimating/base64Test.json +0 -1
  267. package/Tests/Samples/Nonanimating/blend_mode_test.json +0 -1
  268. package/Tests/Samples/Nonanimating/keypathTest.json +0 -1
  269. package/Tests/Samples/Nonanimating/verifyLineHeight.json +0 -1
  270. package/Tests/Samples/PinJump.json +0 -1
  271. package/Tests/Samples/Private/BrokenLottieFiles/growth_man.json +0 -874
  272. package/Tests/Samples/Private/BrokenLottieFiles/rocket.json +0 -1
  273. package/Tests/Samples/Private/China_EmptyState_Itinerary.json +0 -1
  274. package/Tests/Samples/Private/LoaderHourglass.json +0 -12070
  275. package/Tests/Samples/Private/README.md +0 -7
  276. package/Tests/Samples/Private/Urgency/alarm_animated.json +0 -1
  277. package/Tests/Samples/Private/Urgency/diamond_animated.json +0 -1
  278. package/Tests/Samples/Private/Urgency/eye_animated.json +0 -1
  279. package/Tests/Samples/Private/Urgency/light_bulb_animated.json +0 -1
  280. package/Tests/Samples/Private/Urgency/light_bulb_static.json +0 -1
  281. package/Tests/Samples/Private/Urgency/piggy_bank_static.json +0 -1
  282. package/Tests/Samples/Private/Urgency/price_tag_legacy.json +0 -1
  283. package/Tests/Samples/Private/Urgency/rausch_alarm.json +0 -1
  284. package/Tests/Samples/Private/Urgency/rausch_alert.json +0 -1
  285. package/Tests/Samples/Private/Urgency/rausch_clock.json +0 -1
  286. package/Tests/Samples/Private/Urgency/rausch_diamond.json +0 -1
  287. package/Tests/Samples/Private/Urgency/rausch_money.json +0 -1
  288. package/Tests/Samples/Private/Urgency/rausch_piggy_bank.json +0 -1
  289. package/Tests/Samples/Private/Urgency/rausch_tag.json +0 -1
  290. package/Tests/Samples/Private/Urgency/red_envelope_animated.json +0 -1
  291. package/Tests/Samples/Private/Urgency/tag_animated.json +0 -1
  292. package/Tests/Samples/Private/Urgency/trophy_animated.json +0 -1
  293. package/Tests/Samples/Private/Urgency/wings_key_animated.json +0 -1
  294. package/Tests/Samples/Private/_flexible.json +0 -1
  295. package/Tests/Samples/Private/aircover.json +0 -1
  296. package/Tests/Samples/Private/belo_spin_rausch.json +0 -1
  297. package/Tests/Samples/Private/celebration.json +0 -2821
  298. package/Tests/Samples/Private/checkbox.json +0 -1
  299. package/Tests/Samples/Private/checkbox_small.json +0 -1
  300. package/Tests/Samples/Private/getting_your_trip_ready.json +0 -3540
  301. package/Tests/Samples/Private/gradient_afternoon.json +0 -1
  302. package/Tests/Samples/Private/gradient_brand.json +0 -1
  303. package/Tests/Samples/Private/gradient_evening.json +0 -1
  304. package/Tests/Samples/Private/gradient_morning.json +0 -1
  305. package/Tests/Samples/Private/issue_1467.json +0 -1
  306. package/Tests/Samples/Private/loading_dots.json +0 -1
  307. package/Tests/Samples/Private/loading_dots_small.json +0 -1
  308. package/Tests/Samples/Private/payment_loader.json +0 -1
  309. package/Tests/Samples/Private/radio_button.json +0 -1
  310. package/Tests/Samples/Private/selfie_intro.json +0 -1
  311. package/Tests/Samples/Private/stepper_add.json +0 -1
  312. package/Tests/Samples/Private/stepper_subtract.json +0 -1
  313. package/Tests/Samples/Private/switch.json +0 -1
  314. package/Tests/Samples/Private/thumb.json +0 -1
  315. package/Tests/Samples/Private/toggle_no.json +0 -1
  316. package/Tests/Samples/Private/toggle_yes.json +0 -1
  317. package/Tests/Samples/Private/user_error_black_and_white.json +0 -1
  318. package/Tests/Samples/Private/user_error_cut_off.json +0 -1
  319. package/Tests/Samples/Switch.json +0 -1
  320. package/Tests/Samples/Switch_States.json +0 -1
  321. package/Tests/Samples/TwitterHeart.json +0 -1
  322. package/Tests/Samples/TwitterHeartButton.json +0 -1
  323. package/Tests/Samples/TypeFace/A.json +0 -1
  324. package/Tests/Samples/TypeFace/Apostrophe.json +0 -1
  325. package/Tests/Samples/TypeFace/B.json +0 -1
  326. package/Tests/Samples/TypeFace/BlinkingCursor.json +0 -1
  327. package/Tests/Samples/TypeFace/C.json +0 -1
  328. package/Tests/Samples/TypeFace/Colon.json +0 -1
  329. package/Tests/Samples/TypeFace/Comma.json +0 -1
  330. package/Tests/Samples/TypeFace/D.json +0 -1
  331. package/Tests/Samples/TypeFace/E.json +0 -1
  332. package/Tests/Samples/TypeFace/F.json +0 -1
  333. package/Tests/Samples/TypeFace/G.json +0 -1
  334. package/Tests/Samples/TypeFace/H.json +0 -1
  335. package/Tests/Samples/TypeFace/I.json +0 -1
  336. package/Tests/Samples/TypeFace/J.json +0 -1
  337. package/Tests/Samples/TypeFace/K.json +0 -1
  338. package/Tests/Samples/TypeFace/L.json +0 -1
  339. package/Tests/Samples/TypeFace/M.json +0 -1
  340. package/Tests/Samples/TypeFace/N.json +0 -1
  341. package/Tests/Samples/TypeFace/O.json +0 -1
  342. package/Tests/Samples/TypeFace/P.json +0 -1
  343. package/Tests/Samples/TypeFace/Q.json +0 -1
  344. package/Tests/Samples/TypeFace/R.json +0 -1
  345. package/Tests/Samples/TypeFace/S.json +0 -1
  346. package/Tests/Samples/TypeFace/T.json +0 -1
  347. package/Tests/Samples/TypeFace/U.json +0 -1
  348. package/Tests/Samples/TypeFace/V.json +0 -1
  349. package/Tests/Samples/TypeFace/W.json +0 -1
  350. package/Tests/Samples/TypeFace/X.json +0 -1
  351. package/Tests/Samples/TypeFace/Y.json +0 -1
  352. package/Tests/Samples/TypeFace/Z.json +0 -1
  353. package/Tests/Samples/Watermelon.json +0 -1
  354. package/Tests/Samples/setValueTest.json +0 -1
  355. package/Tests/Samples/timeremap.json +0 -1
  356. package/Tests/Samples/vcTransition1.json +0 -1
  357. package/Tests/Samples/vcTransition2.json +0 -1
  358. package/script/lint/airbnb.swiftformat +0 -68
  359. package/script/lint/swiftlint.yml +0 -38
  360. package/script/test-carthage/Carthage/Build/.lottie-ios.version +0 -19
  361. package/script/test-carthage/Carthage/Build/Lottie.xcframework/Info.plist +0 -46
  362. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/BCSymbolMaps/BF971162-BE99-3507-B5B3-11947DC6B176.bcsymbolmap +0 -14778
  363. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Headers/Lottie-Swift.h +0 -673
  364. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Info.plist +0 -0
  365. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Lottie +0 -0
  366. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  367. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
  368. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  369. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  370. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/module.modulemap +0 -4
  371. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  372. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  373. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Headers/Lottie-Swift.h +0 -1352
  374. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Info.plist +0 -0
  375. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Lottie +0 -0
  376. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  377. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64.swiftsourceinfo +0 -0
  378. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  379. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64.swiftsourceinfo +0 -0
  380. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  381. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftmodule +0 -0
  382. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  383. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  384. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  385. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftmodule +0 -0
  386. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftdoc +0 -0
  387. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftmodule +0 -0
  388. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/module.modulemap +0 -4
  389. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/_CodeSignature/CodeResources +0 -256
  390. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  391. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  392. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  393. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
  394. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
@@ -1,2821 +0,0 @@
1
- {
2
- "v" : "5.7.11",
3
- "fr" : 60,
4
- "ip" : 0,
5
- "op" : 276,
6
- "w" : 830,
7
- "h" : 1704,
8
- "nm" : "JS Complete Check",
9
- "ddd" : 0,
10
- "assets" : [],
11
- "layers" : [
12
- {
13
- "ddd" : 0,
14
- "ind" : 1,
15
- "ty" : 3,
16
- "nm" : "Move Down",
17
- "sr" : 1,
18
- "ks" : {
19
- "o" : {
20
- "a" : 0,
21
- "k" : 0,
22
- "ix" : 11
23
- },
24
- "r" : {
25
- "a" : 0,
26
- "k" : 0,
27
- "ix" : 10
28
- },
29
- "p" : {
30
- "s" : true,
31
- "x" : {
32
- "a" : 0,
33
- "k" : 415,
34
- "ix" : 3
35
- },
36
- "y" : {
37
- "a" : 1,
38
- "k" : [
39
- {
40
- "i" : {
41
- "x" : [
42
- 0.12
43
- ],
44
- "y" : [
45
- 1
46
- ]
47
- },
48
- "o" : {
49
- "x" : [
50
- 0.66
51
- ],
52
- "y" : [
53
- 0
54
- ]
55
- },
56
- "t" : 41,
57
- "s" : [
58
- 591
59
- ]
60
- },
61
- {
62
- "t" : 211,
63
- "s" : [
64
- 720
65
- ]
66
- }
67
- ],
68
- "ix" : 4
69
- }
70
- },
71
- "a" : {
72
- "a" : 0,
73
- "k" : [
74
- 0,
75
- 0,
76
- 0
77
- ],
78
- "ix" : 1,
79
- "l" : 2
80
- },
81
- "s" : {
82
- "a" : 0,
83
- "k" : [
84
- 100,
85
- 100,
86
- 100
87
- ],
88
- "ix" : 6,
89
- "l" : 2
90
- }
91
- },
92
- "ao" : 0,
93
- "ip" : 0,
94
- "op" : 423,
95
- "st" : -1378,
96
- "bm" : 0
97
- },
98
- {
99
- "ddd" : 0,
100
- "ind" : 2,
101
- "ty" : 3,
102
- "nm" : "Null 92",
103
- "parent" : 1,
104
- "sr" : 1,
105
- "ks" : {
106
- "o" : {
107
- "a" : 0,
108
- "k" : 0,
109
- "ix" : 11
110
- },
111
- "r" : {
112
- "a" : 0,
113
- "k" : 0,
114
- "ix" : 10
115
- },
116
- "p" : {
117
- "a" : 0,
118
- "k" : [
119
- 0,
120
- 129,
121
- 0
122
- ],
123
- "ix" : 2,
124
- "l" : 2
125
- },
126
- "a" : {
127
- "a" : 0,
128
- "k" : [
129
- 0,
130
- 0,
131
- 0
132
- ],
133
- "ix" : 1,
134
- "l" : 2
135
- },
136
- "s" : {
137
- "a" : 0,
138
- "k" : [
139
- 100,
140
- 100,
141
- 100
142
- ],
143
- "ix" : 6,
144
- "l" : 2
145
- }
146
- },
147
- "ao" : 0,
148
- "ip" : 0,
149
- "op" : 276,
150
- "st" : 0,
151
- "bm" : 0
152
- },
153
- {
154
- "ddd" : 0,
155
- "ind" : 3,
156
- "ty" : 3,
157
- "nm" : "Center",
158
- "parent" : 2,
159
- "sr" : 1,
160
- "ks" : {
161
- "o" : {
162
- "a" : 0,
163
- "k" : 0,
164
- "ix" : 11
165
- },
166
- "r" : {
167
- "a" : 0,
168
- "k" : 0,
169
- "ix" : 10
170
- },
171
- "p" : {
172
- "a" : 0,
173
- "k" : [
174
- 0,
175
- 0,
176
- 0
177
- ],
178
- "ix" : 2,
179
- "l" : 2
180
- },
181
- "a" : {
182
- "a" : 0,
183
- "k" : [
184
- 0,
185
- 0,
186
- 0
187
- ],
188
- "ix" : 1,
189
- "l" : 2
190
- },
191
- "s" : {
192
- "a" : 0,
193
- "k" : [
194
- 100,
195
- 100,
196
- 100
197
- ],
198
- "ix" : 6,
199
- "l" : 2
200
- }
201
- },
202
- "ao" : 0,
203
- "ip" : 0,
204
- "op" : 276,
205
- "st" : 0,
206
- "bm" : 0
207
- },
208
- {
209
- "ddd" : 0,
210
- "ind" : 4,
211
- "ty" : 3,
212
- "nm" : "Check - Rotation",
213
- "parent" : 3,
214
- "sr" : 1,
215
- "ks" : {
216
- "o" : {
217
- "a" : 0,
218
- "k" : 0,
219
- "ix" : 11
220
- },
221
- "r" : {
222
- "a" : 1,
223
- "k" : [
224
- {
225
- "i" : {
226
- "x" : [
227
- 0.882
228
- ],
229
- "y" : [
230
- 0.499
231
- ]
232
- },
233
- "o" : {
234
- "x" : [
235
- 0.615
236
- ],
237
- "y" : [
238
- 0.248
239
- ]
240
- },
241
- "t" : -16,
242
- "s" : [
243
- -47.716
244
- ]
245
- },
246
- {
247
- "i" : {
248
- "x" : [
249
- 0.266
250
- ],
251
- "y" : [
252
- 1
253
- ]
254
- },
255
- "o" : {
256
- "x" : [
257
- 0.116
258
- ],
259
- "y" : [
260
- 0.342
261
- ]
262
- },
263
- "t" : 130,
264
- "s" : [
265
- 64.933
266
- ]
267
- },
268
- {
269
- "t" : 194,
270
- "s" : [
271
- 135.767
272
- ]
273
- }
274
- ],
275
- "ix" : 10
276
- },
277
- "p" : {
278
- "a" : 0,
279
- "k" : [
280
- 0,
281
- 0,
282
- 0
283
- ],
284
- "ix" : 2,
285
- "l" : 2
286
- },
287
- "a" : {
288
- "a" : 0,
289
- "k" : [
290
- 0,
291
- 0,
292
- 0
293
- ],
294
- "ix" : 1,
295
- "l" : 2
296
- },
297
- "s" : {
298
- "a" : 0,
299
- "k" : [
300
- 100,
301
- 100,
302
- 100
303
- ],
304
- "ix" : 6,
305
- "l" : 2
306
- }
307
- },
308
- "ao" : 0,
309
- "ip" : 0,
310
- "op" : 276,
311
- "st" : -180,
312
- "bm" : 0
313
- },
314
- {
315
- "ddd" : 0,
316
- "ind" : 5,
317
- "ty" : 4,
318
- "nm" : "Check - Shape",
319
- "parent" : 2,
320
- "sr" : 1,
321
- "ks" : {
322
- "o" : {
323
- "a" : 1,
324
- "k" : [
325
- {
326
- "i" : {
327
- "x" : [
328
- 0.667
329
- ],
330
- "y" : [
331
- 1
332
- ]
333
- },
334
- "o" : {
335
- "x" : [
336
- 0.167
337
- ],
338
- "y" : [
339
- 0.167
340
- ]
341
- },
342
- "t" : 177,
343
- "s" : [
344
- 0
345
- ]
346
- },
347
- {
348
- "i" : {
349
- "x" : [
350
- 0.833
351
- ],
352
- "y" : [
353
- 1
354
- ]
355
- },
356
- "o" : {
357
- "x" : [
358
- 0.333
359
- ],
360
- "y" : [
361
- 0
362
- ]
363
- },
364
- "t" : 183,
365
- "s" : [
366
- 100
367
- ]
368
- },
369
- {
370
- "i" : {
371
- "x" : [
372
- 0.12
373
- ],
374
- "y" : [
375
- 1
376
- ]
377
- },
378
- "o" : {
379
- "x" : [
380
- 0.66
381
- ],
382
- "y" : [
383
- 0
384
- ]
385
- },
386
- "t" : 215,
387
- "s" : [
388
- 100
389
- ]
390
- },
391
- {
392
- "t" : 244,
393
- "s" : [
394
- 0
395
- ]
396
- }
397
- ],
398
- "ix" : 11
399
- },
400
- "r" : {
401
- "a" : 0,
402
- "k" : 0,
403
- "ix" : 10
404
- },
405
- "p" : {
406
- "a" : 0,
407
- "k" : [
408
- 0,
409
- 0,
410
- 0
411
- ],
412
- "ix" : 2,
413
- "l" : 2
414
- },
415
- "a" : {
416
- "a" : 0,
417
- "k" : [
418
- 0,
419
- 0,
420
- 0
421
- ],
422
- "ix" : 1,
423
- "l" : 2
424
- },
425
- "s" : {
426
- "a" : 0,
427
- "k" : [
428
- 7.8,
429
- 7.8,
430
- 100
431
- ],
432
- "ix" : 6,
433
- "l" : 2
434
- }
435
- },
436
- "ao" : 0,
437
- "hasMask" : true,
438
- "masksProperties" : [
439
- {
440
- "inv" : false,
441
- "mode" : "a",
442
- "pt" : {
443
- "a" : 1,
444
- "k" : [
445
- {
446
- "i" : {
447
- "x" : 0.833,
448
- "y" : 0.833
449
- },
450
- "o" : {
451
- "x" : 0.167,
452
- "y" : 0.167
453
- },
454
- "t" : 181,
455
- "s" : [
456
- {
457
- "i" : [
458
- [
459
- 0,
460
- 0
461
- ],
462
- [
463
- 0,
464
- 0
465
- ],
466
- [
467
- 0,
468
- 0
469
- ],
470
- [
471
- 0,
472
- 0
473
- ]
474
- ],
475
- "o" : [
476
- [
477
- 0,
478
- 0
479
- ],
480
- [
481
- 0,
482
- 0
483
- ],
484
- [
485
- 0,
486
- 0
487
- ],
488
- [
489
- 0,
490
- 0
491
- ]
492
- ],
493
- "v" : [
494
- [
495
- -771.237,
496
- -335.882
497
- ],
498
- [
499
- -1035.729,
500
- -67.924
501
- ],
502
- [
503
- -674.086,
504
- 289.847
505
- ],
506
- [
507
- -409.593,
508
- 21.889
509
- ]
510
- ],
511
- "c" : true
512
- }
513
- ]
514
- },
515
- {
516
- "i" : {
517
- "x" : 0,
518
- "y" : 1
519
- },
520
- "o" : {
521
- "x" : 0.167,
522
- "y" : 0.167
523
- },
524
- "t" : 186,
525
- "s" : [
526
- {
527
- "i" : [
528
- [
529
- 0,
530
- 0
531
- ],
532
- [
533
- 0,
534
- 0
535
- ],
536
- [
537
- 0,
538
- 0
539
- ],
540
- [
541
- 0,
542
- 0
543
- ]
544
- ],
545
- "o" : [
546
- [
547
- 0,
548
- 0
549
- ],
550
- [
551
- 0,
552
- 0
553
- ],
554
- [
555
- 0,
556
- 0
557
- ],
558
- [
559
- 0,
560
- 0
561
- ]
562
- ],
563
- "v" : [
564
- [
565
- -509.57,
566
- -80.882
567
- ],
568
- [
569
- -774.063,
570
- 187.076
571
- ],
572
- [
573
- -359.086,
574
- 601.514
575
- ],
576
- [
577
- -94.593,
578
- 333.556
579
- ]
580
- ],
581
- "c" : true
582
- }
583
- ]
584
- },
585
- {
586
- "i" : {
587
- "x" : 0.833,
588
- "y" : 1
589
- },
590
- "o" : {
591
- "x" : 0.167,
592
- "y" : 0
593
- },
594
- "t" : 202,
595
- "s" : [
596
- {
597
- "i" : [
598
- [
599
- 0,
600
- 0
601
- ],
602
- [
603
- 0,
604
- 0
605
- ],
606
- [
607
- 0,
608
- 0
609
- ],
610
- [
611
- 0,
612
- 0
613
- ]
614
- ],
615
- "o" : [
616
- [
617
- 0,
618
- 0
619
- ],
620
- [
621
- 0,
622
- 0
623
- ],
624
- [
625
- 0,
626
- 0
627
- ],
628
- [
629
- 0,
630
- 0
631
- ]
632
- ],
633
- "v" : [
634
- [
635
- 146.43,
636
- -712.882
637
- ],
638
- [
639
- -774.063,
640
- 187.077
641
- ],
642
- [
643
- -359.086,
644
- 601.514
645
- ],
646
- [
647
- 561.407,
648
- -298.444
649
- ]
650
- ],
651
- "c" : true
652
- }
653
- ]
654
- },
655
- {
656
- "t" : 223,
657
- "s" : [
658
- {
659
- "i" : [
660
- [
661
- 0,
662
- 0
663
- ],
664
- [
665
- 0,
666
- 0
667
- ],
668
- [
669
- 0,
670
- 0
671
- ],
672
- [
673
- 0,
674
- 0
675
- ]
676
- ],
677
- "o" : [
678
- [
679
- 0,
680
- 0
681
- ],
682
- [
683
- 0,
684
- 0
685
- ],
686
- [
687
- 0,
688
- 0
689
- ],
690
- [
691
- 0,
692
- 0
693
- ]
694
- ],
695
- "v" : [
696
- [
697
- 146.43,
698
- -712.882
699
- ],
700
- [
701
- -774.063,
702
- 187.077
703
- ],
704
- [
705
- -359.086,
706
- 601.514
707
- ],
708
- [
709
- 561.407,
710
- -298.444
711
- ]
712
- ],
713
- "c" : true
714
- }
715
- ]
716
- }
717
- ],
718
- "ix" : 1
719
- },
720
- "o" : {
721
- "a" : 0,
722
- "k" : 100,
723
- "ix" : 3
724
- },
725
- "x" : {
726
- "a" : 0,
727
- "k" : 0,
728
- "ix" : 4
729
- },
730
- "nm" : "Mask 1"
731
- }
732
- ],
733
- "shapes" : [
734
- {
735
- "ty" : "gr",
736
- "it" : [
737
- {
738
- "ind" : 0,
739
- "ty" : "sh",
740
- "ix" : 1,
741
- "ks" : {
742
- "a" : 0,
743
- "k" : {
744
- "i" : [
745
- [
746
- 0,
747
- 0
748
- ],
749
- [
750
- 0,
751
- 0
752
- ],
753
- [
754
- 0,
755
- 0
756
- ]
757
- ],
758
- "o" : [
759
- [
760
- 0,
761
- 0
762
- ],
763
- [
764
- 0,
765
- 0
766
- ],
767
- [
768
- 0,
769
- 0
770
- ]
771
- ],
772
- "v" : [
773
- [
774
- -506,
775
- -8
776
- ],
777
- [
778
- -168,
779
- 326
780
- ],
781
- [
782
- 502,
783
- -346
784
- ]
785
- ],
786
- "c" : false
787
- },
788
- "ix" : 2
789
- },
790
- "nm" : "Path 1",
791
- "mn" : "ADBE Vector Shape - Group",
792
- "hd" : false
793
- },
794
- {
795
- "ty" : "st",
796
- "c" : {
797
- "a" : 1,
798
- "k" : [
799
- {
800
- "i" : {
801
- "x" : [
802
- 0.833
803
- ],
804
- "y" : [
805
- 0.833
806
- ]
807
- },
808
- "o" : {
809
- "x" : [
810
- 0.167
811
- ],
812
- "y" : [
813
- 0.167
814
- ]
815
- },
816
- "t" : 170,
817
- "s" : [
818
- 0.678431391716,
819
- 0,
820
- 0.537254929543,
821
- 1
822
- ]
823
- },
824
- {
825
- "t" : 209,
826
- "s" : [
827
- 0.890196084976,
828
- 0.109803922474,
829
- 0.372549027205,
830
- 1
831
- ]
832
- }
833
- ],
834
- "ix" : 3
835
- },
836
- "o" : {
837
- "a" : 0,
838
- "k" : 100,
839
- "ix" : 4
840
- },
841
- "w" : {
842
- "a" : 0,
843
- "k" : 90,
844
- "ix" : 5
845
- },
846
- "lc" : 1,
847
- "lj" : 1,
848
- "ml" : 4,
849
- "bm" : 0,
850
- "nm" : "Stroke 1",
851
- "mn" : "ADBE Vector Graphic - Stroke",
852
- "hd" : false
853
- },
854
- {
855
- "ty" : "tr",
856
- "p" : {
857
- "a" : 0,
858
- "k" : [
859
- 0,
860
- 0
861
- ],
862
- "ix" : 2
863
- },
864
- "a" : {
865
- "a" : 0,
866
- "k" : [
867
- 0,
868
- 0
869
- ],
870
- "ix" : 1
871
- },
872
- "s" : {
873
- "a" : 0,
874
- "k" : [
875
- 100,
876
- 100
877
- ],
878
- "ix" : 3
879
- },
880
- "r" : {
881
- "a" : 0,
882
- "k" : 0,
883
- "ix" : 6
884
- },
885
- "o" : {
886
- "a" : 0,
887
- "k" : 100,
888
- "ix" : 7
889
- },
890
- "sk" : {
891
- "a" : 0,
892
- "k" : 0,
893
- "ix" : 4
894
- },
895
- "sa" : {
896
- "a" : 0,
897
- "k" : 0,
898
- "ix" : 5
899
- },
900
- "nm" : "Transform"
901
- }
902
- ],
903
- "nm" : "Shape 1",
904
- "np" : 2,
905
- "cix" : 2,
906
- "bm" : 0,
907
- "ix" : 1,
908
- "mn" : "ADBE Vector Group",
909
- "hd" : false
910
- }
911
- ],
912
- "ip" : 181,
913
- "op" : 276,
914
- "st" : 145,
915
- "bm" : 0
916
- },
917
- {
918
- "ddd" : 0,
919
- "ind" : 6,
920
- "ty" : 4,
921
- "nm" : "Check - Dot",
922
- "parent" : 4,
923
- "sr" : 1,
924
- "ks" : {
925
- "o" : {
926
- "a" : 1,
927
- "k" : [
928
- {
929
- "i" : {
930
- "x" : [
931
- 0.667
932
- ],
933
- "y" : [
934
- 1
935
- ]
936
- },
937
- "o" : {
938
- "x" : [
939
- 0.333
940
- ],
941
- "y" : [
942
- 0
943
- ]
944
- },
945
- "t" : 128,
946
- "s" : [
947
- 0
948
- ]
949
- },
950
- {
951
- "t" : 180,
952
- "s" : [
953
- 100
954
- ]
955
- }
956
- ],
957
- "ix" : 11
958
- },
959
- "r" : {
960
- "a" : 0,
961
- "k" : 0,
962
- "ix" : 10
963
- },
964
- "p" : {
965
- "s" : true,
966
- "x" : {
967
- "a" : 0,
968
- "k" : 27.3,
969
- "ix" : 3
970
- },
971
- "y" : {
972
- "a" : 1,
973
- "k" : [
974
- {
975
- "i" : {
976
- "x" : [
977
- 0.906
978
- ],
979
- "y" : [
980
- 0.673
981
- ]
982
- },
983
- "o" : {
984
- "x" : [
985
- 0.754
986
- ],
987
- "y" : [
988
- 0
989
- ]
990
- },
991
- "t" : 112,
992
- "s" : [
993
- 443.293
994
- ]
995
- },
996
- {
997
- "t" : 181,
998
- "s" : [
999
- 31.545
1000
- ]
1001
- }
1002
- ],
1003
- "ix" : 4
1004
- }
1005
- },
1006
- "a" : {
1007
- "a" : 0,
1008
- "k" : [
1009
- 0,
1010
- 0,
1011
- 0
1012
- ],
1013
- "ix" : 1,
1014
- "l" : 2
1015
- },
1016
- "s" : {
1017
- "a" : 1,
1018
- "k" : [
1019
- {
1020
- "i" : {
1021
- "x" : [
1022
- 0.45,
1023
- 0.45,
1024
- 0.45
1025
- ],
1026
- "y" : [
1027
- 1,
1028
- 1,
1029
- 1
1030
- ]
1031
- },
1032
- "o" : {
1033
- "x" : [
1034
- 0.55,
1035
- 0.55,
1036
- 0.55
1037
- ],
1038
- "y" : [
1039
- 0,
1040
- 0,
1041
- 0
1042
- ]
1043
- },
1044
- "t" : -86,
1045
- "s" : [
1046
- 0,
1047
- 0,
1048
- 100
1049
- ]
1050
- },
1051
- {
1052
- "t" : -52,
1053
- "s" : [
1054
- 100,
1055
- 100,
1056
- 100
1057
- ]
1058
- }
1059
- ],
1060
- "ix" : 6,
1061
- "l" : 2
1062
- }
1063
- },
1064
- "ao" : 0,
1065
- "shapes" : [
1066
- {
1067
- "ty" : "gr",
1068
- "it" : [
1069
- {
1070
- "d" : 1,
1071
- "ty" : "el",
1072
- "s" : {
1073
- "a" : 1,
1074
- "k" : [
1075
- {
1076
- "i" : {
1077
- "x" : [
1078
- 0.667,
1079
- 0.667
1080
- ],
1081
- "y" : [
1082
- 1,
1083
- 1
1084
- ]
1085
- },
1086
- "o" : {
1087
- "x" : [
1088
- 0.603,
1089
- 0.603
1090
- ],
1091
- "y" : [
1092
- 0,
1093
- 0
1094
- ]
1095
- },
1096
- "t" : -16,
1097
- "s" : [
1098
- 0,
1099
- 0
1100
- ]
1101
- },
1102
- {
1103
- "i" : {
1104
- "x" : [
1105
- 0.115,
1106
- 0.115
1107
- ],
1108
- "y" : [
1109
- 1,
1110
- 1
1111
- ]
1112
- },
1113
- "o" : {
1114
- "x" : [
1115
- 1,
1116
- 1
1117
- ],
1118
- "y" : [
1119
- 0,
1120
- 0
1121
- ]
1122
- },
1123
- "t" : 158,
1124
- "s" : [
1125
- 26.461,
1126
- 26.461
1127
- ]
1128
- },
1129
- {
1130
- "t" : 192,
1131
- "s" : [
1132
- 7.6,
1133
- 7.6
1134
- ]
1135
- }
1136
- ],
1137
- "ix" : 2
1138
- },
1139
- "p" : {
1140
- "a" : 0,
1141
- "k" : [
1142
- 0,
1143
- 0
1144
- ],
1145
- "ix" : 3
1146
- },
1147
- "nm" : "Ellipse Path 1",
1148
- "mn" : "ADBE Vector Shape - Ellipse",
1149
- "hd" : false
1150
- },
1151
- {
1152
- "ty" : "fl",
1153
- "c" : {
1154
- "a" : 1,
1155
- "k" : [
1156
- {
1157
- "i" : {
1158
- "x" : [
1159
- 0.667
1160
- ],
1161
- "y" : [
1162
- 1
1163
- ]
1164
- },
1165
- "o" : {
1166
- "x" : [
1167
- 0.333
1168
- ],
1169
- "y" : [
1170
- 0
1171
- ]
1172
- },
1173
- "t" : 48,
1174
- "s" : [
1175
- 0.890196084976,
1176
- 0.109803922474,
1177
- 0.372549027205,
1178
- 1
1179
- ]
1180
- },
1181
- {
1182
- "t" : 190,
1183
- "s" : [
1184
- 0.674509803922,
1185
- 0.003921568627,
1186
- 0.529411764706,
1187
- 1
1188
- ]
1189
- }
1190
- ],
1191
- "ix" : 4
1192
- },
1193
- "o" : {
1194
- "a" : 0,
1195
- "k" : 100,
1196
- "ix" : 5
1197
- },
1198
- "r" : 1,
1199
- "bm" : 0,
1200
- "nm" : "Fill 1",
1201
- "mn" : "ADBE Vector Graphic - Fill",
1202
- "hd" : false
1203
- },
1204
- {
1205
- "ty" : "tr",
1206
- "p" : {
1207
- "a" : 0,
1208
- "k" : [
1209
- 0,
1210
- 0
1211
- ],
1212
- "ix" : 2
1213
- },
1214
- "a" : {
1215
- "a" : 0,
1216
- "k" : [
1217
- 0,
1218
- 0
1219
- ],
1220
- "ix" : 1
1221
- },
1222
- "s" : {
1223
- "a" : 0,
1224
- "k" : [
1225
- 100,
1226
- 100
1227
- ],
1228
- "ix" : 3
1229
- },
1230
- "r" : {
1231
- "a" : 0,
1232
- "k" : 0,
1233
- "ix" : 6
1234
- },
1235
- "o" : {
1236
- "a" : 0,
1237
- "k" : 100,
1238
- "ix" : 7
1239
- },
1240
- "sk" : {
1241
- "a" : 0,
1242
- "k" : 0,
1243
- "ix" : 4
1244
- },
1245
- "sa" : {
1246
- "a" : 0,
1247
- "k" : 0,
1248
- "ix" : 5
1249
- },
1250
- "nm" : "Transform"
1251
- }
1252
- ],
1253
- "nm" : "Ellipse 1",
1254
- "np" : 3,
1255
- "cix" : 2,
1256
- "bm" : 0,
1257
- "ix" : 1,
1258
- "mn" : "ADBE Vector Group",
1259
- "hd" : false
1260
- }
1261
- ],
1262
- "ip" : 0,
1263
- "op" : 181,
1264
- "st" : -194,
1265
- "bm" : 0
1266
- },
1267
- {
1268
- "ddd" : 0,
1269
- "ind" : 7,
1270
- "ty" : 3,
1271
- "nm" : "Ring - Rotation",
1272
- "parent" : 3,
1273
- "sr" : 1,
1274
- "ks" : {
1275
- "o" : {
1276
- "a" : 0,
1277
- "k" : 0,
1278
- "ix" : 11
1279
- },
1280
- "r" : {
1281
- "a" : 1,
1282
- "k" : [
1283
- {
1284
- "i" : {
1285
- "x" : [
1286
- 0.691
1287
- ],
1288
- "y" : [
1289
- 0.779
1290
- ]
1291
- },
1292
- "o" : {
1293
- "x" : [
1294
- 0.729
1295
- ],
1296
- "y" : [
1297
- 0.2
1298
- ]
1299
- },
1300
- "t" : -1.965,
1301
- "s" : [
1302
- 0
1303
- ]
1304
- },
1305
- {
1306
- "i" : {
1307
- "x" : [
1308
- 0.798
1309
- ],
1310
- "y" : [
1311
- 0.661
1312
- ]
1313
- },
1314
- "o" : {
1315
- "x" : [
1316
- 0.146
1317
- ],
1318
- "y" : [
1319
- 1.016
1320
- ]
1321
- },
1322
- "t" : 152.715,
1323
- "s" : [
1324
- 452.843
1325
- ]
1326
- },
1327
- {
1328
- "t" : 1234,
1329
- "s" : [
1330
- 778.401
1331
- ]
1332
- }
1333
- ],
1334
- "ix" : 10
1335
- },
1336
- "p" : {
1337
- "a" : 0,
1338
- "k" : [
1339
- 0,
1340
- 0,
1341
- 0
1342
- ],
1343
- "ix" : 2,
1344
- "l" : 2
1345
- },
1346
- "a" : {
1347
- "a" : 0,
1348
- "k" : [
1349
- 0,
1350
- 0,
1351
- 0
1352
- ],
1353
- "ix" : 1,
1354
- "l" : 2
1355
- },
1356
- "s" : {
1357
- "a" : 0,
1358
- "k" : [
1359
- 100,
1360
- 100,
1361
- 100
1362
- ],
1363
- "ix" : 6,
1364
- "l" : 2
1365
- }
1366
- },
1367
- "ao" : 0,
1368
- "ip" : 0,
1369
- "op" : 276,
1370
- "st" : -228,
1371
- "bm" : 0
1372
- },
1373
- {
1374
- "ddd" : 0,
1375
- "ind" : 8,
1376
- "ty" : 4,
1377
- "nm" : "Ring - Dot",
1378
- "parent" : 7,
1379
- "sr" : 1,
1380
- "ks" : {
1381
- "o" : {
1382
- "a" : 0,
1383
- "k" : 100,
1384
- "ix" : 11
1385
- },
1386
- "r" : {
1387
- "a" : 0,
1388
- "k" : 0,
1389
- "ix" : 10
1390
- },
1391
- "p" : {
1392
- "s" : true,
1393
- "x" : {
1394
- "a" : 0,
1395
- "k" : 0,
1396
- "ix" : 3
1397
- },
1398
- "y" : {
1399
- "a" : 1,
1400
- "k" : [
1401
- {
1402
- "i" : {
1403
- "x" : [
1404
- 0.833
1405
- ],
1406
- "y" : [
1407
- 0.787
1408
- ]
1409
- },
1410
- "o" : {
1411
- "x" : [
1412
- 0.411
1413
- ],
1414
- "y" : [
1415
- 0
1416
- ]
1417
- },
1418
- "t" : 31.66,
1419
- "s" : [
1420
- 443.349
1421
- ]
1422
- },
1423
- {
1424
- "i" : {
1425
- "x" : [
1426
- 0.326
1427
- ],
1428
- "y" : [
1429
- 1
1430
- ]
1431
- },
1432
- "o" : {
1433
- "x" : [
1434
- 0.167
1435
- ],
1436
- "y" : [
1437
- 0.153
1438
- ]
1439
- },
1440
- "t" : 60,
1441
- "s" : [
1442
- 358.113
1443
- ]
1444
- },
1445
- {
1446
- "t" : 127.158203125,
1447
- "s" : [
1448
- 76.349
1449
- ]
1450
- }
1451
- ],
1452
- "ix" : 4
1453
- }
1454
- },
1455
- "a" : {
1456
- "a" : 0,
1457
- "k" : [
1458
- 0,
1459
- 0,
1460
- 0
1461
- ],
1462
- "ix" : 1,
1463
- "l" : 2
1464
- },
1465
- "s" : {
1466
- "a" : 1,
1467
- "k" : [
1468
- {
1469
- "i" : {
1470
- "x" : [
1471
- 0.45,
1472
- 0.45,
1473
- 0.45
1474
- ],
1475
- "y" : [
1476
- 1,
1477
- 1,
1478
- 1
1479
- ]
1480
- },
1481
- "o" : {
1482
- "x" : [
1483
- 0.55,
1484
- 0.55,
1485
- 0.55
1486
- ],
1487
- "y" : [
1488
- 0,
1489
- 0,
1490
- 0
1491
- ]
1492
- },
1493
- "t" : -120,
1494
- "s" : [
1495
- 0,
1496
- 0,
1497
- 100
1498
- ]
1499
- },
1500
- {
1501
- "t" : -86,
1502
- "s" : [
1503
- 100,
1504
- 100,
1505
- 100
1506
- ]
1507
- }
1508
- ],
1509
- "ix" : 6,
1510
- "l" : 2
1511
- }
1512
- },
1513
- "ao" : 0,
1514
- "shapes" : [
1515
- {
1516
- "ty" : "gr",
1517
- "it" : [
1518
- {
1519
- "d" : 1,
1520
- "ty" : "el",
1521
- "s" : {
1522
- "a" : 1,
1523
- "k" : [
1524
- {
1525
- "i" : {
1526
- "x" : [
1527
- 0.348,
1528
- 0.348
1529
- ],
1530
- "y" : [
1531
- 1,
1532
- 1
1533
- ]
1534
- },
1535
- "o" : {
1536
- "x" : [
1537
- 0.333,
1538
- 0.333
1539
- ],
1540
- "y" : [
1541
- 0,
1542
- 0
1543
- ]
1544
- },
1545
- "t" : 0.34,
1546
- "s" : [
1547
- 0,
1548
- 0
1549
- ]
1550
- },
1551
- {
1552
- "i" : {
1553
- "x" : [
1554
- 0.348,
1555
- 0.348
1556
- ],
1557
- "y" : [
1558
- 1,
1559
- 1
1560
- ]
1561
- },
1562
- "o" : {
1563
- "x" : [
1564
- 0.628,
1565
- 0.628
1566
- ],
1567
- "y" : [
1568
- 0,
1569
- 0
1570
- ]
1571
- },
1572
- "t" : 34,
1573
- "s" : [
1574
- 28.007,
1575
- 28.007
1576
- ]
1577
- },
1578
- {
1579
- "i" : {
1580
- "x" : [
1581
- 0.45,
1582
- 0.45
1583
- ],
1584
- "y" : [
1585
- 1,
1586
- 1
1587
- ]
1588
- },
1589
- "o" : {
1590
- "x" : [
1591
- 0.628,
1592
- 0.628
1593
- ],
1594
- "y" : [
1595
- 0,
1596
- 0
1597
- ]
1598
- },
1599
- "t" : 70,
1600
- "s" : [
1601
- 28.007,
1602
- 28.007
1603
- ]
1604
- },
1605
- {
1606
- "t" : 127.158203125,
1607
- "s" : [
1608
- 7.4,
1609
- 7.4
1610
- ]
1611
- }
1612
- ],
1613
- "ix" : 2
1614
- },
1615
- "p" : {
1616
- "a" : 0,
1617
- "k" : [
1618
- 0,
1619
- 0
1620
- ],
1621
- "ix" : 3
1622
- },
1623
- "nm" : "Ellipse Path 1",
1624
- "mn" : "ADBE Vector Shape - Ellipse",
1625
- "hd" : false
1626
- },
1627
- {
1628
- "ty" : "fl",
1629
- "c" : {
1630
- "a" : 1,
1631
- "k" : [
1632
- {
1633
- "i" : {
1634
- "x" : [
1635
- 0.667
1636
- ],
1637
- "y" : [
1638
- 1
1639
- ]
1640
- },
1641
- "o" : {
1642
- "x" : [
1643
- 0.333
1644
- ],
1645
- "y" : [
1646
- 0
1647
- ]
1648
- },
1649
- "t" : 16.428,
1650
- "s" : [
1651
- 0.674509803922,
1652
- 0.003921568627,
1653
- 0.529411764706,
1654
- 1
1655
- ]
1656
- },
1657
- {
1658
- "t" : 128,
1659
- "s" : [
1660
- 0.890196084976,
1661
- 0.109803922474,
1662
- 0.372549027205,
1663
- 1
1664
- ]
1665
- }
1666
- ],
1667
- "ix" : 4
1668
- },
1669
- "o" : {
1670
- "a" : 0,
1671
- "k" : 100,
1672
- "ix" : 5
1673
- },
1674
- "r" : 1,
1675
- "bm" : 0,
1676
- "nm" : "Fill 1",
1677
- "mn" : "ADBE Vector Graphic - Fill",
1678
- "hd" : false
1679
- },
1680
- {
1681
- "ty" : "tr",
1682
- "p" : {
1683
- "a" : 0,
1684
- "k" : [
1685
- 0,
1686
- 0
1687
- ],
1688
- "ix" : 2
1689
- },
1690
- "a" : {
1691
- "a" : 0,
1692
- "k" : [
1693
- 0,
1694
- 0
1695
- ],
1696
- "ix" : 1
1697
- },
1698
- "s" : {
1699
- "a" : 0,
1700
- "k" : [
1701
- 100,
1702
- 100
1703
- ],
1704
- "ix" : 3
1705
- },
1706
- "r" : {
1707
- "a" : 0,
1708
- "k" : 0,
1709
- "ix" : 6
1710
- },
1711
- "o" : {
1712
- "a" : 0,
1713
- "k" : 100,
1714
- "ix" : 7
1715
- },
1716
- "sk" : {
1717
- "a" : 0,
1718
- "k" : 0,
1719
- "ix" : 4
1720
- },
1721
- "sa" : {
1722
- "a" : 0,
1723
- "k" : 0,
1724
- "ix" : 5
1725
- },
1726
- "nm" : "Transform"
1727
- }
1728
- ],
1729
- "nm" : "Ellipse 1",
1730
- "np" : 3,
1731
- "cix" : 2,
1732
- "bm" : 0,
1733
- "ix" : 1,
1734
- "mn" : "ADBE Vector Group",
1735
- "hd" : false
1736
- }
1737
- ],
1738
- "ip" : 0,
1739
- "op" : 122,
1740
- "st" : -228,
1741
- "bm" : 0
1742
- },
1743
- {
1744
- "ddd" : 0,
1745
- "ind" : 9,
1746
- "ty" : 4,
1747
- "nm" : "Ring",
1748
- "parent" : 3,
1749
- "sr" : 1,
1750
- "ks" : {
1751
- "o" : {
1752
- "a" : 1,
1753
- "k" : [
1754
- {
1755
- "i" : {
1756
- "x" : [
1757
- 0.12
1758
- ],
1759
- "y" : [
1760
- 1
1761
- ]
1762
- },
1763
- "o" : {
1764
- "x" : [
1765
- 0.66
1766
- ],
1767
- "y" : [
1768
- 0
1769
- ]
1770
- },
1771
- "t" : 224,
1772
- "s" : [
1773
- 100
1774
- ]
1775
- },
1776
- {
1777
- "t" : 253,
1778
- "s" : [
1779
- 0
1780
- ]
1781
- }
1782
- ],
1783
- "ix" : 11
1784
- },
1785
- "r" : {
1786
- "a" : 1,
1787
- "k" : [
1788
- {
1789
- "i" : {
1790
- "x" : [
1791
- 0.12
1792
- ],
1793
- "y" : [
1794
- 1
1795
- ]
1796
- },
1797
- "o" : {
1798
- "x" : [
1799
- 0.167
1800
- ],
1801
- "y" : [
1802
- 0.167
1803
- ]
1804
- },
1805
- "t" : 118.143,
1806
- "s" : [
1807
- 0
1808
- ]
1809
- },
1810
- {
1811
- "t" : 184,
1812
- "s" : [
1813
- 161.831
1814
- ]
1815
- }
1816
- ],
1817
- "ix" : 10
1818
- },
1819
- "p" : {
1820
- "s" : true,
1821
- "x" : {
1822
- "a" : 0,
1823
- "k" : -0.125,
1824
- "ix" : 3
1825
- },
1826
- "y" : {
1827
- "a" : 0,
1828
- "k" : 0,
1829
- "ix" : 4
1830
- }
1831
- },
1832
- "a" : {
1833
- "a" : 0,
1834
- "k" : [
1835
- 0,
1836
- 0,
1837
- 0
1838
- ],
1839
- "ix" : 1,
1840
- "l" : 2
1841
- },
1842
- "s" : {
1843
- "a" : 1,
1844
- "k" : [
1845
- {
1846
- "i" : {
1847
- "x" : [
1848
- 0.155,
1849
- 0.155,
1850
- 0.155
1851
- ],
1852
- "y" : [
1853
- 0.973,
1854
- 0.973,
1855
- -1.726
1856
- ]
1857
- },
1858
- "o" : {
1859
- "x" : [
1860
- 0.147,
1861
- 0.147,
1862
- 0.189
1863
- ],
1864
- "y" : [
1865
- 0.166,
1866
- 0.166,
1867
- 12.598
1868
- ]
1869
- },
1870
- "t" : 89.072,
1871
- "s" : [
1872
- 0,
1873
- 0,
1874
- 100
1875
- ]
1876
- },
1877
- {
1878
- "i" : {
1879
- "x" : [
1880
- 0.638,
1881
- 0.638,
1882
- 0.638
1883
- ],
1884
- "y" : [
1885
- 1,
1886
- 1,
1887
- 1
1888
- ]
1889
- },
1890
- "o" : {
1891
- "x" : [
1892
- 0.306,
1893
- 0.306,
1894
- 0.306
1895
- ],
1896
- "y" : [
1897
- 0.651,
1898
- 0.651,
1899
- 0.496
1900
- ]
1901
- },
1902
- "t" : 114.17,
1903
- "s" : [
1904
- 7.741,
1905
- 7.741,
1906
- 100
1907
- ]
1908
- },
1909
- {
1910
- "t" : 126.787109375,
1911
- "s" : [
1912
- 7.8,
1913
- 7.8,
1914
- 100
1915
- ]
1916
- }
1917
- ],
1918
- "ix" : 6,
1919
- "l" : 2
1920
- }
1921
- },
1922
- "ao" : 0,
1923
- "shapes" : [
1924
- {
1925
- "ty" : "gr",
1926
- "it" : [
1927
- {
1928
- "d" : 1,
1929
- "ty" : "el",
1930
- "s" : {
1931
- "a" : 0,
1932
- "k" : [
1933
- 2016,
1934
- 2016
1935
- ],
1936
- "ix" : 2
1937
- },
1938
- "p" : {
1939
- "a" : 0,
1940
- "k" : [
1941
- 0,
1942
- 0
1943
- ],
1944
- "ix" : 3
1945
- },
1946
- "nm" : "Ellipse Path 1",
1947
- "mn" : "ADBE Vector Shape - Ellipse",
1948
- "hd" : false
1949
- },
1950
- {
1951
- "ty" : "gs",
1952
- "o" : {
1953
- "a" : 0,
1954
- "k" : 100,
1955
- "ix" : 9
1956
- },
1957
- "w" : {
1958
- "a" : 0,
1959
- "k" : 75,
1960
- "ix" : 10
1961
- },
1962
- "g" : {
1963
- "p" : 7,
1964
- "k" : {
1965
- "a" : 1,
1966
- "k" : [
1967
- {
1968
- "i" : {
1969
- "x" : 0.833,
1970
- "y" : 0.833
1971
- },
1972
- "o" : {
1973
- "x" : 0.167,
1974
- "y" : 0.167
1975
- },
1976
- "t" : 104,
1977
- "s" : [
1978
- 0,
1979
- 0.251,
1980
- 0.016,
1981
- 0.647,
1982
- 0.282,
1983
- 0.437,
1984
- 0.008,
1985
- 0.606,
1986
- 0.565,
1987
- 0.624,
1988
- 0,
1989
- 0.565,
1990
- 0.782,
1991
- 0.72,
1992
- 0,
1993
- 0.518,
1994
- 0.998,
1995
- 0.816,
1996
- 0,
1997
- 0.471,
1998
- 0.999,
1999
- 0.816,
2000
- 0,
2001
- 0.471,
2002
- 1,
2003
- 0.816,
2004
- 0,
2005
- 0.471
2006
- ]
2007
- },
2008
- {
2009
- "t" : 118.142578125,
2010
- "s" : [
2011
- 0,
2012
- 0.89,
2013
- 0.11,
2014
- 0.373,
2015
- 0,
2016
- 0.89,
2017
- 0.11,
2018
- 0.373,
2019
- 0,
2020
- 0.89,
2021
- 0.11,
2022
- 0.373,
2023
- 0.282,
2024
- 0.89,
2025
- 0.11,
2026
- 0.373,
2027
- 0.565,
2028
- 0.89,
2029
- 0.11,
2030
- 0.373,
2031
- 0.782,
2032
- 0.89,
2033
- 0.11,
2034
- 0.373,
2035
- 1,
2036
- 0.89,
2037
- 0.11,
2038
- 0.373
2039
- ]
2040
- }
2041
- ],
2042
- "ix" : 8
2043
- }
2044
- },
2045
- "s" : {
2046
- "a" : 0,
2047
- "k" : [
2048
- 35.669,
2049
- 993.415
2050
- ],
2051
- "ix" : 4
2052
- },
2053
- "e" : {
2054
- "a" : 0,
2055
- "k" : [
2056
- -17.803,
2057
- -1034.77
2058
- ],
2059
- "ix" : 5
2060
- },
2061
- "t" : 2,
2062
- "h" : {
2063
- "a" : 0,
2064
- "k" : 0,
2065
- "ix" : 6
2066
- },
2067
- "a" : {
2068
- "a" : 0,
2069
- "k" : 0,
2070
- "ix" : 7
2071
- },
2072
- "lc" : 2,
2073
- "lj" : 1,
2074
- "ml" : 4,
2075
- "ml2" : {
2076
- "a" : 0,
2077
- "k" : 4,
2078
- "ix" : 13
2079
- },
2080
- "bm" : 0,
2081
- "nm" : "Gradient Stroke 1",
2082
- "mn" : "ADBE Vector Graphic - G-Stroke",
2083
- "hd" : false
2084
- },
2085
- {
2086
- "ty" : "tr",
2087
- "p" : {
2088
- "a" : 0,
2089
- "k" : [
2090
- 0,
2091
- 0
2092
- ],
2093
- "ix" : 2
2094
- },
2095
- "a" : {
2096
- "a" : 0,
2097
- "k" : [
2098
- 0,
2099
- 0
2100
- ],
2101
- "ix" : 1
2102
- },
2103
- "s" : {
2104
- "a" : 0,
2105
- "k" : [
2106
- 100,
2107
- 100
2108
- ],
2109
- "ix" : 3
2110
- },
2111
- "r" : {
2112
- "a" : 0,
2113
- "k" : 145.1,
2114
- "ix" : 6
2115
- },
2116
- "o" : {
2117
- "a" : 0,
2118
- "k" : 100,
2119
- "ix" : 7
2120
- },
2121
- "sk" : {
2122
- "a" : 0,
2123
- "k" : 0,
2124
- "ix" : 4
2125
- },
2126
- "sa" : {
2127
- "a" : 0,
2128
- "k" : 0,
2129
- "ix" : 5
2130
- },
2131
- "nm" : "Transform"
2132
- }
2133
- ],
2134
- "nm" : "Group 1",
2135
- "np" : 3,
2136
- "cix" : 2,
2137
- "bm" : 0,
2138
- "ix" : 1,
2139
- "mn" : "ADBE Vector Group",
2140
- "hd" : false
2141
- },
2142
- {
2143
- "ty" : "tm",
2144
- "s" : {
2145
- "a" : 0,
2146
- "k" : 0,
2147
- "ix" : 1
2148
- },
2149
- "e" : {
2150
- "a" : 1,
2151
- "k" : [
2152
- {
2153
- "i" : {
2154
- "x" : [
2155
- 0.574
2156
- ],
2157
- "y" : [
2158
- 0.83
2159
- ]
2160
- },
2161
- "o" : {
2162
- "x" : [
2163
- 0.171
2164
- ],
2165
- "y" : [
2166
- 0.131
2167
- ]
2168
- },
2169
- "t" : 118.143,
2170
- "s" : [
2171
- 0
2172
- ]
2173
- },
2174
- {
2175
- "i" : {
2176
- "x" : [
2177
- 0.672
2178
- ],
2179
- "y" : [
2180
- 0.849
2181
- ]
2182
- },
2183
- "o" : {
2184
- "x" : [
2185
- 0.403
2186
- ],
2187
- "y" : [
2188
- 0.64
2189
- ]
2190
- },
2191
- "t" : 166,
2192
- "s" : [
2193
- 84.086
2194
- ]
2195
- },
2196
- {
2197
- "t" : 202,
2198
- "s" : [
2199
- 100
2200
- ]
2201
- }
2202
- ],
2203
- "ix" : 2
2204
- },
2205
- "o" : {
2206
- "a" : 0,
2207
- "k" : 0,
2208
- "ix" : 3
2209
- },
2210
- "m" : 1,
2211
- "ix" : 2,
2212
- "nm" : "Trim Paths 1",
2213
- "mn" : "ADBE Vector Filter - Trim",
2214
- "hd" : false
2215
- }
2216
- ],
2217
- "ip" : 120,
2218
- "op" : 276,
2219
- "st" : 100,
2220
- "bm" : 0
2221
- },
2222
- {
2223
- "ddd" : 0,
2224
- "ind" : 10,
2225
- "ty" : 3,
2226
- "nm" : "Fill - Rotation",
2227
- "parent" : 3,
2228
- "sr" : 1,
2229
- "ks" : {
2230
- "o" : {
2231
- "a" : 0,
2232
- "k" : 0,
2233
- "ix" : 11
2234
- },
2235
- "r" : {
2236
- "a" : 1,
2237
- "k" : [
2238
- {
2239
- "i" : {
2240
- "x" : [
2241
- 0.829
2242
- ],
2243
- "y" : [
2244
- 0.721
2245
- ]
2246
- },
2247
- "o" : {
2248
- "x" : [
2249
- 0.626
2250
- ],
2251
- "y" : [
2252
- 0.43
2253
- ]
2254
- },
2255
- "t" : 0,
2256
- "s" : [
2257
- 172.831
2258
- ]
2259
- },
2260
- {
2261
- "i" : {
2262
- "x" : [
2263
- 0.453
2264
- ],
2265
- "y" : [
2266
- 0.843
2267
- ]
2268
- },
2269
- "o" : {
2270
- "x" : [
2271
- 0.274
2272
- ],
2273
- "y" : [
2274
- 0.404
2275
- ]
2276
- },
2277
- "t" : 94,
2278
- "s" : [
2279
- 365.073
2280
- ]
2281
- },
2282
- {
2283
- "i" : {
2284
- "x" : [
2285
- 0.779
2286
- ],
2287
- "y" : [
2288
- 0.699
2289
- ]
2290
- },
2291
- "o" : {
2292
- "x" : [
2293
- 0.242
2294
- ],
2295
- "y" : [
2296
- 0.208
2297
- ]
2298
- },
2299
- "t" : 146,
2300
- "s" : [
2301
- 483.134
2302
- ]
2303
- },
2304
- {
2305
- "t" : 1296,
2306
- "s" : [
2307
- 1358.251
2308
- ]
2309
- }
2310
- ],
2311
- "ix" : 10
2312
- },
2313
- "p" : {
2314
- "a" : 0,
2315
- "k" : [
2316
- 0,
2317
- 0,
2318
- 0
2319
- ],
2320
- "ix" : 2,
2321
- "l" : 2
2322
- },
2323
- "a" : {
2324
- "a" : 0,
2325
- "k" : [
2326
- 0,
2327
- 0,
2328
- 0
2329
- ],
2330
- "ix" : 1,
2331
- "l" : 2
2332
- },
2333
- "s" : {
2334
- "a" : 0,
2335
- "k" : [
2336
- 100,
2337
- 100,
2338
- 100
2339
- ],
2340
- "ix" : 6,
2341
- "l" : 2
2342
- }
2343
- },
2344
- "ao" : 0,
2345
- "ip" : 0,
2346
- "op" : 276,
2347
- "st" : -220,
2348
- "bm" : 0
2349
- },
2350
- {
2351
- "ddd" : 0,
2352
- "ind" : 11,
2353
- "ty" : 4,
2354
- "nm" : "Fill - Dot",
2355
- "parent" : 10,
2356
- "sr" : 1,
2357
- "ks" : {
2358
- "o" : {
2359
- "a" : 1,
2360
- "k" : [
2361
- {
2362
- "i" : {
2363
- "x" : [
2364
- 0.12
2365
- ],
2366
- "y" : [
2367
- 1
2368
- ]
2369
- },
2370
- "o" : {
2371
- "x" : [
2372
- 0.66
2373
- ],
2374
- "y" : [
2375
- 0
2376
- ]
2377
- },
2378
- "t" : 224,
2379
- "s" : [
2380
- 100
2381
- ]
2382
- },
2383
- {
2384
- "t" : 253,
2385
- "s" : [
2386
- 0
2387
- ]
2388
- }
2389
- ],
2390
- "ix" : 11
2391
- },
2392
- "r" : {
2393
- "a" : 0,
2394
- "k" : 0,
2395
- "ix" : 10
2396
- },
2397
- "p" : {
2398
- "s" : true,
2399
- "x" : {
2400
- "a" : 1,
2401
- "k" : [
2402
- {
2403
- "i" : {
2404
- "x" : [
2405
- 0.34
2406
- ],
2407
- "y" : [
2408
- 1
2409
- ]
2410
- },
2411
- "o" : {
2412
- "x" : [
2413
- 0.66
2414
- ],
2415
- "y" : [
2416
- 0
2417
- ]
2418
- },
2419
- "t" : 66,
2420
- "s" : [
2421
- -20
2422
- ]
2423
- },
2424
- {
2425
- "t" : 148,
2426
- "s" : [
2427
- 0
2428
- ]
2429
- }
2430
- ],
2431
- "ix" : 3
2432
- },
2433
- "y" : {
2434
- "a" : 1,
2435
- "k" : [
2436
- {
2437
- "i" : {
2438
- "x" : [
2439
- 0.34
2440
- ],
2441
- "y" : [
2442
- 1
2443
- ]
2444
- },
2445
- "o" : {
2446
- "x" : [
2447
- 0.66
2448
- ],
2449
- "y" : [
2450
- 0
2451
- ]
2452
- },
2453
- "t" : 66,
2454
- "s" : [
2455
- 329.349
2456
- ]
2457
- },
2458
- {
2459
- "t" : 148,
2460
- "s" : [
2461
- 0
2462
- ]
2463
- }
2464
- ],
2465
- "ix" : 4
2466
- }
2467
- },
2468
- "a" : {
2469
- "a" : 0,
2470
- "k" : [
2471
- 0,
2472
- 0,
2473
- 0
2474
- ],
2475
- "ix" : 1,
2476
- "l" : 2
2477
- },
2478
- "s" : {
2479
- "a" : 1,
2480
- "k" : [
2481
- {
2482
- "i" : {
2483
- "x" : [
2484
- 0.45,
2485
- 0.45,
2486
- 0.45
2487
- ],
2488
- "y" : [
2489
- 1,
2490
- 1,
2491
- 1
2492
- ]
2493
- },
2494
- "o" : {
2495
- "x" : [
2496
- 0.55,
2497
- 0.55,
2498
- 0.55
2499
- ],
2500
- "y" : [
2501
- 0,
2502
- 0,
2503
- 0
2504
- ]
2505
- },
2506
- "t" : -112,
2507
- "s" : [
2508
- 0,
2509
- 0,
2510
- 100
2511
- ]
2512
- },
2513
- {
2514
- "t" : -78,
2515
- "s" : [
2516
- 100,
2517
- 100,
2518
- 100
2519
- ]
2520
- }
2521
- ],
2522
- "ix" : 6,
2523
- "l" : 2
2524
- }
2525
- },
2526
- "ao" : 0,
2527
- "shapes" : [
2528
- {
2529
- "ty" : "gr",
2530
- "it" : [
2531
- {
2532
- "d" : 1,
2533
- "ty" : "el",
2534
- "s" : {
2535
- "a" : 1,
2536
- "k" : [
2537
- {
2538
- "i" : {
2539
- "x" : [
2540
- 0.667,
2541
- 0.667
2542
- ],
2543
- "y" : [
2544
- 1.095,
2545
- 1.095
2546
- ]
2547
- },
2548
- "o" : {
2549
- "x" : [
2550
- 0.333,
2551
- 0.333
2552
- ],
2553
- "y" : [
2554
- 0,
2555
- 0
2556
- ]
2557
- },
2558
- "t" : -24,
2559
- "s" : [
2560
- 10,
2561
- 10
2562
- ]
2563
- },
2564
- {
2565
- "i" : {
2566
- "x" : [
2567
- 0.667,
2568
- 0.667
2569
- ],
2570
- "y" : [
2571
- 0.933,
2572
- 0.933
2573
- ]
2574
- },
2575
- "o" : {
2576
- "x" : [
2577
- 0.333,
2578
- 0.333
2579
- ],
2580
- "y" : [
2581
- 0.085,
2582
- 0.085
2583
- ]
2584
- },
2585
- "t" : 0,
2586
- "s" : [
2587
- 0,
2588
- 0
2589
- ]
2590
- },
2591
- {
2592
- "i" : {
2593
- "x" : [
2594
- 0.667,
2595
- 0.667
2596
- ],
2597
- "y" : [
2598
- 1,
2599
- 1
2600
- ]
2601
- },
2602
- "o" : {
2603
- "x" : [
2604
- 0.333,
2605
- 0.333
2606
- ],
2607
- "y" : [
2608
- 0.842,
2609
- 0.842
2610
- ]
2611
- },
2612
- "t" : 34,
2613
- "s" : [
2614
- 15.926,
2615
- 15.926
2616
- ]
2617
- },
2618
- {
2619
- "i" : {
2620
- "x" : [
2621
- 0.34,
2622
- 0.34
2623
- ],
2624
- "y" : [
2625
- 1,
2626
- 1
2627
- ]
2628
- },
2629
- "o" : {
2630
- "x" : [
2631
- 0.88,
2632
- 0.88
2633
- ],
2634
- "y" : [
2635
- 0,
2636
- 0
2637
- ]
2638
- },
2639
- "t" : 90,
2640
- "s" : [
2641
- 18,
2642
- 18
2643
- ]
2644
- },
2645
- {
2646
- "t" : 168,
2647
- "s" : [
2648
- 134,
2649
- 134
2650
- ]
2651
- }
2652
- ],
2653
- "ix" : 2
2654
- },
2655
- "p" : {
2656
- "a" : 0,
2657
- "k" : [
2658
- 0,
2659
- 0
2660
- ],
2661
- "ix" : 3
2662
- },
2663
- "nm" : "Ellipse Path 1",
2664
- "mn" : "ADBE Vector Shape - Ellipse",
2665
- "hd" : false
2666
- },
2667
- {
2668
- "ty" : "fl",
2669
- "c" : {
2670
- "a" : 1,
2671
- "k" : [
2672
- {
2673
- "i" : {
2674
- "x" : [
2675
- 0.667
2676
- ],
2677
- "y" : [
2678
- 1
2679
- ]
2680
- },
2681
- "o" : {
2682
- "x" : [
2683
- 0.333
2684
- ],
2685
- "y" : [
2686
- 0
2687
- ]
2688
- },
2689
- "t" : -24,
2690
- "s" : [
2691
- 0.890196084976,
2692
- 0.109803922474,
2693
- 0.372549027205,
2694
- 1
2695
- ]
2696
- },
2697
- {
2698
- "i" : {
2699
- "x" : [
2700
- 0.34
2701
- ],
2702
- "y" : [
2703
- 1
2704
- ]
2705
- },
2706
- "o" : {
2707
- "x" : [
2708
- 0.88
2709
- ],
2710
- "y" : [
2711
- 0
2712
- ]
2713
- },
2714
- "t" : 90,
2715
- "s" : [
2716
- 0.674509803922,
2717
- 0.003921568627,
2718
- 0.529411764706,
2719
- 1
2720
- ]
2721
- },
2722
- {
2723
- "t" : 168,
2724
- "s" : [
2725
- 0.976470589638,
2726
- 0.823529422283,
2727
- 0.874509811401,
2728
- 1
2729
- ]
2730
- }
2731
- ],
2732
- "ix" : 4
2733
- },
2734
- "o" : {
2735
- "a" : 0,
2736
- "k" : 100,
2737
- "ix" : 5
2738
- },
2739
- "r" : 1,
2740
- "bm" : 0,
2741
- "nm" : "Fill 1",
2742
- "mn" : "ADBE Vector Graphic - Fill",
2743
- "hd" : false
2744
- },
2745
- {
2746
- "ty" : "tr",
2747
- "p" : {
2748
- "a" : 0,
2749
- "k" : [
2750
- 0,
2751
- 0
2752
- ],
2753
- "ix" : 2
2754
- },
2755
- "a" : {
2756
- "a" : 0,
2757
- "k" : [
2758
- 0,
2759
- 0
2760
- ],
2761
- "ix" : 1
2762
- },
2763
- "s" : {
2764
- "a" : 0,
2765
- "k" : [
2766
- 100,
2767
- 100
2768
- ],
2769
- "ix" : 3
2770
- },
2771
- "r" : {
2772
- "a" : 0,
2773
- "k" : 0,
2774
- "ix" : 6
2775
- },
2776
- "o" : {
2777
- "a" : 0,
2778
- "k" : 100,
2779
- "ix" : 7
2780
- },
2781
- "sk" : {
2782
- "a" : 0,
2783
- "k" : 0,
2784
- "ix" : 4
2785
- },
2786
- "sa" : {
2787
- "a" : 0,
2788
- "k" : 0,
2789
- "ix" : 5
2790
- },
2791
- "nm" : "Transform"
2792
- }
2793
- ],
2794
- "nm" : "Ellipse 1",
2795
- "np" : 3,
2796
- "cix" : 2,
2797
- "bm" : 0,
2798
- "ix" : 1,
2799
- "mn" : "ADBE Vector Group",
2800
- "hd" : false
2801
- }
2802
- ],
2803
- "ip" : 0,
2804
- "op" : 276,
2805
- "st" : -220,
2806
- "bm" : 0
2807
- }
2808
- ],
2809
- "markers" : [
2810
- {
2811
- "tm" : 225,
2812
- "cm" : "Y Move Up Start",
2813
- "dr" : 0
2814
- },
2815
- {
2816
- "tm" : 275,
2817
- "cm" : "Y Move Up End\r",
2818
- "dr" : 0
2819
- }
2820
- ]
2821
- }