Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
E
Easy Cleaner Junk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
Easy Cleaner Junk
Commits
01ad2ff5
Commit
01ad2ff5
authored
Jul 12, 2024
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
...
parent
9d1e6f03
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
166 additions
and
124 deletions
+166
-124
LargeFileAnimationActivity.kt
...anerjunk/activity/largefile/LargeFileAnimationActivity.kt
+3
-0
ScreenShotAnimationActivity.kt
...erjunk/activity/screenshot/ScreenShotAnimationActivity.kt
+20
-10
RepeatPhotoAnimationActivity.kt
...nk/activity/similarphotos/RepeatPhotoAnimationActivity.kt
+16
-2
WhatsAppCleanerAnimationActivity.kt
...unk/activity/whatsapp/WhatsAppCleanerAnimationActivity.kt
+13
-7
activity_battery_info_animation.xml
app/src/main/res/layout/activity_battery_info_animation.xml
+1
-1
activity_repeat_photo_animation.xml
app/src/main/res/layout/activity_repeat_photo_animation.xml
+39
-37
activity_screen_shot_animation.xml
app/src/main/res/layout/activity_screen_shot_animation.xml
+36
-33
activity_start_compression_photo.xml
app/src/main/res/layout/activity_start_compression_photo.xml
+1
-1
activity_whats_app_cleaner_animation.xml
.../main/res/layout/activity_whats_app_cleaner_animation.xml
+36
-33
loading_completed_w.json
app/src/main/res/raw/loading_completed_w.json
+1
-0
No files found.
app/src/main/java/com/test/easy/easycleanerjunk/activity/largefile/LargeFileAnimationActivity.kt
View file @
01ad2ff5
package
com.test.easy.easycleanerjunk.activity.largefile
import
android.annotation.SuppressLint
import
android.content.Intent
import
android.os.Bundle
import
android.view.View
...
...
@@ -37,6 +38,7 @@ class LargeFileAnimationActivity : BaseActivity<ActivityLargeFileAnimationBindin
}
@SuppressLint
(
"SetTextI18n"
)
private
fun
playLottie
(
showFinish
:
(()
->
Unit
)?
=
null
)
{
lifecycleScope
.
launch
(
Dispatchers
.
Main
)
{
...
...
@@ -45,6 +47,7 @@ class LargeFileAnimationActivity : BaseActivity<ActivityLargeFileAnimationBindin
binding
.
lottie
.
clearAnimation
()
binding
.
lottieCompleted
.
visibility
=
View
.
VISIBLE
binding
.
lottieCompleted
.
playAnimation
()
binding
.
tv
.
text
=
"Completed!"
delay
(
1000
)
AdmobUtils
.
showInterstitialAd
(
this
@LargeFileAnimationActivity
)
{
showFinish
?.
invoke
()
...
...
app/src/main/java/com/test/easy/easycleanerjunk/activity/screenshot/ScreenShotAnimationActivity.kt
View file @
01ad2ff5
package
com.test.easy.easycleanerjunk.activity.screenshot
import
android.annotation.SuppressLint
import
android.content.Intent
import
android.os.Bundle
import
android.os.Handler
...
...
@@ -11,6 +12,7 @@ import androidx.activity.enableEdgeToEdge
import
androidx.appcompat.app.AppCompatActivity
import
androidx.core.view.ViewCompat
import
androidx.core.view.WindowInsetsCompat
import
androidx.lifecycle.lifecycleScope
import
com.test.easy.easycleanerjunk.R
import
com.test.easy.easycleanerjunk.databinding.ActivityScreenShotAnimationBinding
import
com.test.easy.easycleanerjunk.helps.BaseActivity
...
...
@@ -18,6 +20,9 @@ import com.test.easy.easycleanerjunk.helps.PermissionHelp.checkStorePermission
import
com.test.easy.easycleanerjunk.helps.PermissionHelp.requestStorePermission
import
com.test.easy.easycleanerjunk.helps.ads.AdmobUtils
import
com.test.easy.easycleanerjunk.view.DialogViews.showGerPermission
import
kotlinx.coroutines.Dispatchers
import
kotlinx.coroutines.delay
import
kotlinx.coroutines.launch
import
kotlin.random.Random
class
ScreenShotAnimationActivity
:
BaseActivity
<
ActivityScreenShotAnimationBinding
>()
{
...
...
@@ -42,21 +47,26 @@ class ScreenShotAnimationActivity : BaseActivity<ActivityScreenShotAnimationBind
}
@SuppressLint
(
"SetTextI18n"
)
private
fun
playLottie
()
{
binding
.
clLottie
.
visibility
=
View
.
VISIBLE
binding
.
clLottie
.
setOnClickListener
{
}
binding
.
idLottie
.
imageAssetsFolder
=
"easy_imgcompress/images/"
binding
.
idLottie
.
setAnimation
(
"easy_imgcompress/data.json"
)
binding
.
idLottie
.
playAnimation
()
Handler
().
postDelayed
({
AdmobUtils
.
showInterstitialAd
(
this
)
{
binding
.
clLottie
.
visibility
=
View
.
GONE
binding
.
lottie
.
imageAssetsFolder
=
"easy_imgcompress/images/"
binding
.
lottie
.
setAnimation
(
"easy_imgcompress/data.json"
)
binding
.
lottie
.
playAnimation
()
lifecycleScope
.
launch
(
Dispatchers
.
Main
)
{
delay
(
Random
.
nextLong
(
2500
,
4000
))
binding
.
lottie
.
cancelAnimation
()
binding
.
lottie
.
visibility
=
View
.
GONE
binding
.
lottieCompleted
.
visibility
=
View
.
VISIBLE
binding
.
lottieCompleted
.
playAnimation
()
binding
.
tv
.
text
=
"Completed!"
delay
(
1000
)
AdmobUtils
.
showInterstitialAd
(
this
@ScreenShotAnimationActivity
)
{
startActivity
(
Intent
(
this
@ScreenShotAnimationActivity
,
ScreenShotActivity
::
class
.
java
))
finish
()
}
}
,
Random
.
nextLong
(
2500
,
4000
))
}
}
...
...
app/src/main/java/com/test/easy/easycleanerjunk/activity/similarphotos/RepeatPhotoAnimationActivity.kt
View file @
01ad2ff5
package
com.test.easy.easycleanerjunk.activity.similarphotos
import
android.annotation.SuppressLint
import
android.content.Intent
import
android.os.Bundle
import
android.view.View
import
android.widget.Toast
import
androidx.activity.addCallback
import
androidx.activity.enableEdgeToEdge
import
androidx.appcompat.app.AppCompatActivity
import
androidx.core.view.ViewCompat
import
androidx.core.view.WindowInsetsCompat
import
androidx.lifecycle.lifecycleScope
import
com.test.easy.easycleanerjunk.R
import
com.test.easy.easycleanerjunk.databinding.ActivityRepeatPhotoAnimationBinding
import
com.test.easy.easycleanerjunk.helps.BaseActivity
import
com.test.easy.easycleanerjunk.helps.ads.AdmobUtils
import
kotlinx.coroutines.Dispatchers
import
kotlinx.coroutines.delay
import
kotlinx.coroutines.launch
import
kotlin.random.Random
class
RepeatPhotoAnimationActivity
:
BaseActivity
<
ActivityRepeatPhotoAnimationBinding
>()
{
...
...
@@ -21,12 +27,20 @@ class RepeatPhotoAnimationActivity : BaseActivity<ActivityRepeatPhotoAnimationBi
}
@SuppressLint
(
"SetTextI18n"
)
override
fun
initView
()
{
binding
.
root
.
postDelayed
({
lifecycleScope
.
launch
(
Dispatchers
.
Main
)
{
delay
(
Random
.
nextLong
(
2500
,
4000
))
binding
.
lottie
.
cancelAnimation
()
binding
.
lottie
.
visibility
=
View
.
GONE
binding
.
lottieCompleted
.
visibility
=
View
.
VISIBLE
binding
.
lottieCompleted
.
playAnimation
()
binding
.
tv
.
text
=
"Completed!"
delay
(
1000
)
startActivity
(
Intent
(
this
@RepeatPhotoAnimationActivity
,
RepeatPhotoActivity
::
class
.
java
))
finish
()
}
,
Random
.
nextLong
(
2500
,
4000
))
}
}
override
fun
initListener
()
{
...
...
app/src/main/java/com/test/easy/easycleanerjunk/activity/whatsapp/WhatsAppCleanerAnimationActivity.kt
View file @
01ad2ff5
...
...
@@ -9,10 +9,13 @@ import androidx.activity.enableEdgeToEdge
import
androidx.appcompat.app.AppCompatActivity
import
androidx.core.view.ViewCompat
import
androidx.core.view.WindowInsetsCompat
import
androidx.lifecycle.lifecycleScope
import
com.test.easy.easycleanerjunk.R
import
com.test.easy.easycleanerjunk.databinding.ActivityWhatsAppCleanerAnimationBinding
import
com.test.easy.easycleanerjunk.helps.BaseActivity
import
com.test.easy.easycleanerjunk.helps.ads.AdmobUtils
import
kotlinx.coroutines.delay
import
kotlinx.coroutines.launch
import
kotlin.random.Random
class
WhatsAppCleanerAnimationActivity
:
BaseActivity
<
ActivityWhatsAppCleanerAnimationBinding
>()
{
...
...
@@ -32,19 +35,22 @@ class WhatsAppCleanerAnimationActivity : BaseActivity<ActivityWhatsAppCleanerAni
}
private
fun
playLottie
()
{
binding
.
flLottie
.
visibility
=
View
.
VISIBLE
binding
.
flLottie
.
setOnClickListener
{
}
binding
.
lottie
.
imageAssetsFolder
=
"easy_junk_scan/images/"
binding
.
lottie
.
setAnimation
(
"easy_junk_scan/data.json"
)
binding
.
lottie
.
playAnimation
()
binding
.
root
.
postDelayed
({
AdmobUtils
.
showInterstitialAd
(
this
)
{
binding
.
lottie
.
cancelAnimation
()
binding
.
flLottie
.
visibility
=
View
.
GONE
lifecycleScope
.
launch
{
delay
(
Random
.
nextLong
(
3500
,
4500
))
binding
.
lottie
.
cancelAnimation
()
binding
.
lottie
.
visibility
=
View
.
GONE
binding
.
lottieCompleted
.
visibility
=
View
.
VISIBLE
binding
.
lottieCompleted
.
playAnimation
()
delay
(
1000
)
AdmobUtils
.
showInterstitialAd
(
this
@WhatsAppCleanerAnimationActivity
)
{
startActivity
(
Intent
(
this
@WhatsAppCleanerAnimationActivity
,
WhatsAppCleanerActivity
::
class
.
java
))
finish
()
}
},
Random
.
nextLong
(
3500
,
4500
))
}
}
...
...
app/src/main/res/layout/activity_battery_info_animation.xml
View file @
01ad2ff5
...
...
@@ -32,7 +32,7 @@
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:lottie_autoPlay=
"false"
app:lottie_rawRes=
"@raw/loading_completed"
/>
app:lottie_rawRes=
"@raw/loading_completed
_w
"
/>
<TextView
...
...
app/src/main/res/layout/activity_repeat_photo_animation.xml
View file @
01ad2ff5
...
...
@@ -4,48 +4,50 @@
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/main"
android:layout_width=
"match_parent"
android:background=
"@color/white"
android:layout_height=
"match_parent"
android:background=
"@color/white"
tools:context=
".activity.similarphotos.RepeatPhotoAnimationActivity"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id=
"@+id/id_ll_scanning"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@color/white"
android:gravity=
"center_horizontal"
android:orientation=
"vertical"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
app:layout_constraintBottom_toTopOf=
"@id/tv"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.7"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
app:lottie_rawRes=
"@raw/big_file_scan"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.3"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
app:lottie_rawRes=
"@raw/big_file_scan"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie_completed"
android:layout_width=
"90dp"
android:layout_height=
"90dp"
android:layout_gravity=
"center"
android:visibility=
"gone"
app:layout_constraintBottom_toTopOf=
"@id/tv"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:lottie_autoPlay=
"false"
app:lottie_rawRes=
"@raw/loading_completed"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"295dp"
android:gravity=
"center_horizontal|bottom"
android:text=
"Please wait..."
android:textColor=
"#333333"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id=
"@+id/tv"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"270dp"
android:gravity=
"center_horizontal|bottom"
android:text=
"Please wait..."
android:textColor=
"#333333"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/layout/activity_screen_shot_animation.xml
View file @
01ad2ff5
...
...
@@ -2,44 +2,47 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/main"
android:background=
"@color/white"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
tools:context=
".activity.screenshot.ScreenShotAnimationActivity
"
>
android:background=
"#4772ff
"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id=
"@+id/cl_lottie"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"#4772ff"
>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.3"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/id_lottie"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.3"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie_completed"
android:layout_width=
"90dp"
android:layout_height=
"90dp"
android:layout_gravity=
"center"
android:visibility=
"gone"
app:layout_constraintBottom_toTopOf=
"@id/tv"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:lottie_autoPlay=
"false"
app:lottie_rawRes=
"@raw/loading_completed_w"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"250dp"
android:gravity=
"center"
android:text=
"Wait a moment please."
android:textColor=
"@color/white"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id=
"@+id/tv"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"295dp"
android:text=
"Wait a moment please."
android:textColor=
"@color/white"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/layout/activity_start_compression_photo.xml
View file @
01ad2ff5
...
...
@@ -29,7 +29,7 @@
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:lottie_autoPlay=
"false"
app:lottie_rawRes=
"@raw/loading_completed"
/>
app:lottie_rawRes=
"@raw/loading_completed
_w
"
/>
<TextView
...
...
app/src/main/res/layout/activity_whats_app_cleaner_animation.xml
View file @
01ad2ff5
...
...
@@ -4,44 +4,47 @@
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/main"
android:layout_width=
"match_parent"
android:background=
"@color/white"
android:layout_height=
"match_parent"
android:background=
"@color/white"
tools:context=
".activity.whatsapp.WhatsAppCleanerAnimationActivity"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id=
"@+id/fl_lottie"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@color/white"
android:visibility=
"gone"
>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.3"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie"
android:layout_width=
"300dp"
android:layout_height=
"300dp"
android:layout_gravity=
"center"
android:adjustViewBounds=
"true"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_bias=
"0.3"
app:lottie_autoPlay=
"true"
app:lottie_loop=
"true"
/>
<com.test.easy.easycleanerjunk.view.XmlLottieAnimationView
android:id=
"@+id/lottie_completed"
android:layout_width=
"90dp"
android:layout_height=
"90dp"
android:layout_gravity=
"center"
android:visibility=
"gone"
app:layout_constraintBottom_toTopOf=
"@id/tv"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:lottie_autoPlay=
"false"
app:lottie_rawRes=
"@raw/loading_completed"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_horizontal|bottom"
android:layout_marginBottom=
"295dp"
android:text=
"Wait a moment..."
android:textColor=
"#333333"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id=
"@+id/tv"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"295dp"
android:text=
"Wait a moment please."
android:textColor=
"@color/black"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
tools:ignore=
"HardcodedText"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/raw/loading_completed_w.json
0 → 100644
View file @
01ad2ff5
{
"nm"
:
"Success Animation"
,
"ddd"
:
0
,
"h"
:
400
,
"w"
:
400
,
"meta"
:{
"g"
:
"@lottiefiles/toolkit-js 0.33.2"
},
"layers"
:[{
"ty"
:
4
,
"nm"
:
"Success_Tick"
,
"sr"
:
1
,
"st"
:
4.00000016292334
,
"op"
:
154.000006272549
,
"ip"
:
4.00000016292334
,
"hd"
:
false
,
"ddd"
:
0
,
"bm"
:
0
,
"hasMask"
:
false
,
"ao"
:
0
,
"ks"
:{
"a"
:{
"a"
:
0
,
"k"
:[
29
,
-36
,
0
],
"ix"
:
1
},
"s"
:{
"a"
:
0
,
"k"
:[
100
,
100
,
100
],
"ix"
:
6
},
"sk"
:{
"a"
:
0
,
"k"
:
0
},
"p"
:{
"a"
:
0
,
"k"
:[
205.75
,
194.75
,
0
],
"ix"
:
2
},
"r"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
10
},
"sa"
:{
"a"
:
0
,
"k"
:
0
},
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
11
}},
"ef"
:[],
"shapes"
:[{
"ty"
:
"gr"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Group"
,
"nm"
:
"Shape 1"
,
"ix"
:
1
,
"cix"
:
2
,
"np"
:
3
,
"it"
:[{
"ty"
:
"sh"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Shape - Group"
,
"nm"
:
"Path 1"
,
"ix"
:
1
,
"d"
:
1
,
"ks"
:{
"a"
:
0
,
"k"
:{
"c"
:
false
,
"i"
:[[
0
,
0
],[
0
,
0
],[
0
,
0
]],
"o"
:[[
0
,
0
],[
0
,
0
],[
0
,
0
]],
"v"
:[[
-48
,
-34
],[
2
,
16
],[
94.5
,
-77.5
]]},
"ix"
:
2
}},{
"ty"
:
"st"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Graphic - Stroke"
,
"nm"
:
"Stroke 1"
,
"lc"
:
2
,
"lj"
:
2
,
"ml"
:
1
,
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
4
},
"w"
:{
"a"
:
1
,
"k"
:[{
"o"
:{
"x"
:
0.333
,
"y"
:
0
},
"i"
:{
"x"
:
0.146
,
"y"
:
1
},
"s"
:[
15
],
"t"
:
4
},{
"s"
:[
30
],
"t"
:
25.0000010182709
}],
"ix"
:
5
},
"c"
:{
"a"
:
0
,
"k"
:[
0
,
0.3922
,
0.7882
],
"ix"
:
3
}},{
"ty"
:
"tr"
,
"a"
:{
"a"
:
0
,
"k"
:[
0
,
0
],
"ix"
:
1
},
"s"
:{
"a"
:
0
,
"k"
:[
100
,
100
],
"ix"
:
3
},
"sk"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
4
},
"p"
:{
"a"
:
0
,
"k"
:[
0
,
0
],
"ix"
:
2
},
"r"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
6
},
"sa"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
5
},
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
7
}}]},{
"ty"
:
"tm"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Filter - Trim"
,
"nm"
:
"Trim Paths 1"
,
"ix"
:
2
,
"e"
:{
"a"
:
1
,
"k"
:[{
"o"
:{
"x"
:
0.333
,
"y"
:
0
},
"i"
:{
"x"
:
0.113
,
"y"
:
1
},
"s"
:[
0
],
"t"
:
4
},{
"s"
:[
100
],
"t"
:
25.0000010182709
}],
"ix"
:
2
},
"o"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
3
},
"s"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
1
},
"m"
:
1
}],
"ind"
:
1
},{
"ty"
:
4
,
"nm"
:
"Circle"
,
"sr"
:
1
,
"st"
:
0
,
"op"
:
150.000006109625
,
"ip"
:
0
,
"hd"
:
false
,
"ddd"
:
0
,
"bm"
:
0
,
"hasMask"
:
false
,
"ao"
:
0
,
"ks"
:{
"a"
:{
"a"
:
0
,
"k"
:[
30.765
,
23.931
,
0
],
"ix"
:
1
},
"s"
:{
"a"
:
0
,
"k"
:[
100
,
100
,
100
],
"ix"
:
6
},
"sk"
:{
"a"
:
0
,
"k"
:
0
},
"p"
:{
"a"
:
0
,
"k"
:[
200
,
200
,
0
],
"ix"
:
2
},
"r"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
10
},
"sa"
:{
"a"
:
0
,
"k"
:
0
},
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
11
}},
"ef"
:[{
"ty"
:
22
,
"mn"
:
"ADBE Stroke"
,
"nm"
:
"Stroke"
,
"ix"
:
1
,
"en"
:
1
,
"ef"
:[{
"ty"
:
10
,
"mn"
:
"ADBE Stroke-0001"
,
"nm"
:
"Path"
,
"ix"
:
1
,
"v"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
1
}},{
"ty"
:
7
,
"mn"
:
"ADBE Stroke-0010"
,
"nm"
:
"All Masks"
,
"ix"
:
2
,
"v"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
2
}},{
"ty"
:
7
,
"mn"
:
"ADBE Stroke-0011"
,
"nm"
:
"Stroke Sequentially"
,
"ix"
:
3
,
"v"
:{
"a"
:
0
,
"k"
:
1
,
"ix"
:
3
}},{
"ty"
:
2
,
"mn"
:
"ADBE Stroke-0002"
,
"nm"
:
"Color"
,
"ix"
:
4
,
"v"
:{
"a"
:
0
,
"k"
:[
1
,
1
,
1
],
"ix"
:
4
}},{
"ty"
:
0
,
"mn"
:
"ADBE Stroke-0003"
,
"nm"
:
"Brush Size"
,
"ix"
:
5
,
"v"
:{
"a"
:
0
,
"k"
:
2
,
"ix"
:
5
}},{
"ty"
:
0
,
"mn"
:
"ADBE Stroke-0004"
,
"nm"
:
"Brush Hardness"
,
"ix"
:
6
,
"v"
:{
"a"
:
0
,
"k"
:
0.75
,
"ix"
:
6
}},{
"ty"
:
0
,
"mn"
:
"ADBE Stroke-0005"
,
"nm"
:
"Opacity"
,
"ix"
:
7
,
"v"
:{
"a"
:
0
,
"k"
:
1
,
"ix"
:
7
}},{
"ty"
:
0
,
"mn"
:
"ADBE Stroke-0008"
,
"nm"
:
"Start"
,
"ix"
:
8
,
"v"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
8
}},{
"ty"
:
0
,
"mn"
:
"ADBE Stroke-0009"
,
"nm"
:
"End"
,
"ix"
:
9
,
"v"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
9
}},{
"ty"
:
7
,
"mn"
:
"ADBE Stroke-0006"
,
"nm"
:
"Spacing"
,
"ix"
:
10
,
"v"
:{
"a"
:
0
,
"k"
:
15
,
"ix"
:
10
}},{
"ty"
:
7
,
"mn"
:
"ADBE Stroke-0007"
,
"nm"
:
"Paint Style"
,
"ix"
:
11
,
"v"
:{
"a"
:
0
,
"k"
:
1
,
"ix"
:
11
}}]}],
"shapes"
:[{
"ty"
:
"gr"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Group"
,
"nm"
:
"Ellipse 1"
,
"ix"
:
1
,
"cix"
:
2
,
"np"
:
3
,
"it"
:[{
"ty"
:
"el"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Shape - Ellipse"
,
"nm"
:
"Ellipse Path 1"
,
"d"
:
1
,
"p"
:{
"a"
:
0
,
"k"
:[
0
,
0
],
"ix"
:
3
},
"s"
:{
"a"
:
0
,
"k"
:[
318.933
,
318.933
],
"ix"
:
2
}},{
"ty"
:
"st"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Graphic - Stroke"
,
"nm"
:
"Stroke 1"
,
"lc"
:
2
,
"lj"
:
1
,
"ml"
:
4
,
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
4
},
"w"
:{
"a"
:
1
,
"k"
:[{
"o"
:{
"x"
:
0.333
,
"y"
:
0
},
"i"
:{
"x"
:
0.188
,
"y"
:
1
},
"s"
:[
50
],
"t"
:
0
},{
"s"
:[
20
],
"t"
:
20.0000008146167
}],
"ix"
:
5
},
"c"
:{
"a"
:
0
,
"k"
:[
0
,
0.3922
,
0.7882
],
"ix"
:
3
}},{
"ty"
:
"tr"
,
"a"
:{
"a"
:
0
,
"k"
:[
0
,
0
],
"ix"
:
1
},
"s"
:{
"a"
:
0
,
"k"
:[
100
,
100
],
"ix"
:
3
},
"sk"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
4
},
"p"
:{
"a"
:
0
,
"k"
:[
30.765
,
23.931
],
"ix"
:
2
},
"r"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
6
},
"sa"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
5
},
"o"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
7
}}]},{
"ty"
:
"tm"
,
"bm"
:
0
,
"hd"
:
false
,
"mn"
:
"ADBE Vector Filter - Trim"
,
"nm"
:
"Trim Paths 1"
,
"ix"
:
2
,
"e"
:{
"a"
:
0
,
"k"
:
100
,
"ix"
:
2
},
"o"
:{
"a"
:
0
,
"k"
:
0
,
"ix"
:
3
},
"s"
:{
"a"
:
1
,
"k"
:[{
"o"
:{
"x"
:
0.333
,
"y"
:
0
},
"i"
:{
"x"
:
0.096
,
"y"
:
1
},
"s"
:[
100
],
"t"
:
0
},{
"s"
:[
0
],
"t"
:
20.0000008146167
}],
"ix"
:
1
},
"m"
:
1
}],
"ind"
:
2
}],
"v"
:
"5.7.4"
,
"fr"
:
29.9700012207031
,
"op"
:
30.0000012219251
,
"ip"
:
0
,
"assets"
:[]}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment