diff --git a/app/build.gradle.kts b/app/build.gradle.kts index de221dc85..a07d7c75b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -164,6 +164,8 @@ dependencies { implementation(libs.accompanist.permissions) implementation(libs.constraintlayout.compose) + implementation(libs.lottie) + // Compose Navigation implementation(libs.navigation.compose) androidTestImplementation(libs.navigation.testing) diff --git a/app/src/androidTest/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheetViewTest.kt b/app/src/androidTest/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheetViewTest.kt new file mode 100644 index 000000000..5bc20a369 --- /dev/null +++ b/app/src/androidTest/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheetViewTest.kt @@ -0,0 +1,138 @@ +package to.bitkit.ui.screens.wallets.sheets + +import androidx.compose.ui.test.* +import androidx.compose.ui.test.junit4.createComposeRule +import dagger.hilt.android.testing.HiltAndroidRule +import dagger.hilt.android.testing.HiltAndroidTest +import org.junit.Before +import org.junit.Rule +import org.junit.Test +import to.bitkit.models.NewTransactionSheetDetails +import to.bitkit.models.NewTransactionSheetDirection +import to.bitkit.models.NewTransactionSheetType + +@HiltAndroidTest +class NewTransactionSheetViewTest { + + @get:Rule + val composeTestRule = createComposeRule() + + @get:Rule + val hiltRule = HiltAndroidRule(this) + + @Before + fun setup() { + hiltRule.inject() + composeTestRule.mainClock.autoAdvance = false + } + + @Test + fun testSentLightningTransaction() { + // Arrange + val details = NewTransactionSheetDetails( + sats = 10000L, + type = NewTransactionSheetType.LIGHTNING, + direction = NewTransactionSheetDirection.SENT + ) + var detailsClicked = false + var closeClicked = false + + // Act + composeTestRule.setContent { + NewTransactionSheetView( + details = details, + onCloseClick = { closeClicked = true }, + onDetailClick = { detailsClicked = true } + ) + } + + // Wait for composition and layout + composeTestRule.mainClock.advanceTimeBy(1000) + composeTestRule.waitForIdle() + + // Assert + composeTestRule.onNodeWithTag("new_transaction_sheet").assertExists() + composeTestRule.onNodeWithTag("transaction_sent_image").assertExists() + composeTestRule.onNodeWithTag("transaction_received_image").assertDoesNotExist() + composeTestRule.onNodeWithTag("confetti_animation").assertExists() + + composeTestRule.mainClock.advanceTimeBy(1000) + composeTestRule.waitForIdle() + +// composeTestRule.onNodeWithTag("balance_header").assertExists() Doesn't work because of viewmodel instance + composeTestRule.onNodeWithTag("sent_buttons_row").assertExists() + + // Verify buttons exist and click interactions work + composeTestRule.onNodeWithTag("details_button").assertExists().performClick() + composeTestRule.waitForIdle() + assert(detailsClicked) + + composeTestRule.onNodeWithTag("close_button").assertExists().performClick() + composeTestRule.waitForIdle() + assert(closeClicked) + } + + @Test + fun testReceivedLightningTransaction() { + // Arrange + val details = NewTransactionSheetDetails( + sats = 5000L, + type = NewTransactionSheetType.LIGHTNING, + direction = NewTransactionSheetDirection.RECEIVED + ) + var closeClicked = false + + // Act + composeTestRule.setContent { + NewTransactionSheetView( + details = details, + onCloseClick = { closeClicked = true }, + onDetailClick = { } + ) + } + + // Wait for composition and layout + composeTestRule.mainClock.advanceTimeBy(1000) + composeTestRule.waitForIdle() + + // Assert + composeTestRule.onNodeWithTag("new_transaction_sheet").assertExists() + composeTestRule.onNodeWithTag("transaction_received_image").assertExists() + composeTestRule.onNodeWithTag("transaction_sent_image").assertDoesNotExist() + + // Wait again for animations + composeTestRule.mainClock.advanceTimeBy(1000) + composeTestRule.waitForIdle() + + composeTestRule.onNodeWithTag("confetti_animation").assertExists() +// composeTestRule.onNodeWithTag("balance_header").assertExists() + composeTestRule.onNodeWithTag("sent_buttons_row").assertDoesNotExist() + + // Verify only OK button exists for received transactions + composeTestRule.onNodeWithTag("ok_button").assertExists().performClick() + composeTestRule.waitForIdle() + assert(closeClicked) + } + + @Test + fun testOnchainTransaction() { + // Arrange + val details = NewTransactionSheetDetails( + sats = 75000L, + type = NewTransactionSheetType.ONCHAIN, + direction = NewTransactionSheetDirection.RECEIVED + ) + + // Act + composeTestRule.setContent { + NewTransactionSheetView( + details = details, + onCloseClick = { }, + onDetailClick = { } + ) + } + + // Assert - verify orange confetti is used for onchain + composeTestRule.onNodeWithTag("confetti_animation").assertExists() + } +} diff --git a/app/src/main/java/to/bitkit/ui/components/Button.kt b/app/src/main/java/to/bitkit/ui/components/Button.kt index e6216728c..445dda862 100644 --- a/app/src/main/java/to/bitkit/ui/components/Button.kt +++ b/app/src/main/java/to/bitkit/ui/components/Button.kt @@ -94,6 +94,7 @@ fun SecondaryButton( isLoading: Boolean = false, size: ButtonSize = ButtonSize.Large, enabled: Boolean = true, + fullWidth: Boolean = true, ) { OutlinedButton( onClick = onClick, @@ -102,7 +103,7 @@ fun SecondaryButton( contentPadding = PaddingValues(horizontal = size.horizontalPadding), border = BorderStroke(2.dp, if (enabled) Colors.White16 else Color.Transparent), modifier = Modifier - .fillMaxWidth() + .then(if (fullWidth) Modifier.fillMaxWidth() else Modifier) .height(size.height) .then(modifier) ) { diff --git a/app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt b/app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt index 7bc52692f..ba363c716 100644 --- a/app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt +++ b/app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt @@ -1,158 +1,255 @@ package to.bitkit.ui.screens.wallets.sheets -import androidx.compose.animation.core.Animatable -import androidx.compose.animation.core.LinearEasing -import androidx.compose.animation.core.RepeatMode -import androidx.compose.animation.core.infiniteRepeatable -import androidx.compose.animation.core.tween +import androidx.compose.foundation.Image +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.offset import androidx.compose.foundation.layout.padding -import androidx.compose.material3.Button import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.material3.MaterialTheme import androidx.compose.material3.ModalBottomSheet -import androidx.compose.material3.SheetState -import androidx.compose.material3.Text import androidx.compose.material3.rememberModalBottomSheetState import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.remember +import androidx.compose.runtime.getValue import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.rotate +import androidx.compose.ui.layout.ContentScale +import androidx.compose.ui.platform.testTag +import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.IntOffset import androidx.compose.ui.unit.dp -import kotlinx.coroutines.launch +import com.airbnb.lottie.compose.LottieAnimation +import com.airbnb.lottie.compose.LottieClipSpec +import com.airbnb.lottie.compose.LottieCompositionSpec +import com.airbnb.lottie.compose.rememberLottieComposition import to.bitkit.R import to.bitkit.models.NewTransactionSheetDetails import to.bitkit.models.NewTransactionSheetDirection import to.bitkit.models.NewTransactionSheetType -import to.bitkit.viewmodels.AppViewModel -import to.bitkit.ui.shared.moneyString +import to.bitkit.ui.components.BalanceHeaderView +import to.bitkit.ui.components.PrimaryButton +import to.bitkit.ui.components.SecondaryButton +import to.bitkit.ui.scaffold.SheetTopBar +import to.bitkit.ui.shared.util.gradientBackground import to.bitkit.ui.theme.AppShapes import to.bitkit.ui.theme.AppThemeSurface -import kotlin.math.roundToInt +import to.bitkit.ui.utils.localizedRandom +import to.bitkit.viewmodels.AppViewModel -@OptIn(ExperimentalMaterial3Api::class) @Composable fun NewTransactionSheet( appViewModel: AppViewModel, ) { + + NewTransactionSheet( + onDismissRequest = { appViewModel.hideNewTransactionSheet() }, + details = appViewModel.newTransaction, + onCloseClick = { appViewModel.hideNewTransactionSheet() } + ) +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun NewTransactionSheet( + onDismissRequest: () -> Unit, + details: NewTransactionSheetDetails, + onCloseClick: () -> Unit +) { val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true) ModalBottomSheet( - onDismissRequest = { appViewModel.hideNewTransactionSheet() }, + onDismissRequest = onDismissRequest, sheetState = sheetState, shape = AppShapes.sheet, containerColor = MaterialTheme.colorScheme.surface, modifier = Modifier - .fillMaxHeight() + .fillMaxSize() .padding(top = 100.dp) + .gradientBackground() ) { NewTransactionSheetView( - details = appViewModel.newTransaction, - sheetState = sheetState, - onCloseClick = { appViewModel.hideNewTransactionSheet() } + details = details, + onCloseClick = onCloseClick, + onDetailClick = onCloseClick //TODO IMPLEMENT ) } } -@OptIn(ExperimentalMaterial3Api::class) @Composable -private fun NewTransactionSheetView( +fun NewTransactionSheetView( details: NewTransactionSheetDetails, - sheetState: SheetState, onCloseClick: () -> Unit, + onDetailClick: () -> Unit, ) { - Column( - horizontalAlignment = Alignment.CenterHorizontally, + Box( modifier = Modifier .fillMaxWidth() - .padding(16.dp), + .testTag("new_transaction_sheet") ) { - Text( - text = when (details.type) { + + if (details.direction == NewTransactionSheetDirection.RECEIVED) { + Image( + painter = painterResource(R.drawable.coin_stack_5), + contentDescription = null, + contentScale = ContentScale.FillWidth, + modifier = Modifier + .fillMaxWidth() + .testTag("transaction_received_image") + .align(Alignment.BottomEnd) + ) + } else { + Image( + painter = painterResource(R.drawable.check), + contentDescription = null, + contentScale = ContentScale.FillWidth, + modifier = Modifier + .fillMaxWidth() + .padding(horizontal = 16.dp) + .testTag("transaction_sent_image") + .align(Alignment.Center) + ) + } + + val composition by rememberLottieComposition( + if (details.type == NewTransactionSheetType.ONCHAIN) { + LottieCompositionSpec.RawRes(R.raw.confetti_orange) + } else { + LottieCompositionSpec.RawRes(R.raw.confetti_purple) + } + ) + LottieAnimation( + composition = composition, + contentScale = ContentScale.FillBounds, + iterations = 100, + modifier = Modifier + .fillMaxSize() + .testTag("confetti_animation") + ) + + Column( + horizontalAlignment = Alignment.CenterHorizontally, + modifier = Modifier + .fillMaxSize() + .testTag("transaction_content_column") + .padding(horizontal = 16.dp), + ) { + val titleText = when (details.type) { NewTransactionSheetType.LIGHTNING -> when (details.direction) { - NewTransactionSheetDirection.SENT -> "Sent Instant Bitcoin" - else -> "Received Instant Bitcoin" + NewTransactionSheetDirection.SENT -> stringResource(R.string.wallet__send_sent) + else -> stringResource(R.string.wallet__payment_received) } NewTransactionSheetType.ONCHAIN -> when (details.direction) { - NewTransactionSheetDirection.SENT -> "Sent Bitcoin" - else -> "Received Bitcoin" + NewTransactionSheetDirection.SENT -> stringResource(R.string.wallet__send_sent) + else -> stringResource(R.string.wallet__payment_received) } - }, - style = MaterialTheme.typography.titleMedium, - ) + } - Spacer(modifier = Modifier.height(24.dp)) + SheetTopBar(titleText) - Text( - text = moneyString(details.sats), - style = MaterialTheme.typography.titleLarge, - modifier = Modifier.align(Alignment.Start) - ) + Spacer(modifier = Modifier.height(24.dp)) - Spacer(modifier = Modifier.weight(1f)) - ConfettiAnimation(sheetState) - Spacer(modifier = Modifier.weight(1f)) + BalanceHeaderView( + sats = details.sats, + modifier = Modifier + .fillMaxWidth() + .testTag("balance_header") + ) - Button( - onClick = onCloseClick, - ) { - Text(stringResource(R.string.close)) - } - } -} + Spacer(modifier = Modifier.weight(1f)) -@OptIn(ExperimentalMaterial3Api::class) -@Composable -private fun ConfettiAnimation(sheetState: SheetState) { - val rotateAnim = remember { Animatable(0f) } - val offsetYAnim = remember { Animatable(0f) } - - // Confetti Animation - LaunchedEffect(sheetState.isVisible) { - if (sheetState.isVisible) { - launch { - rotateAnim.animateTo( - targetValue = 360f, - animationSpec = infiniteRepeatable( - animation = tween(3_200, easing = LinearEasing), - repeatMode = RepeatMode.Restart, + if (details.direction == NewTransactionSheetDirection.SENT) { + Row( + horizontalArrangement = Arrangement.spacedBy(16.dp), + modifier = Modifier + .fillMaxWidth() + .testTag("sent_buttons_row") + ) { + SecondaryButton( + text = stringResource(R.string.wallet__send_details), + onClick = onDetailClick, + fullWidth = false, + modifier = Modifier + .weight(1f) + .testTag("details_button") ) - ) - } - launch { - offsetYAnim.animateTo( - targetValue = 100f, - animationSpec = infiniteRepeatable( - animation = tween(10_000, easing = LinearEasing), - repeatMode = RepeatMode.Reverse, + PrimaryButton( + text = stringResource(R.string.common__close), + onClick = onCloseClick, + fullWidth = false, + modifier = Modifier + .weight(1f) + .testTag("close_button") ) + } + } else { + PrimaryButton( + text = localizedRandom(R.string.common__ok_random), + onClick = onCloseClick, + modifier = Modifier.testTag("ok_button") ) } + + Spacer(modifier = Modifier.height(8.dp)) } } - Text( - text = "🎉", - modifier = Modifier - .rotate(rotateAnim.value) - .offset { IntOffset(x = 0, y = offsetYAnim.value.roundToInt()) } - ) } @OptIn(ExperimentalMaterial3Api::class) @Preview(showBackground = true) @Composable -private fun PreviewNewTransactionSheetView() { +private fun Preview() { + val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true) + LaunchedEffect(Unit) { + sheetState.show() + } + + AppThemeSurface { + NewTransactionSheetView( + details = NewTransactionSheetDetails( + type = NewTransactionSheetType.LIGHTNING, + direction = NewTransactionSheetDirection.SENT, + sats = 123456789, + ), + onCloseClick = {}, + onDetailClick = {}, + ) + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Preview(showBackground = true) +@Composable +private fun Preview2() { + val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true) + LaunchedEffect(Unit) { + sheetState.show() + } + + AppThemeSurface { + NewTransactionSheetView( + details = NewTransactionSheetDetails( + type = NewTransactionSheetType.ONCHAIN, + direction = NewTransactionSheetDirection.SENT, + sats = 123456789, + ), + onCloseClick = {}, + onDetailClick = {}, + ) + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Preview(showBackground = true) +@Composable +private fun Preview3() { val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true) LaunchedEffect(Unit) { sheetState.show() @@ -165,8 +262,30 @@ private fun PreviewNewTransactionSheetView() { direction = NewTransactionSheetDirection.RECEIVED, sats = 123456789, ), - sheetState, onCloseClick = {}, + onDetailClick = {}, + ) + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Preview(showBackground = true) +@Composable +private fun Preview4() { + val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true) + LaunchedEffect(Unit) { + sheetState.show() + } + + AppThemeSurface { + NewTransactionSheetView( + details = NewTransactionSheetDetails( + type = NewTransactionSheetType.ONCHAIN, + direction = NewTransactionSheetDirection.RECEIVED, + sats = 123456789, + ), + onCloseClick = {}, + onDetailClick = {}, ) } } diff --git a/app/src/main/res/drawable-hdpi/coin_stack_5.webp b/app/src/main/res/drawable-hdpi/coin_stack_5.webp new file mode 100644 index 000000000..4fbdac9a4 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/coin_stack_5.webp differ diff --git a/app/src/main/res/drawable-mdpi/coin_stack_5.webp b/app/src/main/res/drawable-mdpi/coin_stack_5.webp new file mode 100644 index 000000000..3ebbd3e4b Binary files /dev/null and b/app/src/main/res/drawable-mdpi/coin_stack_5.webp differ diff --git a/app/src/main/res/drawable-xhdpi/coin_stack_5.webp b/app/src/main/res/drawable-xhdpi/coin_stack_5.webp new file mode 100644 index 000000000..a999c37dd Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/coin_stack_5.webp differ diff --git a/app/src/main/res/drawable-xxhdpi/coin_stack_5.webp b/app/src/main/res/drawable-xxhdpi/coin_stack_5.webp new file mode 100644 index 000000000..a0a588b3a Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/coin_stack_5.webp differ diff --git a/app/src/main/res/drawable-xxxhdpi/coin_stack_5.webp b/app/src/main/res/drawable-xxxhdpi/coin_stack_5.webp new file mode 100644 index 000000000..e09cca7fb Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/coin_stack_5.webp differ diff --git a/app/src/main/res/raw/confetti_orange.json b/app/src/main/res/raw/confetti_orange.json new file mode 100644 index 000000000..35310943b --- /dev/null +++ b/app/src/main/res/raw/confetti_orange.json @@ -0,0 +1 @@ +{"v":"5.5.8","fr":30,"ip":0,"op":300,"w":2000,"h":2000,"ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":2,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-150,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":299,"st":-150,"bm":0},{"ddd":0,"ind":5,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":516,"st":150,"bm":0},{"ddd":0,"ind":6,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-149,"bm":0},{"ddd":0,"ind":7,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":750,"st":150,"bm":0},{"ddd":0,"ind":8,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":450,"st":-150,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[688,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":305,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":349,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":177,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":211,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":243,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":301,"s":[100,1]},{"t":349,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[0]},{"t":349,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":175,"op":1075,"st":175,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":281,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":326,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":355,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":399,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":227,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":293,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":351,"s":[100,1]},{"t":399,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[0]},{"t":399,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":225,"op":1125,"st":225,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1408,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":255,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":83,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":149,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":207,"s":[100,1]},{"t":255,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"t":255,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":81,"op":981,"st":81,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":275,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":319,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":147,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":213,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":271,"s":[100,1]},{"t":319,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"t":319,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":145,"op":1045,"st":145,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":272,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":100,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":134,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":166,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":224,"s":[100,1]},{"t":272,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"t":272,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":98,"op":369,"st":98,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":224,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":52,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":86,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":118,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":176,"s":[100,1]},{"t":224,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"t":224,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":50,"op":300,"st":50,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":188,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":16,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":50,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":82,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":140,"s":[100,1]},{"t":188,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"t":188,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":14,"op":300,"st":14,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":300,"st":-1,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":236,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":64,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":98,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":188,"s":[100,1]},{"t":236,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"t":236,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":62,"op":962,"st":62,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":291,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":320,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":364,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":192,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":226,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":258,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":316,"s":[100,1]},{"t":364,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[0]},{"t":364,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":190,"op":1090,"st":190,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":255,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":299,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":127,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":161,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":251,"s":[100,1]},{"t":299,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"t":299,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":125,"op":1025,"st":125,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":215,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":43,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":77,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":109,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":167,"s":[100,1]},{"t":215,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"t":215,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":41,"op":941,"st":41,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":243,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":272,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":316,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":144,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":178,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":210,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"t":316,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"t":316,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":142,"op":413,"st":142,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":268,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":313,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":342,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":386,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":248,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":280,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":338,"s":[100,1]},{"t":386,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[0]},{"t":386,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":212,"op":462,"st":212,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-9,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-8,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":165,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":-7,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":27,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":59,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"t":165,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-9,"s":[0]},{"t":165,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-9,"op":277,"st":-9,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":211,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":39,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":73,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":105,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":163,"s":[100,1]},{"t":211,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"t":211,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":38,"op":338,"st":37,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[288,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":899,"st":-1,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1424,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":261,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":290,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":334,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":196,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":228,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":286,"s":[100,1]},{"t":334,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"t":334,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":160,"op":1060,"st":160,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[528,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":186,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":14,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":48,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":80,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":138,"s":[100,1]},{"t":186,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"t":186,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":12,"op":912,"st":12,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1168,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":219,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":47,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":81,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":113,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,1]},{"t":219,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"t":219,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":45,"op":945,"st":45,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[768,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":241,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":321,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":350,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":394,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":222,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":256,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":288,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":346,"s":[100,1]},{"t":394,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[0]},{"t":394,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":220,"op":491,"st":220,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":249,"st":-1,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":279,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":308,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":352,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":246,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":304,"s":[100,1]},{"t":352,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[0]},{"t":352,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":178,"op":464,"st":178,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":268,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":96,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":220,"s":[100,1]},{"t":268,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"t":268,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":95,"op":395,"st":94,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":270,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":299,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":343,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":205,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":237,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"t":343,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[0]},{"t":343,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":169,"op":1069,"st":169,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1104,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":241,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":69,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":103,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":135,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,1]},{"t":241,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"t":241,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":67,"op":967,"st":67,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[928,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":253,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":288,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":333,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":362,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":406,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":234,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":300,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":358,"s":[100,1]},{"t":406,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[0]},{"t":406,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":232,"op":1132,"st":232,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":242,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":286,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":114,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":148,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":238,"s":[100,1]},{"t":286,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"t":286,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":112,"op":1012,"st":112,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":328,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":329,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":349,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":384,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":429,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":458,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":502,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":330,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":364,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":396,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":454,"s":[100,1]},{"t":502,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":328,"s":[0]},{"t":502,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":328,"op":599,"st":328,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":259,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":260,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":280,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":315,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":360,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":389,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":433,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":327,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":385,"s":[100,1]},{"t":433,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":259,"s":[0]},{"t":433,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":259,"op":509,"st":259,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":174,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":2,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":36,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":68,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":126,"s":[100,1]},{"t":174,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"t":174,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":286,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1808,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.26,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":229,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":57,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":91,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":123,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"t":229,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"t":229,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":56,"op":356,"st":55,"bm":0}]}],"layers":[{"ddd":0,"ind":2,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[592,592,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[146.4,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1400,1360,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[153.6,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/app/src/main/res/raw/confetti_purple.json b/app/src/main/res/raw/confetti_purple.json new file mode 100644 index 000000000..256f64004 --- /dev/null +++ b/app/src/main/res/raw/confetti_purple.json @@ -0,0 +1 @@ +{"v":"5.5.8","fr":30,"ip":0,"op":300,"w":2000,"h":2000,"ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":2,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-150,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":299,"st":-150,"bm":0},{"ddd":0,"ind":5,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":516,"st":150,"bm":0},{"ddd":0,"ind":6,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-149,"bm":0},{"ddd":0,"ind":7,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":750,"st":150,"bm":0},{"ddd":0,"ind":8,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":450,"st":-150,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[688,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":305,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":349,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":177,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":211,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":243,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":301,"s":[100,1]},{"t":349,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[0]},{"t":349,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":175,"op":1075,"st":175,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":281,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":326,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":355,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":399,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":227,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":293,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":351,"s":[100,1]},{"t":399,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[0]},{"t":399,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":225,"op":1125,"st":225,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1408,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":255,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":83,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":149,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":207,"s":[100,1]},{"t":255,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"t":255,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":81,"op":981,"st":81,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":275,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":319,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":147,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":213,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":271,"s":[100,1]},{"t":319,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"t":319,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":145,"op":1045,"st":145,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":272,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":100,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":134,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":166,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":224,"s":[100,1]},{"t":272,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"t":272,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":98,"op":369,"st":98,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":224,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":52,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":86,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":118,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":176,"s":[100,1]},{"t":224,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"t":224,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":50,"op":300,"st":50,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":188,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":16,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":50,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":82,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":140,"s":[100,1]},{"t":188,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"t":188,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":14,"op":300,"st":14,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":300,"st":-1,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":236,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":64,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":98,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":188,"s":[100,1]},{"t":236,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"t":236,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":62,"op":962,"st":62,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":291,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":320,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":364,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":192,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":226,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":258,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":316,"s":[100,1]},{"t":364,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[0]},{"t":364,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":190,"op":1090,"st":190,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":255,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":299,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":127,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":161,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":251,"s":[100,1]},{"t":299,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"t":299,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":125,"op":1025,"st":125,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":215,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":43,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":77,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":109,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":167,"s":[100,1]},{"t":215,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"t":215,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":41,"op":941,"st":41,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":243,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":272,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":316,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":144,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":178,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":210,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"t":316,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"t":316,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":142,"op":413,"st":142,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":268,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":313,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":342,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":386,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":248,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":280,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":338,"s":[100,1]},{"t":386,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[0]},{"t":386,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":212,"op":462,"st":212,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-9,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-8,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":165,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":-7,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":27,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":59,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"t":165,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-9,"s":[0]},{"t":165,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-9,"op":277,"st":-9,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":211,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":39,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":73,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":105,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":163,"s":[100,1]},{"t":211,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"t":211,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":38,"op":338,"st":37,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[288,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":899,"st":-1,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1424,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":261,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":290,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":334,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":196,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":228,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":286,"s":[100,1]},{"t":334,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"t":334,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":160,"op":1060,"st":160,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[528,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":186,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":14,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":48,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":80,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":138,"s":[100,1]},{"t":186,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"t":186,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":12,"op":912,"st":12,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1168,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":219,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":47,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":81,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":113,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,1]},{"t":219,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"t":219,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":45,"op":945,"st":45,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[768,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":241,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":321,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":350,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":394,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":222,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":256,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":288,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":346,"s":[100,1]},{"t":394,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[0]},{"t":394,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":220,"op":491,"st":220,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":249,"st":-1,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":279,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":308,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":352,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":246,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":304,"s":[100,1]},{"t":352,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[0]},{"t":352,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":178,"op":464,"st":178,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":268,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":96,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":220,"s":[100,1]},{"t":268,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"t":268,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":95,"op":395,"st":94,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":270,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":299,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":343,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":205,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":237,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"t":343,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[0]},{"t":343,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":169,"op":1069,"st":169,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1104,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":241,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":69,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":103,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":135,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,1]},{"t":241,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"t":241,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":67,"op":967,"st":67,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[928,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":253,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":288,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":333,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":362,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":406,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":234,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":300,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":358,"s":[100,1]},{"t":406,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[0]},{"t":406,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":232,"op":1132,"st":232,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":242,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":286,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":114,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":148,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":238,"s":[100,1]},{"t":286,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"t":286,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":112,"op":1012,"st":112,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":328,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":329,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":349,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":384,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":429,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":458,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":502,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":330,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":364,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":396,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":454,"s":[100,1]},{"t":502,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":328,"s":[0]},{"t":502,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":328,"op":599,"st":328,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":259,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":260,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":280,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":315,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":360,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":389,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":433,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":327,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":385,"s":[100,1]},{"t":433,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":259,"s":[0]},{"t":433,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":259,"op":509,"st":259,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":174,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":2,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":36,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":68,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":126,"s":[100,1]},{"t":174,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"t":174,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":286,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1808,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[0.7,0.36,0.9,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":229,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":57,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":91,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":123,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"t":229,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"t":229,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":56,"op":356,"st":55,"bm":0}]}],"layers":[{"ddd":0,"ind":2,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[592,592,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[146.4,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1400,1360,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[153.6,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/app/src/main/res/raw/confetti_yellow.json b/app/src/main/res/raw/confetti_yellow.json new file mode 100644 index 000000000..8fcb4c656 --- /dev/null +++ b/app/src/main/res/raw/confetti_yellow.json @@ -0,0 +1 @@ +{"v":"5.5.8","fr":30,"ip":0,"op":300,"w":2000,"h":2000,"ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":2,"ty":0,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-150,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":450,"st":150,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":299,"st":-150,"bm":0},{"ddd":0,"ind":5,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":516,"st":150,"bm":0},{"ddd":0,"ind":6,"ty":0,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":-149,"bm":0},{"ddd":0,"ind":7,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":150,"op":750,"st":150,"bm":0},{"ddd":0,"ind":8,"ty":0,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":450,"st":-150,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[688,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":305,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":349,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":177,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":211,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":243,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":301,"s":[100,1]},{"t":349,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[0]},{"t":349,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":175,"op":1075,"st":175,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":281,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":326,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":355,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":399,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":227,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":293,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":351,"s":[100,1]},{"t":399,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[0]},{"t":399,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":225,"op":1125,"st":225,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1408,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":255,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":83,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":149,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":207,"s":[100,1]},{"t":255,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"t":255,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":81,"op":981,"st":81,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":275,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":319,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":147,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":213,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":271,"s":[100,1]},{"t":319,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"t":319,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":145,"op":1045,"st":145,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":272,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":100,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":134,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":166,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":224,"s":[100,1]},{"t":272,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"t":272,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":98,"op":369,"st":98,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":224,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":52,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":86,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":118,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":176,"s":[100,1]},{"t":224,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"t":224,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":50,"op":300,"st":50,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":188,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":16,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":50,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":82,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":140,"s":[100,1]},{"t":188,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"t":188,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":14,"op":300,"st":14,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":300,"st":-1,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[368,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":236,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":64,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":98,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":188,"s":[100,1]},{"t":236,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"t":236,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":62,"op":962,"st":62,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":246,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":291,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":320,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":364,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":192,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":226,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":258,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":316,"s":[100,1]},{"t":364,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[0]},{"t":364,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":190,"op":1090,"st":190,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[848,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":255,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":299,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":127,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":161,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":251,"s":[100,1]},{"t":299,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"t":299,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":125,"op":1025,"st":125,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1328,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":215,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":43,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":77,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":109,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":167,"s":[100,1]},{"t":215,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"t":215,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":41,"op":941,"st":41,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":243,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":272,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":316,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":144,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":178,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":210,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"t":316,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"t":316,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":142,"op":413,"st":142,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":268,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":313,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":342,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":386,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":248,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":280,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":338,"s":[100,1]},{"t":386,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[0]},{"t":386,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":212,"op":462,"st":212,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1088,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-9,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-8,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":165,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":-7,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":27,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":59,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":117,"s":[100,1]},{"t":165,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-9,"s":[0]},{"t":165,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-9,"op":277,"st":-9,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1728,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":211,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":39,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":73,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":105,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":163,"s":[100,1]},{"t":211,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"t":211,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":38,"op":338,"st":37,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[288,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":899,"st":-1,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1424,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":261,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":290,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":334,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":196,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":228,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":286,"s":[100,1]},{"t":334,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"t":334,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":160,"op":1060,"st":160,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[528,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":186,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":14,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":48,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":80,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":138,"s":[100,1]},{"t":186,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"t":186,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":12,"op":912,"st":12,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1168,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":219,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":47,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":81,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":113,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,1]},{"t":219,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"t":219,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":45,"op":945,"st":45,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[768,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":241,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":276,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":321,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":350,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":394,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":222,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":256,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":288,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":346,"s":[100,1]},{"t":394,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[0]},{"t":394,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":220,"op":491,"st":220,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":-1,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":173,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":1,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":35,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":67,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":125,"s":[100,1]},{"t":173,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-1,"s":[0]},{"t":173,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":-1,"op":249,"st":-1,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":279,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":308,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":352,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":214,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":246,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":304,"s":[100,1]},{"t":352,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[0]},{"t":352,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":178,"op":464,"st":178,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":268,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":96,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":130,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":162,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":220,"s":[100,1]},{"t":268,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"t":268,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":95,"op":395,"st":94,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1568,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":270,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":299,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":343,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":171,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":205,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":237,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"t":343,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[0]},{"t":343,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":169,"op":1069,"st":169,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1104,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":241,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":69,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":103,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":135,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":193,"s":[100,1]},{"t":241,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"t":241,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":67,"op":967,"st":67,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[928,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":253,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":288,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":333,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":362,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":406,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":234,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":268,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":300,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":358,"s":[100,1]},{"t":406,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[0]},{"t":406,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":232,"op":1132,"st":232,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1968,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":242,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":286,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":114,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":148,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":180,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":238,"s":[100,1]},{"t":286,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"t":286,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":112,"op":1012,"st":112,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1248,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":328,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":329,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":349,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":384,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":429,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":458,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":502,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":330,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":364,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":396,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":454,"s":[100,1]},{"t":502,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":328,"s":[0]},{"t":502,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":328,"op":599,"st":328,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2016,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":259,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":260,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":280,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":315,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":360,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":389,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":433,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":261,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":295,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":327,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":385,"s":[100,1]},{"t":433,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":259,"s":[0]},{"t":433,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":259,"op":509,"st":259,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[608,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":174,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":2,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":36,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":68,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":126,"s":[100,1]},{"t":174,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"t":174,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":286,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1808,732,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[32,32]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}},{"ty":"st","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.8,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[-256,-748],"to":[0,4.32],"ti":[0.52,-4.83]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[-256.8,-794.27],"to":[-6.57,60.82],"ti":[0,-108.39]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[-308,-464.77],"to":[0,131.09],"ti":[-6.46,-163.13]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[-227.95,-12.54],"to":[7.89,199.33],"ti":[9.34,-174.95]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[-297.15,568.73],"to":[-8.73,163.59],"ti":[0,-75.1]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[-256,943],"to":[0,279.83],"ti":[0,-0.67]},{"t":229,"s":[-168,1299]}]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":57,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":91,"s":[100,1]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":123,"s":[100,100]},{"i":{"x":[0.83,0.83],"y":[0.83,0.83]},"o":{"x":[0.17,0.17],"y":[0.17,0.17]},"t":181,"s":[100,1]},{"t":229,"s":[100,100]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"t":229,"s":[277.58]}]},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":56,"op":356,"st":55,"bm":0}]}],"layers":[{"ddd":0,"ind":2,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,1000,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[592,592,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[146.4,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1400,1360,0]},"a":{"a":0,"k":[1000,1000,0]},"s":{"a":0,"k":[153.6,143.2,100]}},"ao":0,"w":2000,"h":2000,"ip":0,"op":300,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 20db5e86b..80d6b026c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -35,6 +35,7 @@ testAndroidx = "1.6.1" turbine = "1.0.0" workRuntimeKtx = "2.10.0" zxing = "3.5.2" +lottieVersion = "6.6.4" [libraries] accompanist-pager-indicators = { module = "com.google.accompanist:accompanist-pager-indicators", version.ref = "accompanistPermissions" } @@ -102,6 +103,7 @@ test-robolectric = { module = "org.robolectric:robolectric", version.ref = "robo test-turbine = { group = "app.cash.turbine", name = "turbine", version.ref = "turbine" } work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "workRuntimeKtx" } zxing = { module = "com.google.zxing:core", version.ref = "zxing" } +lottie = { module = "com.airbnb.android:lottie-compose", version.ref = "lottieVersion" } [plugins] android-application = { id = "com.android.application", version.ref = "agp" }