[#1003] Clear unused Onboarding alternatives

- Removes unused Oboarding alternative LongOnboarding screen with all related resources
- Removes related integration tests and screen decision logic
- Removes related is_short_onboaridng remote configuration logic
- Closes #1003
This commit is contained in:
Honza Rychnovský 2023-11-30 20:50:59 +01:00 committed by GitHub
parent ec534550a7
commit 905a14db50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
49 changed files with 81 additions and 5050 deletions

View File

@ -1,3 +1,6 @@
<!-- TODO[#1074]: Check and update manual test guides -->
<!-- TODO [#1074]: https://github.com/Electric-Coin-Company/zashi-android/issues/1074 -->
# Testing screens with secure flag
1. install the app
1. go to screens with seed phrase:

View File

@ -1,23 +0,0 @@
@file:Suppress("ktlint:filename")
package co.electriccoin.zcash.ui.design.component
import androidx.compose.material3.LinearProgressIndicator
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import co.electriccoin.zcash.spackle.model.Progress
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
// Eventually rename to GradientLinearProgressIndicator
@Composable
fun PinkProgress(progress: Progress, modifier: Modifier = Modifier) {
// Needs custom implementation to apply gradient
LinearProgressIndicator(
progress = progress.percent(),
modifier,
ZcashTheme.colors.progressStart,
ZcashTheme.colors.progressBackground
)
}
private fun Progress.percent() = (current.value + 1.toFloat()) / (last.value + 1).toFloat()

View File

@ -6,7 +6,7 @@ import cash.z.ecc.sdk.fixture.PersistableWalletFixture
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import java.util.concurrent.atomic.AtomicInteger
class NewWalletRecoveryBackupTestSetup(
class NewWalletRecoveryTestSetup(
private val composeTestRule: ComposeContentTestRule,
) {

View File

@ -20,8 +20,8 @@ class NewWalletRecoveryViewTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createComposeRule()
private fun newTestSetup(): NewWalletRecoveryBackupTestSetup {
return NewWalletRecoveryBackupTestSetup(composeTestRule).apply {
private fun newTestSetup(): NewWalletRecoveryTestSetup {
return NewWalletRecoveryTestSetup(composeTestRule).apply {
setDefaultContent()
}
}

View File

@ -1,56 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding
import androidx.compose.runtime.Composable
import androidx.compose.ui.test.junit4.ComposeContentTestRule
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.screen.onboarding.state.OnboardingState
import co.electriccoin.zcash.ui.screen.onboarding.view.LongOnboarding
import java.util.concurrent.atomic.AtomicInteger
class LongOnboardingTestSetup(
private val composeTestRule: ComposeContentTestRule,
initialStage: OnboardingStage
) {
private val onboardingState = OnboardingState(initialStage)
private val onCreateWalletCallbackCount = AtomicInteger(0)
private val onImportWalletCallbackCount = AtomicInteger(0)
fun getOnCreateWalletCallbackCount(): Int {
composeTestRule.waitForIdle()
return onCreateWalletCallbackCount.get()
}
fun getOnImportWalletCallbackCount(): Int {
composeTestRule.waitForIdle()
return onImportWalletCallbackCount.get()
}
fun getOnboardingStage(): OnboardingStage {
composeTestRule.waitForIdle()
return onboardingState.current.value
}
@Composable
@Suppress("TestFunctionName")
fun DefaultContent() {
ZcashTheme {
LongOnboarding(
onboardingState,
isDebugMenuEnabled = false,
onCreateWallet = { onCreateWalletCallbackCount.incrementAndGet() },
onImportWallet = { onImportWalletCallbackCount.incrementAndGet() },
// We aren't testing this because it is for debug builds only.
onFixtureWallet = {}
)
}
}
fun setDefaultContent() {
composeTestRule.setContent {
DefaultContent()
}
}
}

View File

@ -6,7 +6,7 @@ import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import co.electriccoin.zcash.ui.screen.onboarding.view.ShortOnboarding
import java.util.concurrent.atomic.AtomicInteger
class ShortOnboardingTestSetup(
class OnboardingTestSetup(
private val composeTestRule: ComposeContentTestRule,
) {
private val onCreateWalletCallbackCount = AtomicInteger(0)

View File

@ -1,46 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.integration
import androidx.compose.ui.test.junit4.createAndroidComposeRule
import androidx.compose.ui.test.onNodeWithText
import androidx.compose.ui.test.performClick
import androidx.test.filters.MediumTest
import co.electriccoin.zcash.test.UiTestPrerequisites
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.common.UiTestingActivity
import co.electriccoin.zcash.ui.screen.onboarding.LongOnboardingTestSetup
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.test.getStringResource
import org.junit.Assert.assertEquals
import org.junit.Rule
import org.junit.Test
class OnboardingActivityTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createAndroidComposeRule<UiTestingActivity>()
private fun newTestSetup() = LongOnboardingTestSetup(
composeTestRule,
OnboardingStage.ShieldedByDefault
)
@Test
@MediumTest
fun current_stage_restoration_activity() {
val testSetup = newTestSetup()
testSetup.setDefaultContent()
assertEquals(OnboardingStage.ShieldedByDefault, testSetup.getOnboardingStage())
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.performClick()
}
assertEquals(OnboardingStage.UnifiedAddresses, testSetup.getOnboardingStage())
composeTestRule.activityRule.scenario.onActivity {
it.recreate()
}
assertEquals(OnboardingStage.UnifiedAddresses, testSetup.getOnboardingStage())
}
}

View File

@ -1,54 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.integration
import androidx.compose.ui.test.junit4.StateRestorationTester
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithText
import androidx.compose.ui.test.performClick
import androidx.test.filters.MediumTest
import co.electriccoin.zcash.test.UiTestPrerequisites
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.screen.onboarding.LongOnboardingTestSetup
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.test.getStringResource
import org.junit.Assert.assertEquals
import org.junit.Rule
import org.junit.Test
class OnboardingIntegrationTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createComposeRule()
private fun newTestSetup(initialStage: OnboardingStage) = LongOnboardingTestSetup(
composeTestRule,
initialStage
)
/**
* The test semantics are built upon StateRestorationTester component. We simulate screen state
* restoration with method emulateSavedInstanceStateRestore(), which needs to have setContent()
* method called beforehand. Then, after state restores after emulateSavedInstanceStateRestore(),
* setContent() callback is called again.
*/
@Test
@MediumTest
fun current_stage_restoration() {
val restorationTester = StateRestorationTester(composeTestRule)
val testSetup = newTestSetup(OnboardingStage.UnifiedAddresses)
restorationTester.setContent {
testSetup.DefaultContent()
}
assertEquals(OnboardingStage.UnifiedAddresses, testSetup.getOnboardingStage())
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.performClick()
}
assertEquals(OnboardingStage.More, testSetup.getOnboardingStage())
restorationTester.emulateSavedInstanceStateRestore()
assertEquals(OnboardingStage.More, testSetup.getOnboardingStage())
}
}

View File

@ -1,80 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.model
import androidx.test.filters.SmallTest
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Assert.assertNotEquals
import org.junit.Test
class OnboardingStageTest {
@Test
@SmallTest
fun getProgress_first() {
val progress = OnboardingStage.values().first().getProgress()
assertEquals(0, progress.current.value)
assertEquals(3, progress.last.value)
}
@Test
@SmallTest
fun getProgress_last() {
val progress = OnboardingStage.values().last().getProgress()
assertEquals(3, progress.current.value)
assertEquals(3, progress.last.value)
}
@Test
@SmallTest
fun hasNext_boundary() {
val last = OnboardingStage.values().last()
assertFalse(last.hasNext())
}
@Test
@SmallTest
fun hasPrevious_boundary() {
val last = OnboardingStage.values().first()
assertFalse(last.hasPrevious())
}
@Test
@SmallTest
fun getNext_from_first() {
val first = OnboardingStage.values().first()
val next = first.getNext()
assertNotEquals(first, next)
assertEquals(OnboardingStage.UnifiedAddresses, next)
}
@Test
@SmallTest
fun getNext_boundary() {
val last = OnboardingStage.values().last()
assertEquals(last, last.getNext())
}
@Test
@SmallTest
fun getPrevious_from_last() {
val last = OnboardingStage.values().last()
val previous = last.getPrevious()
assertNotEquals(last, previous)
assertEquals(OnboardingStage.More, previous)
}
@Test
@SmallTest
fun getPrevious_boundary() {
val first = OnboardingStage.values().first()
assertEquals(first, first.getPrevious())
}
}

View File

@ -1,262 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.view
import androidx.compose.ui.test.assertHasClickAction
import androidx.compose.ui.test.assertIsEnabled
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithContentDescription
import androidx.compose.ui.test.onNodeWithText
import androidx.compose.ui.test.performClick
import androidx.test.filters.MediumTest
import co.electriccoin.zcash.test.UiTestPrerequisites
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.screen.onboarding.LongOnboardingTestSetup
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.test.getStringResource
import org.junit.Assert.assertEquals
import org.junit.Rule
import org.junit.Test
class LongOnboardingViewTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createComposeRule()
private fun newTestSetup(initialStage: OnboardingStage): LongOnboardingTestSetup {
return LongOnboardingTestSetup(composeTestRule, initialStage).apply {
setDefaultContent()
}
}
// Sanity check the TestSetup
@Test
@MediumTest
fun verify_test_setup_stage_1() {
val testSetup = newTestSetup(initialStage = OnboardingStage.ShieldedByDefault)
assertEquals(OnboardingStage.ShieldedByDefault, testSetup.getOnboardingStage())
assertEquals(0, testSetup.getOnImportWalletCallbackCount())
assertEquals(0, testSetup.getOnCreateWalletCallbackCount())
}
@Test
@MediumTest
fun verify_test_setup_stage_4() {
val testSetup = newTestSetup(initialStage = OnboardingStage.Wallet)
assertEquals(OnboardingStage.Wallet, testSetup.getOnboardingStage())
assertEquals(0, testSetup.getOnImportWalletCallbackCount())
assertEquals(0, testSetup.getOnCreateWalletCallbackCount())
}
@Test
@MediumTest
fun stage_1_layout() {
newTestSetup(initialStage = OnboardingStage.ShieldedByDefault)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_1_header)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_1_body)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_4_create_new_wallet)).also {
it.assertDoesNotExist()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_4_import_existing_wallet)).also {
it.assertDoesNotExist()
}
}
@Test
@MediumTest
fun stage_2_layout() {
newTestSetup(initialStage = OnboardingStage.UnifiedAddresses)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_skip)).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithContentDescription(
label = getStringResource(R.string.onboarding_back),
ignoreCase = true
).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_2_header)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_2_body)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_4_create_new_wallet)).also {
it.assertDoesNotExist()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_4_import_existing_wallet)).also {
it.assertDoesNotExist()
}
}
@Test
@MediumTest
fun stage_3_layout() {
newTestSetup(initialStage = OnboardingStage.More)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_skip), ignoreCase = true).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithContentDescription(
label = getStringResource(R.string.onboarding_back),
ignoreCase = true
).also {
it.assertExists()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_3_header)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_3_body)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_4_create_new_wallet),
ignoreCase = true
).also {
it.assertDoesNotExist()
}
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_4_import_existing_wallet),
ignoreCase = true
).also {
it.assertDoesNotExist()
}
}
@Test
@MediumTest
fun stage_4_layout() {
newTestSetup(initialStage = OnboardingStage.Wallet)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_skip)).also {
it.assertDoesNotExist()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next)).also {
it.assertDoesNotExist()
}
composeTestRule.onNodeWithContentDescription(getStringResource(R.string.onboarding_back)).also {
it.assertExists()
it.assertIsEnabled()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_4_create_new_wallet),
ignoreCase = true
).also {
it.assertExists()
it.assertIsEnabled()
it.assertHasClickAction()
}
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_4_import_existing_wallet),
ignoreCase = true
).also {
it.assertExists()
it.assertIsEnabled()
it.assertHasClickAction()
}
}
@Test
@MediumTest
fun stage_1_skip() {
val testSetup = newTestSetup(initialStage = OnboardingStage.ShieldedByDefault)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_skip)).also {
it.performClick()
}
assertEquals(OnboardingStage.Wallet, testSetup.getOnboardingStage())
}
@Test
@MediumTest
fun last_stage_click_create_wallet() {
val testSetup = newTestSetup(initialStage = OnboardingStage.Wallet)
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_4_create_new_wallet),
ignoreCase = true
).also {
it.performClick()
}
assertEquals(1, testSetup.getOnCreateWalletCallbackCount())
assertEquals(0, testSetup.getOnImportWalletCallbackCount())
}
@Test
@MediumTest
fun last_stage_click_import_wallet() {
val testSetup = newTestSetup(initialStage = OnboardingStage.Wallet)
val newWalletButton = composeTestRule.onNodeWithText(
getStringResource(R.string.onboarding_4_import_existing_wallet)
)
newWalletButton.performClick()
assertEquals(1, testSetup.getOnImportWalletCallbackCount())
assertEquals(0, testSetup.getOnCreateWalletCallbackCount())
}
@Test
@MediumTest
fun multi_stage_progression() {
val testSetup = newTestSetup(initialStage = OnboardingStage.ShieldedByDefault)
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.performClick()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.performClick()
}
composeTestRule.onNodeWithText(getStringResource(R.string.onboarding_next), ignoreCase = true).also {
it.performClick()
}
assertEquals(OnboardingStage.Wallet, testSetup.getOnboardingStage())
}
}

View File

@ -8,18 +8,18 @@ import androidx.compose.ui.test.performClick
import androidx.test.filters.MediumTest
import co.electriccoin.zcash.test.UiTestPrerequisites
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.screen.onboarding.ShortOnboardingTestSetup
import co.electriccoin.zcash.ui.screen.onboarding.OnboardingTestSetup
import co.electriccoin.zcash.ui.test.getStringResource
import org.junit.Assert.assertEquals
import org.junit.Rule
import org.junit.Test
class ShortOnboardingViewTest : UiTestPrerequisites() {
class OnboardingViewTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createComposeRule()
private fun newTestSetup(): ShortOnboardingTestSetup {
return ShortOnboardingTestSetup(composeTestRule).apply {
private fun newTestSetup(): OnboardingTestSetup {
return OnboardingTestSetup(composeTestRule).apply {
setDefaultContent()
}
}
@ -30,7 +30,7 @@ class ShortOnboardingViewTest : UiTestPrerequisites() {
newTestSetup()
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_short_create_new_wallet),
text = getStringResource(R.string.onboarding_create_new_wallet),
ignoreCase = true
).also {
it.assertExists()
@ -39,7 +39,7 @@ class ShortOnboardingViewTest : UiTestPrerequisites() {
}
composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_short_import_existing_wallet),
text = getStringResource(R.string.onboarding_import_existing_wallet),
ignoreCase = true
).also {
it.assertExists()
@ -54,7 +54,7 @@ class ShortOnboardingViewTest : UiTestPrerequisites() {
val testSetup = newTestSetup()
val newWalletButton = composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_short_create_new_wallet),
text = getStringResource(R.string.onboarding_create_new_wallet),
ignoreCase = true
)
newWalletButton.performClick()
@ -69,7 +69,7 @@ class ShortOnboardingViewTest : UiTestPrerequisites() {
val testSetup = newTestSetup()
val newWalletButton = composeTestRule.onNodeWithText(
text = getStringResource(R.string.onboarding_short_import_existing_wallet),
text = getStringResource(R.string.onboarding_import_existing_wallet),
ignoreCase = true
)
newWalletButton.performClick()

View File

@ -6,7 +6,7 @@ import cash.z.ecc.sdk.fixture.PersistableWalletFixture
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import java.util.concurrent.atomic.AtomicInteger
class SeedRecoveryBackupTestSetup(
class SeedRecoveryTestSetup(
private val composeTestRule: ComposeContentTestRule,
) {

View File

@ -20,8 +20,8 @@ class SeedRecoveryViewTest : UiTestPrerequisites() {
@get:Rule
val composeTestRule = createComposeRule()
private fun newTestSetup(): SeedRecoveryBackupTestSetup {
return SeedRecoveryBackupTestSetup(composeTestRule).apply {
private fun newTestSetup(): SeedRecoveryTestSetup {
return SeedRecoveryTestSetup(composeTestRule).apply {
setDefaultContent()
}
}

View File

@ -6,12 +6,6 @@ import co.electriccoin.zcash.configuration.model.entry.ConfigKey
object ConfigurationEntries {
val IS_APP_UPDATE_CHECK_ENABLED = BooleanConfigurationEntry(ConfigKey("is_update_check_enabled"), true)
/*
* The full onboarding flow is functional and tested, but it is disabled by default for an initially minimal
* feature set.
*/
val IS_SHORT_ONBOARDING_UX = BooleanConfigurationEntry(ConfigKey("is_short_onboarding_ux"), true)
/*
* This isn't fully implemented yet, so it is disabled from being shown.
*/

View File

@ -2,28 +2,19 @@ package co.electriccoin.zcash.ui.screen.debug.view
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.List
import androidx.compose.material.icons.filled.Person
import androidx.compose.material.icons.filled.Shield
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import co.electriccoin.zcash.spackle.model.Index
import co.electriccoin.zcash.spackle.model.Progress
import co.electriccoin.zcash.ui.design.component.Body
import co.electriccoin.zcash.ui.design.component.ChipIndexed
import co.electriccoin.zcash.ui.design.component.GradientSurface
import co.electriccoin.zcash.ui.design.component.Header
import co.electriccoin.zcash.ui.design.component.NavigationButton
import co.electriccoin.zcash.ui.design.component.PinkProgress
import co.electriccoin.zcash.ui.design.component.PrimaryButton
import co.electriccoin.zcash.ui.design.component.SecondaryButton
import co.electriccoin.zcash.ui.design.component.TertiaryButton
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import co.electriccoin.zcash.ui.screen.onboarding.view.Callout
@Preview("DesignGuide")
@Composable
@ -46,10 +37,6 @@ fun DesignGuide() {
PrimaryButton(onClick = { }, text = "Primary button", outerPaddingValues = PaddingValues(24.dp))
SecondaryButton(onClick = { }, text = "Secondary button", outerPaddingValues = PaddingValues(24.dp))
TertiaryButton(onClick = { }, text = "Tertiary button", outerPaddingValues = PaddingValues(24.dp))
Callout(Icons.Filled.Shield, contentDescription = "Shield")
Callout(Icons.Filled.Person, contentDescription = "Person")
Callout(Icons.Filled.List, contentDescription = "List")
PinkProgress(progress = Progress(Index(1), Index(4)), Modifier.fillMaxWidth())
ChipIndexed(Index(1), "edict")
}
}

View File

@ -1,7 +1,7 @@
package co.electriccoin.zcash.ui.screen.home.model
/**
* Common Onboarding/SecurityWarning/Backup screen enum.
* Common Onboarding/SecurityWarning/Recovery screen enum.
*
* WARN: Do NOT re-order or change the values, it would update their ordinal numbers, and thus break screens ordering.
*/

View File

@ -19,11 +19,8 @@ import co.electriccoin.lightwallet.client.model.LightWalletEndpoint
import co.electriccoin.zcash.spackle.FirebaseTestLabUtil
import co.electriccoin.zcash.ui.MainActivity
import co.electriccoin.zcash.ui.common.model.VersionInfo
import co.electriccoin.zcash.ui.configuration.ConfigurationEntries
import co.electriccoin.zcash.ui.configuration.RemoteConfig
import co.electriccoin.zcash.ui.screen.home.model.OnboardingState
import co.electriccoin.zcash.ui.screen.home.viewmodel.WalletViewModel
import co.electriccoin.zcash.ui.screen.onboarding.view.LongOnboarding
import co.electriccoin.zcash.ui.screen.onboarding.view.ShortOnboarding
import co.electriccoin.zcash.ui.screen.onboarding.viewmodel.OnboardingViewModel
import co.electriccoin.zcash.ui.screen.restore.WrapRestore
@ -80,26 +77,13 @@ internal fun WrapOnboarding(
val showWelcomeAnimation = onboardingViewModel.showWelcomeAnimation.collectAsStateWithLifecycle().value
// TODO [#1003]: Clear unused alternative Onboarding screens
// TODO [#1003]: https://github.com/Electric-Coin-Company/zashi-android/issues/1003
if (ConfigurationEntries.IS_SHORT_ONBOARDING_UX.getValue(RemoteConfig.current)) {
ShortOnboarding(
showWelcomeAnim = showWelcomeAnimation,
isDebugMenuEnabled = versionInfo.isDebuggable,
onImportWallet = onImportWallet,
onCreateWallet = onCreateWallet,
onFixtureWallet = onFixtureWallet
)
} else {
LongOnboarding(
onboardingState = onboardingViewModel.onboardingState,
isDebugMenuEnabled = versionInfo.isDebuggable,
onImportWallet = onImportWallet,
onCreateWallet = onCreateWallet,
onFixtureWallet = onFixtureWallet
)
}
ShortOnboarding(
showWelcomeAnim = showWelcomeAnimation,
isDebugMenuEnabled = versionInfo.isDebuggable,
onImportWallet = onImportWallet,
onCreateWallet = onCreateWallet,
onFixtureWallet = onFixtureWallet
)
activity.reportFullyDrawn()
} else {

View File

@ -1,38 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.model
import co.electriccoin.zcash.spackle.model.Index
import co.electriccoin.zcash.spackle.model.Progress
enum class OnboardingStage {
// Note: the ordinal order is used to manage progression through each stage
// so be careful if reordering these
ShieldedByDefault,
UnifiedAddresses,
More,
Wallet;
/**
* @see getPrevious
*/
fun hasPrevious() = ordinal > 0
/**
* @see getNext
*/
fun hasNext() = ordinal < values().size - 1
/**
* @return Previous item in ordinal order. Returns the first item when it cannot go further back.
*/
fun getPrevious() = values()[maxOf(0, ordinal - 1)]
/**
* @return Last item in ordinal order. Returns the last item when it cannot go further forward.
*/
fun getNext() = values()[minOf(values().size - 1, ordinal + 1)]
/**
* @return Returns current progression through stages.
*/
fun getProgress() = Progress(Index(ordinal), Index(values().size - 1))
}

View File

@ -1,33 +0,0 @@
package co.electriccoin.zcash.ui.screen.onboarding.state
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
/**
* @param initialState Allows restoring the state from a different starting point. This is
* primarily useful on Android, for automated tests, and for iterative debugging with the Compose
* layout preview. The default constructor argument is generally fine for other platforms.
*/
class OnboardingState(initialState: OnboardingStage = OnboardingStage.values().first()) {
private val mutableState = MutableStateFlow(initialState)
val current: StateFlow<OnboardingStage> = mutableState
fun goNext() {
mutableState.value = current.value.getNext()
}
fun goPrevious() {
mutableState.value = current.value.getPrevious()
}
fun goToBeginning() {
mutableState.value = OnboardingStage.values().first()
}
fun goToEnd() {
mutableState.value = OnboardingStage.values().last()
}
}

View File

@ -1,312 +0,0 @@
@file:Suppress("TooManyFunctions")
package co.electriccoin.zcash.ui.screen.onboarding.view
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material.icons.filled.MoreVert
import androidx.compose.material3.DropdownMenu
import androidx.compose.material3.DropdownMenuItem
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.material3.TopAppBar
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.scale
import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import cash.z.ecc.android.sdk.fixture.WalletFixture
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.design.component.Body
import co.electriccoin.zcash.ui.design.component.GradientSurface
import co.electriccoin.zcash.ui.design.component.Header
import co.electriccoin.zcash.ui.design.component.NavigationButton
import co.electriccoin.zcash.ui.design.component.PinkProgress
import co.electriccoin.zcash.ui.design.component.PrimaryButton
import co.electriccoin.zcash.ui.design.component.SecondaryButton
import co.electriccoin.zcash.ui.design.component.TertiaryButton
import co.electriccoin.zcash.ui.design.theme.ZcashTheme
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.screen.onboarding.state.OnboardingState
@Preview("LongOnboarding")
@Composable
private fun ComposablePreview() {
ZcashTheme(forceDarkMode = false) {
GradientSurface {
LongOnboarding(
OnboardingState(OnboardingStage.Wallet),
isDebugMenuEnabled = false,
onImportWallet = {},
onCreateWallet = {},
onFixtureWallet = {}
)
}
}
}
/**
* @param onImportWallet Callback when the user decides to import an existing wallet.
* @param onCreateWallet Callback when the user decides to create a new wallet.
*/
@Composable
@Suppress("LongParameterList")
fun LongOnboarding(
onboardingState: OnboardingState,
isDebugMenuEnabled: Boolean,
onImportWallet: () -> Unit,
onCreateWallet: () -> Unit,
onFixtureWallet: (seed: String) -> Unit
) {
val currentStage = onboardingState.current.collectAsStateWithLifecycle().value
Scaffold(
topBar = {
OnboardingTopAppBar(onboardingState, isDebugMenuEnabled, onFixtureWallet)
},
bottomBar = {
BottomNav(currentStage, onboardingState::goNext, onCreateWallet, onImportWallet)
}
) { paddingValues ->
OnboardingMainContent(
paddingValues,
onboardingState
)
}
}
@Composable
@OptIn(ExperimentalMaterial3Api::class)
private fun OnboardingTopAppBar(
onboardingState: OnboardingState,
isDebugMenuEnabled: Boolean,
onFixtureWallet: (String) -> Unit
) {
val currentStage = onboardingState.current.collectAsStateWithLifecycle().value
TopAppBar(
title = { Text(text = stringResource(id = R.string.app_name)) },
navigationIcon = {
if (currentStage.hasPrevious()) {
IconButton(onboardingState::goPrevious) {
Icon(
imageVector = Icons.Filled.ArrowBack,
contentDescription = stringResource(R.string.onboarding_back)
)
}
}
},
actions = {
if (currentStage.hasNext()) {
NavigationButton(onboardingState::goToEnd, stringResource(R.string.onboarding_skip))
}
if (isDebugMenuEnabled) {
DebugMenu(onFixtureWallet)
}
}
)
}
@Composable
private fun DebugMenu(
onFixtureWallet: (String) -> Unit
) {
Column {
var expanded by rememberSaveable { mutableStateOf(false) }
IconButton(onClick = { expanded = true }) {
Icon(Icons.Default.MoreVert, contentDescription = null)
}
DropdownMenu(
expanded = expanded,
onDismissRequest = { expanded = false }
) {
DropdownMenuItem(
text = { Text("Import Alice's wallet") },
onClick = { onFixtureWallet(WalletFixture.Alice.seedPhrase) }
)
DropdownMenuItem(
text = { Text("Import Ben's wallet") },
onClick = { onFixtureWallet(WalletFixture.Ben.seedPhrase) }
)
}
}
}
@Composable
fun OnboardingMainContent(
paddingValues: PaddingValues,
onboardingState: OnboardingState
) {
Column(
Modifier.padding(top = paddingValues.calculateTopPadding())
) {
val onboardingStage = onboardingState.current.collectAsStateWithLifecycle().value
when (onboardingStage) {
OnboardingStage.ShieldedByDefault -> ShieldedByDefault(paddingValues)
OnboardingStage.UnifiedAddresses -> UnifiedAddresses(paddingValues)
OnboardingStage.More -> More(paddingValues)
OnboardingStage.Wallet -> Wallet(paddingValues)
}
}
}
@Composable
private fun BottomNav(
currentStage: OnboardingStage,
onNext: () -> Unit,
onCreateWallet: () -> Unit,
onImportWallet: () -> Unit
) {
Column(Modifier.background(MaterialTheme.colorScheme.surface)) {
if (currentStage == OnboardingStage.Wallet) {
WalletStageBottomNav(onCreateWallet = onCreateWallet, onImportWallet)
} else {
OnboardingBottomNav(currentStage = currentStage, onNext = onNext)
}
}
}
@Composable
private fun WalletStageBottomNav(
onCreateWallet: () -> Unit,
onImportWallet: () -> Unit
) {
Column(
modifier = Modifier.fillMaxWidth(),
horizontalAlignment = Alignment.CenterHorizontally
) {
PrimaryButton(onCreateWallet, stringResource(R.string.onboarding_4_create_new_wallet))
TertiaryButton(
onImportWallet,
stringResource(R.string.onboarding_4_import_existing_wallet),
Modifier.fillMaxWidth()
)
}
}
@Composable
private fun OnboardingBottomNav(
currentStage: OnboardingStage,
onNext: () -> Unit
) {
SecondaryButton(onNext, stringResource(R.string.onboarding_next), Modifier.fillMaxWidth())
// Converts from index to human numbering
Body((currentStage.getProgress().current.value + 1).toString())
PinkProgress(currentStage.getProgress(), Modifier.fillMaxWidth())
}
@Composable
private fun ShieldedByDefault(paddingValues: PaddingValues) {
Content(
paddingValues = paddingValues,
image = painterResource(id = R.drawable.onboarding_1),
imageContentDescription = stringResource(R.string.onboarding_1_image_content_description),
headline = stringResource(R.string.onboarding_1_header),
body = stringResource(R.string.onboarding_1_body)
)
}
@Composable
private fun UnifiedAddresses(paddingValues: PaddingValues) {
Content(
paddingValues = paddingValues,
image = painterResource(id = R.drawable.onboarding_2),
imageContentDescription = stringResource(R.string.onboarding_2_image_content_description),
headline = stringResource(R.string.onboarding_2_header),
body = stringResource(R.string.onboarding_2_body)
)
}
@Composable
private fun More(paddingValues: PaddingValues) {
Content(
paddingValues = paddingValues,
image = painterResource(id = R.drawable.onboarding_3),
imageContentDescription = stringResource(R.string.onboarding_3_image_content_description),
headline = stringResource(R.string.onboarding_3_header),
body = stringResource(R.string.onboarding_3_body)
)
}
@Composable
private fun Wallet(paddingValues: PaddingValues) {
Column(
Modifier
.padding(
start = ZcashTheme.dimens.spacingDefault,
end = ZcashTheme.dimens.spacingDefault,
bottom = paddingValues.calculateBottomPadding()
)
.fillMaxWidth()
) {
Header(
modifier = Modifier.padding(
top = ZcashTheme.dimens.spacingDefault,
bottom = ZcashTheme.dimens.spacingSmall
),
text = stringResource(R.string.onboarding_4_header)
)
Body(stringResource(R.string.onboarding_4_body))
}
}
@Suppress("LongParameterList")
@Composable
private fun Content(
image: Painter,
imageContentDescription: String?,
headline: String,
body: String,
paddingValues: PaddingValues,
imageScale: Float = 0.8f
) {
val scrollState = rememberScrollState()
Column(
Modifier
.fillMaxWidth()
.verticalScroll(scrollState)
) {
Column(
Modifier.padding(
start = ZcashTheme.dimens.spacingDefault,
end = ZcashTheme.dimens.spacingDefault,
bottom = paddingValues.calculateBottomPadding()
)
) {
Image(modifier = Modifier.scale(imageScale), painter = image, contentDescription = imageContentDescription)
Header(headline)
Body(body)
}
}
}
@Composable
fun Callout(imageVector: ImageVector, contentDescription: String) {
Box(modifier = Modifier.background(ZcashTheme.colors.callout)) {
Icon(imageVector, contentDescription, tint = ZcashTheme.colors.onCallout)
}
}

View File

@ -171,7 +171,7 @@ private fun OnboardingMainContent(
) {
Image(
painterResource(id = co.electriccoin.zcash.ui.design.R.drawable.zashi_logo_without_text),
stringResource(R.string.zcash_logo_onboarding_content_description),
stringResource(R.string.zcash_logo_content_description),
Modifier
.height(ZcashTheme.dimens.inScreenZcashLogoHeight)
.width(ZcashTheme.dimens.inScreenZcashLogoWidth)
@ -186,7 +186,7 @@ private fun OnboardingMainContent(
Spacer(modifier = Modifier.height(ZcashTheme.dimens.spacingLarge))
TitleLarge(text = stringResource(R.string.onboarding_short_header), textAlign = TextAlign.Center)
TitleLarge(text = stringResource(R.string.onboarding_header), textAlign = TextAlign.Center)
Spacer(modifier = Modifier.height(ZcashTheme.dimens.spacingDefault))
@ -198,14 +198,14 @@ private fun OnboardingMainContent(
PrimaryButton(
onClick = onCreateWallet,
text = stringResource(R.string.onboarding_short_create_new_wallet)
text = stringResource(R.string.onboarding_create_new_wallet)
)
Spacer(modifier = Modifier.height(ZcashTheme.dimens.spacingLarge))
SecondaryButton(
onImportWallet,
stringResource(R.string.onboarding_short_import_existing_wallet)
stringResource(R.string.onboarding_import_existing_wallet)
)
}
}

View File

@ -3,10 +3,6 @@ package co.electriccoin.zcash.ui.screen.onboarding.viewmodel
import android.app.Application
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.SavedStateHandle
import androidx.lifecycle.viewModelScope
import cash.z.ecc.android.sdk.ext.collectWith
import co.electriccoin.zcash.ui.screen.onboarding.model.OnboardingStage
import co.electriccoin.zcash.ui.screen.onboarding.state.OnboardingState
/*
* Android-specific ViewModel. This is used to save and restore state across Activity recreations
@ -17,20 +13,6 @@ class OnboardingViewModel(
private val savedStateHandle: SavedStateHandle
) : AndroidViewModel(application) {
val onboardingState: OnboardingState = run {
val initialValue = if (savedStateHandle.contains(KEY_STAGE)) {
savedStateHandle.get<OnboardingStage>(KEY_STAGE)
} else {
null
}
if (null == initialValue) {
OnboardingState()
} else {
OnboardingState(initialValue)
}
}
// This is a bit weird being placed here, but onboarding currently is considered complete when
// the user has a persisted wallet. Also import allows the user to go back to onboarding, while
// creating a new wallet does not.
@ -45,16 +27,7 @@ class OnboardingViewModel(
savedStateHandle[KEY_SHOW_WELCOME_ANIMATION] = setShowWelcomeAnimation
}
init {
// viewModelScope is constructed with Dispatchers.Main.immediate, so this will
// update the save state as soon as a change occurs.
onboardingState.current.collectWith(viewModelScope) {
savedStateHandle[KEY_STAGE] = it
}
}
companion object {
private const val KEY_STAGE = "stage" // $NON-NLS
private const val KEY_IS_IMPORTING = "is_importing" // $NON-NLS
private const val KEY_SHOW_WELCOME_ANIMATION = "show_welcome_animation" // $NON-NLS
}

View File

@ -10,6 +10,8 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.wrapContentHeight
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Update
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Scaffold
@ -20,9 +22,7 @@ import androidx.compose.material3.TopAppBar
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.ImageBitmap
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.res.imageResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import co.electriccoin.zcash.ui.R
@ -183,12 +183,12 @@ private fun UpdateContentNormal(
modifier = modifier,
horizontalAlignment = Alignment.CenterHorizontally
) {
// TODO [#17]: This suppression and magic number will get replaced once we have real assets
// Replace this placeholder graphic once this screen is being redesigned
@Suppress("MagicNumber")
Image(
ImageBitmap.imageResource(id = R.drawable.update_main_graphic),
imageVector = Icons.Filled.Update,
contentDescription = stringResource(id = R.string.update_image_content_description),
Modifier.fillMaxSize(0.50f)
modifier = Modifier.fillMaxSize(0.45f)
)
Body(

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

File diff suppressed because one or more lines are too long

View File

@ -1,598 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M31,216.15a183,182.85 0,1 0,366 0a183,182.85 0,1 0,-366 0z"
android:strokeAlpha="0.1"
android:fillColor="#fff"
android:fillAlpha="0.1"/>
<path
android:pathData="M54.27,219.79a159.73,156.87 0,1 0,319.45 0a159.73,156.87 0,1 0,-319.45 0z"
android:strokeAlpha="0.47"
android:fillColor="#9bb9d4"
android:fillAlpha="0.47"/>
<path
android:pathData="M125.42,107.72s-7.14,17.69 -24.49,9.18 -15.3,-29.25 -15.3,-29.25l-2.72,-3.4s-3.06,3.4 0.68,21.43 22.79,19.39 28.23,18.37 14.62,-4.08 17.34,-12.92S125.42,107.72 125.42,107.72Z"
android:fillColor="#fff"/>
<path
android:pathData="M284.25,125.75s0,13.94 11.56,18.37 23.81,-6.8 25.51,-21.43 -0.68,-43.53 -0.68,-43.53l-5.1,-5.44s2.04,22.45 1.02,39.45 -5.1,25.17 -15.31,26.53 -12.24,-14.97 -12.24,-14.97Z"
android:fillColor="#fff"/>
<path
android:pathData="M313.16,143.77s-14.28,-3.74 -18.71,-25.85l0.68,-5.44s8.5,24.49 22.11,27.89"
android:fillColor="#fff"/>
<path
android:pathData="M327.1,144.11s22.45,6.46 40.81,-6.46l2.72,5.1s-14.97,14.63 -48.98,4.76C323.7,146.16 327.1,144.11 327.1,144.11Z"
android:fillColor="#fff"/>
<path
android:pathData="M89.03,196.15a28.17,28.17 0,0 1,-5.1 16.67c-5.78,8.5 -31.44,4.2 -43.67,-45.51l-1.58,11.26s9.88,35.95 30.29,41.73 24.83,-12.92 25.17,-24.15C91.75,194.11 89.03,196.15 89.03,196.15Z"
android:fillColor="#fff"/>
<path
android:pathData="M61.29,173.82s8.84,54.94 50,59.58c5.1,0 10.88,-0.36 10.88,-0.36S97.35,229.83 81.7,209.49s-16.67,-44.95 -16.67,-44.95Z"
android:fillColor="#fff"/>
<path
android:pathData="M173.71,226.42s6.12,-2.04 7.14,-13.94c3.74,-1.02 5.44,-1.36 5.44,-1.36s-1.02,10.54 -6.12,14.97C176.77,226.42 173.71,226.42 173.71,226.42Z"
android:fillColor="#fff"/>
<path
android:pathData="M116.01,54.18l-4.99,29.25 14.97,8.84 -1.13,14.97 9.52,9.52s27.44,6.35 51.47,6.35 36.73,-3.85 36.73,-3.85 6.12,-22.67 11.34,-79.81c-16.55,-2.95 -31.06,-5.44 -42.4,-5.89S144.58,37.18 129.16,44.21c-1.13,7.48 -1.59,10.2 -1.59,10.2Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M145.26,54.63S137.32,87.06 140.49,112.68c24.03,5.67 50.11,7.94 69.61,4.99 10.88,-16.78 12.7,-29.02 14.06,-46.48s-4.31,-24.72 -4.31,-24.72S182.21,44.21 145.26,54.63Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M230.06,74.36s50.56,-5.22 64.85,-2.27c6.12,17.69 -2.04,52.83 -2.04,52.83l-12.02,1.59 1.81,65.53s-27.21,2.49 -52.6,0 -26.98,-3.17 -26.98,-3.17L201.94,176.4l-5.9,-0.91 -0.45,33.33s-15.42,6.12 -43.31,5.44 -47.62,-11.34 -47.62,-11.34l-27.21,-37.19 0.68,-14.74 14.51,-2.95s0.68,-12.47 2.27,-15.19c25.62,-4.76 66.66,-10.66 97.72,-7.48 1.13,12.24 1.13,15.42 1.13,15.42l9.07,-3.17 0.91,-14.97 17.23,-6.35Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M244.57,84.05s-5.22,22.22 -3.17,36.96a251.79,251.79 0,0 0,44.67 1.36s7.26,-31.06 -0.23,-43.99C267.02,79.74 244.57,84.05 244.57,84.05Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M216,133.65s-3.63,33.33 -0.45,52.15c24.94,4.76 31.74,2.72 31.74,2.72s4.53,-11.18 16.78,-11.79c9.07,-0.45 12.47,9.98 12.47,9.98s0.45,-39.91 -4.31,-55.1C260.44,130.03 216,133.65 216,133.65Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M181.76,131.15s6.8,9.75 7.94,41.49 -5.22,31.74 -5.22,31.74 -26.98,4.31 -61.45,-4.31c-6.57,-44.21 -4.53,-59.18 -2.95,-63.26C145.94,131.61 181.76,131.15 181.76,131.15Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M114.19,96.92S74.06,82.98 62.16,22.44C58.42,19.04 55.69,22.1 55.69,22.1S58.08,54.41 76.44,77.54s37.07,24.49 37.07,24.49Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M303.98,21.08s-2.04,27.89 -21.09,49.66c4.42,0.68 8.16,1.02 8.16,1.02s14.97,-16.67 20.07,-50A9.05,9.05 0,0 0,303.98 21.08Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M317.24,19.72s-1.13,24.83 -22.33,52.38a56.15,56.15 0,0 1,1.93 8.5s12.92,-15.98 18.37,-31.97 8.16,-27.55 8.16,-27.55S322,19.04 317.24,19.72Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M330.84,20.06s3.06,59.18 17.35,91.83c-26.87,31.29 -43.87,40.47 -65.98,47.62 6.46,4.42 19.39,1.02 33.67,-8.5S343.77,130.25 352.61,116.65c8.16,7.82 11.22,3.4 15.65,-10.54s15.14,-41.68 13.1,-64.81c-1.7,-5.1 -3.68,-3.31 -3.68,-3.31s-4.83,-1.45 -5.17,5.01S365.87,75.16 352.95,102.7C342.41,78.9 337.99,20.06 337.99,20.06S335.94,17.68 330.84,20.06Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M240.71,257.26 L229.38,222.12 81.54,233l-5.22,2.27s14.28,78.45 17.23,87.07l4.31,1.13L192.64,295.36s10.66,-13.15 14.97,-24.26C222.12,262.48 240.71,257.26 240.71,257.26Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M168.61,277.98s-17,3.85 -23.35,6.8c-2.27,-11.34 -5.9,-25.62 -5.9,-25.62s-6.57,1.81 -6.8,-2.72 9.52,-5.44 9.52,-5.44 -0.91,-6.12 10.43,-4.31c4.08,-4.08 9.3,-1.59 10.2,6.12s1.81,9.75 1.81,9.75 2.72,0.23 2.27,-2.95 2.49,-6.8 5.67,-2.49 4.99,11.11 -5.22,16.33A46.14,46.14 0,0 0,168.61 277.98Z"
android:fillColor="#fff"/>
<path
android:pathData="M200.13,265.3l-2.95,-5.44s-8.62,3.63 -12.47,-1.13 -1.13,-8.39 2.04,-7.48 5.44,3.4 8.16,2.27c-3.17,-4.31 -4.08,-4.99 -7.71,-5.22s-4.99,-6.12 0,-7.71l4.99,-1.59s5.44,-4.99 9.98,-1.13c4.76,-2.49 8.39,-1.13 19.05,14.51C209.65,256 205.57,258.5 200.13,265.3Z"
android:fillColor="#fff"/>
<path
android:pathData="M278.58,250.6l-34.24,-0.68L244.34,215.22s-9.75,3.4 -9.52,-7.03c-0.23,-7.48 9.98,-5.22 9.98,-5.22s-0,-26.3 19.27,-26.3c13.15,0 14.28,24.49 14.28,24.49s7.71,-2.27 7.48,7.03 -7.26,6.8 -7.26,6.8l-0.23,7.94s15.42,-9.98 8.39,3.4c6.58,-2.04 9.75,3.63 1.36,9.07 9.07,-0.91 10.66,8.39 -9.75,12.47A7.82,7.82 0,0 0,278.58 250.6Z"
android:fillColor="#fff"/>
<path
android:pathData="M228.92,262.02l-7.71,-9.75s-9.3,-0.68 -21.09,12.92c4.53,9.75 4.76,11.11 4.76,11.11s-10.23,25.67 -23.58,24.49c-10.2,-0.91 -12.7,-22.9 -12.7,-22.9s-15.42,2.49 -23.35,6.8c7.26,23.35 14.51,44.9 31.52,44.67s28.8,-14.51 28.8,-14.51l-2.8,60.62s22.15,4.25 51.89,-3.34 55.53,-26.4 55.53,-26.4 4.21,-33.15 1.26,-51.74S299.43,256.81 299.43,256.81l-14.74,-1.59 -1.36,-4.76 -41.04,-0.68 -1.59,7.48Z"
android:fillColor="#348e62"/>
<path
android:pathData="M115.25,57.43s6.5,2.72 10.43,13.15l0.15,5.9s4.84,3.78 7.86,16.17c0.6,17.99 1.06,23.73 1.06,23.73L123.57,106.71l0.3,-1.81s-11.79,-1.06 -17.84,-4.84c1.97,-2.57 6.5,-3.78 6.5,-3.78s6.2,3.48 11.64,2.87c0.45,-5.59 0.45,-6.65 0.45,-6.65l-13.6,-9.67S112.38,63.93 115.25,57.43Z"
android:fillColor="#222"/>
<path
android:pathData="M208.06,117.75s10.73,-11.94 13.15,-34.77 0.15,-30.23 -1.81,-36.28a23.3,23.3 0,0 1,7.86 0s-1.21,21.47 -3.93,39.76 -5.14,29.63 -5.14,29.63Z"
android:fillColor="#222"/>
<path
android:pathData="M227.71,95.62l8.31,13.45 0.6,15.57 -26.15,-2.57 12.4,-2.57Z"
android:fillColor="#222"/>
<path
android:pathData="M283.79,121.98a94.83,94.83 0,0 0,4.08 -22.07,55.19 55.19,0 0,0 -2.57,-21.01l7.26,-0.76 -3.33,43.38Z"
android:fillColor="#222"/>
<path
android:pathData="M270.79,131.7a138.37,138.37 0,0 1,3.78 30.53c0.15,16.78 -1.66,19.05 -1.66,19.05l3.33,5.59 1.21,-28.42 -1.21,-27.06Z"
android:fillColor="#222"/>
<path
android:pathData="M210.03,167.07s-2.72,-22.07 -7.86,-27.97l-0.3,8.01 -6.35,-7.26 -1.66,0.76s2.27,22.07 2.12,34.62c3.78,1.66 5.29,2.42 5.29,2.42l1.36,10.88 9.22,1.97Z"
android:fillColor="#222"/>
<path
android:pathData="M282.13,159.05l0.45,7.41s18.9,-4.08 28.57,-12.7c-14.21,6.35 -24.49,4.69 -24.49,4.69Z"
android:fillColor="#54565a"/>
<path
android:pathData="M180.85,131.39s5.44,6.05 6.95,35.07 -3.02,37.34 -3.02,37.34l5.74,-0.45s2.57,-12.85 0.6,-37.19 -4.38,-35.07 -4.38,-35.07Z"
android:fillColor="#222"/>
<path
android:pathData="M111.93,183.82s-8.01,-12.09 -19.2,-19.8c0.3,-2.27 0.45,-3.17 0.45,-3.17s-7.56,-6.2 -15.57,-7.26c0,16.78 -0.6,31.44 2.42,39.15a82.74,82.74 0,0 0,14.66 4.38l0.6,8.77s10.73,2.57 23.43,4.69 21.01,2.72 21.01,2.72l-23.73,-7.1A127.91,127.91 0,0 1,111.93 183.82Z"
android:fillColor="#222"/>
<path
android:pathData="M354.76,98.85s1.47,5.55 3.97,5.9c3.51,-3.06 3.97,-4.99 5.67,-11s5.1,-20.86 6.46,-28.46c-5.55,18.82 -9.18,26.3 -9.18,26.3s-5.45,11.74 -1.13,-7.16C357.72,92.37 354.76,98.85 354.76,98.85Z"
android:strokeAlpha="0.5"
android:fillColor="#54565a"
android:fillAlpha="0.5"/>
<path
android:pathData="M79.88,252.88l12.24,37.94 6.5,32.05 -5.29,-0.45s-5.44,-19.05 -8.47,-37.19S79.88,252.88 79.88,252.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M94.54,241.95l2.87,1.06 1.97,6.8 -3.48,4.84Z"
android:fillColor="#54565a"/>
<path
android:pathData="M98.62,270.2l-2.72,-15.57 4.53,1.81 2.12,9.98Z"
android:fillColor="#54565a"/>
<path
android:pathData="M102.86,290.44l3.33,-4.99 -2.57,-12.4L98.62,270.19Z"
android:fillColor="#54565a"/>
<path
android:pathData="M108.15,310.37l2.87,-4.99 -3.33,-12.7 -4.84,-2.27Z"
android:fillColor="#54565a"/>
<path
android:pathData="M122.05,306.6l2.57,-4.53 -3.17,-12.09 -4.53,-2.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M116.91,287.57l-3.78,-19.5 5.14,3.78 3.17,10.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M109.81,252.37l4.38,2.72 2.87,8.01 -3.93,4.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M107.54,240.75l3.93,2.12 1.21,6.5 -2.87,3.02Z"
android:fillColor="#54565a"/>
<path
android:pathData="M123.57,239.24l4.23,2.42 0.91,5.9L126.14,250.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M129.31,266.73l3.02,-4.53 -2.12,-8.77 -4.08,-2.57Z"
android:fillColor="#54565a"/>
<path
android:pathData="M133.24,284.4l-3.93,-17.69 4.99,3.33 2.42,9.37Z"
android:fillColor="#54565a"/>
<path
android:pathData="M138.23,302.37l2.12,-4.23 -2.42,-10.58 -4.69,-3.17Z"
android:fillColor="#54565a"/>
<path
android:pathData="M137.17,259.74l0.76,2.57 -3.17,3.33 3.02,1.97 2.42,11.79 -3.02,4.53 4.53,2.27 1.97,11.34 -3.02,4.38 2.87,-0.6 0.45,8.62 8.77,-2.42a196.92,196.92 0,0 1,-6.2 -19.5c-3.87,-13.91 -6.8,-28.87 -6.8,-28.87Z"
android:fillColor="#54565a"/>
<path
android:pathData="M143.67,237.57l3.33,1.97 1.36,6.65 -3.78,1.36Z"
android:fillColor="#54565a"/>
<path
android:pathData="M161.51,235.3l4.84,2.42 1.21,5.44 -2.72,4.08 4.08,1.81 1.06,6.35 -3.33,1.51Z"
android:fillColor="#54565a"/>
<path
android:pathData="M169.97,271.55l3.17,13.45 2.12,-4.53 -0.91,-4.38 -4.38,-1.36 4.23,-3.48 -1.06,-2.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M173.75,233.77l4.23,2.57 0.6,5.59 -1.97,3.93 3.48,2.42 1.81,8.01 -2.42,3.48 3.63,2.27 1.51,7.1 -3.17,3.63 3.02,2.27 0.91,4.53 -2.57,2.87Z"
android:fillColor="#54565a"/>
<path
android:pathData="M186.45,232.59l4.38,2.42 0.3,4.23 -3.63,1.36Z"
android:fillColor="#54565a"/>
<path
android:pathData="M185.24,247.39l4.53,5.59s3.33,2.57 5.59,0.45C194.91,249.36 192.19,247.39 185.24,247.39Z"
android:fillColor="#54565a"/>
<path
android:pathData="M190.23,260.98l1.66,9.82 3.17,-3.33 -1.81,-6.35Z"
android:fillColor="#54565a"/>
<path
android:pathData="M192.8,280.02l-0.91,-9.22 2.72,2.12 1.06,3.93Z"
android:fillColor="#54565a"/>
<path
android:pathData="M200.35,285.01l-1.97,-6.05 1.06,-2.72 -1.21,-4.84 -3.48,-0.91 2.72,-2.72 -2.87,-6.65 3.63,-0.6 7.41,16.63Z"
android:fillColor="#54565a"/>
<path
android:pathData="M201.41,231.54l2.72,1.66 0.76,3.17 -2.87,0.91Z"
android:fillColor="#54565a"/>
<path
android:pathData="M215.02,230.17l3.78,1.81 1.21,5.59 -3.02,3.17 3.93,2.27 0.76,4.84 -2.57,2.57Z"
android:fillColor="#54565a"/>
<path
android:pathData="M247.82,228.51s2.87,13.45 14.51,21.31c13,1.06 16.48,1.06 16.48,1.06l-0.3,-3.33S262.18,251.33 247.82,228.51Z"
android:fillColor="#222"/>
<path
android:pathData="M280.32,200.73l3.63,13.45 -4.84,1.36 -0.76,-14.66Z"
android:fillColor="#54565a"/>
<path
android:pathData="M205.34,315.31l-0.6,20.41s7.1,-3.78 11.34,-15.72c-3.02,-2.12 2.72,-8.92 2.72,-8.92s1.06,-4.99 -0.45,-7.41C210.78,310.92 205.34,315.31 205.34,315.31Z"
android:fillColor="#222"/>
<path
android:pathData="M307.83,281.29a207.49,207.49 0,0 1,-10.88 49.2c2.04,8.16 -1.13,15.42 -6.8,19.27 -0.02,0.2 -0.05,0.4 -0.13,0.9 -1.25,7.88 -10.77,13.7 -10.77,13.7s22.15,-9.23 35.29,-21.24C316.12,309.57 313.5,298.07 307.83,281.29Z"
android:fillColor="#222"/>
<path
android:pathData="M234.35,39.6a313.45,313.45 0,0 0,-32.61 -5.34c-17.99,-1.97 -46.38,1.12 -72.8,9.56 -2.53,12.93 -5.06,62.96 -5.06,62.96s7.87,7.87 10.68,9.84c15.74,4.22 58.47,11.24 87.7,2.53C229.57,92.16 234.35,39.6 234.35,39.6Z"
android:fillColor="#00000000"/>
<path
android:pathData="M190.23,32.18h0a108.46,108.46 0,0 1,11.68 0.58,318.1 318.1,0 0,1 32.78,5.37 1.5,1.5 0,0 1,1.16 1.6c-0.01,0.13 -1.22,13.36 -3.31,29.71 -1.23,9.61 -2.51,18.4 -3.82,26.14 -1.64,9.69 -3.32,17.75 -5,23.96a1.5,1.5 0,0 1,-1.02 1.04c-9.4,2.8 -20.9,4.22 -34.17,4.22a232.67,232.67 0,0 1,-54.35 -6.74,1.5 1.5,0 0,1 -0.47,-0.22c-2.89,-2.02 -10.56,-9.68 -10.88,-10.01a1.5,1.5 0,0 1,-0.44 -1.14c0.1,-2.05 2.56,-50.29 5.09,-63.18a1.5,1.5 0,0 1,1.02 -1.14,222.75 222.75,0 0,1 32.34,-7.67A189.89,189.89 0,0 1,190.23 32.18ZM232.73,40.78c-3.94,-0.85 -16.48,-3.42 -31.15,-5.03a105.47,105.47 0,0 0,-11.35 -0.56c-18.09,0 -40.44,3.65 -59.97,9.79 -2.27,13.02 -4.53,55.37 -4.84,61.22 1.68,1.66 7.38,7.26 9.8,9.05a229.88,229.88 0,0 0,53.31 6.57c12.6,0 23.54,-1.3 32.51,-3.86 3.65,-13.85 6.65,-34.14 8.53,-48.87C231.26,55.75 232.38,44.51 232.73,40.78Z"
android:fillColor="#222"/>
<path
android:pathData="M234.35,39.6s-41.04,-8.43 -94.73,9.56c-8.71,32.33 -5.06,67.46 -5.06,67.46"
android:fillColor="#00000000"/>
<path
android:pathData="M134.56,118.11a1.5,1.5 0,0 1,-1.49 -1.35,207.89 207.89,0 0,1 -0.75,-21.78c0.1,-7.5 0.55,-14.84 1.34,-21.82A165.38,165.38 0,0 1,138.17 48.77a1.5,1.5 0,0 1,0.97 -1.03,226.62 226.62,0 0,1 37.7,-9.14 213.03,213.03 0,0 1,30.26 -2.46,175.44 175.44,0 0,1 20.15,0.94c4.7,0.51 7.28,1.04 7.39,1.06a1.5,1.5 0,1 1,-0.6 2.94c-0.13,-0.03 -10.4,-2.08 -27.02,-1.94a218.97,218.97 0,0 0,-66.17 11.19c-4.29,16.31 -5.38,33.27 -5.54,44.71a204.53,204.53 0,0 0,0.73 21.43,1.5 1.5,0 0,1 -1.34,1.65A1.52,1.52 0,0 1,134.56 118.11Z"
android:fillColor="#222"/>
<path
android:pathData="M140.19,112.4s43.01,11.24 77.86,3.93a482.57,482.57 0,0 0,8.99 -69.71s-50.31,-1.97 -81.8,8.15C138.5,79.23 140.19,112.4 140.19,112.4Z"
android:fillColor="#00000000"/>
<path
android:pathData="M191.69,120.3h0a224.03,224.03 0,0 1,-36.12 -3.22c-9.46,-1.59 -15.69,-3.21 -15.75,-3.23a1.5,1.5 0,0 1,-1.12 -1.38c0,-0.08 -0.42,-8.49 0,-19.77 0.25,-6.63 0.73,-12.95 1.43,-18.79a135.32,135.32 0,0 1,3.68 -19.54,1.5 1.5,0 0,1 0.99,-1.03c22.68,-7.29 54.81,-8.38 71.94,-8.38 6.33,0 10.34,0.15 10.38,0.16a1.5,1.5 0,0 1,1.44 1.56c0,0.08 -0.37,8.55 -1.66,21.34a478.14,478.14 0,0 1,-7.37 48.61,1.5 1.5,0 0,1 -1.16,1.16A131,131 0,0 1,191.69 120.3ZM141.64,111.21c2.15,0.52 7.39,1.72 14.46,2.91a220.96,220.96 0,0 0,35.59 3.17h0a129.6,129.6 0,0 0,25.09 -2.24,477.05 477.05,0 0,0 7.12,-47.31c0.97,-9.58 1.41,-16.71 1.57,-19.68 -1.7,-0.05 -4.76,-0.11 -8.74,-0.11 -16.76,0 -48,1.04 -70.25,7.99 -3.28,12.32 -4.42,26.77 -4.79,36.83C141.36,101.58 141.54,108.59 141.64,111.21Z"
android:fillColor="#222"/>
<path
android:pathData="M127.26,53.93l-11.24,0.56s-4.5,15.18 -4.78,28.67a97.6,97.6 0,0 0,13.21 9"
android:fillColor="#00000000"/>
<path
android:pathData="M124.44,93.66a1.49,1.49 0,0 1,-0.7 -0.17,98.3 98.3,0 0,1 -13.44,-9.14 1.5,1.5 0,0 1,-0.57 -1.21A111.41,111.41 0,0 1,112.26 63.46c1.16,-5.48 2.27,-9.23 2.31,-9.39a1.5,1.5 0,0 1,1.36 -1.07l11.24,-0.56a1.5,1.5 0,0 1,0.15 3L117.16,55.94c-0.41,1.48 -1.18,4.44 -1.97,8.17a110.5,110.5 0,0 0,-2.44 18.34,95.9 95.9,0 0,0 12.39,8.38 1.5,1.5 0,0 1,-0.7 2.83Z"
android:fillColor="#222"/>
<path
android:pathData="M291.13,72.2c-18.83,1.69 -51.72,7.59 -51.72,7.59s-4.22,16.58 -2.81,44.97c17.43,5.9 56.5,-0.28 56.5,-0.28s6.47,-39.07 2.25,-52.28c-28.11,-2.81 -64.37,2.53 -64.37,2.53"
android:fillColor="#00000000"/>
<path
android:pathData="M258.22,128.82q-2.88,0 -5.5,-0.11c-6.9,-0.28 -12.49,-1.13 -16.6,-2.52a1.5,1.5 0,0 1,-1.02 -1.35,207.33 207.33,0 0,1 0.89,-33.38 99.49,99.49 0,0 1,1.97 -12.04A1.5,1.5 0,0 1,239.14 78.32c0.24,-0.04 17.1,-3.06 33.52,-5.39 -7.32,0.13 -14.26,0.54 -19.92,0.98 -12.39,0.97 -21.45,2.29 -21.54,2.31a1.5,1.5 0,0 1,-0.44 -2.97c0.09,-0.01 9.26,-1.35 21.75,-2.33 7.34,-0.57 14.37,-0.91 20.91,-1.01a196.69,196.69 0,0 1,22.09 0.8,1.5 1.5,0 0,1 1.28,1.04c1.81,5.67 1.99,16.34 0.52,31.69 -1.08,11.34 -2.7,21.19 -2.72,21.29a1.5,1.5 0,0 1,-1.25 1.24c-0.1,0.02 -9.97,1.57 -21.85,2.37C266.73,128.66 262.29,128.82 258.22,128.82ZM238.05,123.65c7.05,2.1 18.5,2.69 33.24,1.69 9.48,-0.64 17.66,-1.76 20.51,-2.18 0.44,-2.84 1.66,-10.95 2.52,-20.03 1.33,-13.9 1.28,-24.06 -0.13,-29.54q-1.08,-0.1 -2.17,-0.18a1.49,1.49 0,0 1,-0.75 0.28c-16.74,1.5 -45.02,6.41 -50.61,7.4 -0.35,1.62 -1.07,5.31 -1.69,10.79A203.47,203.47 0,0 0,238.05 123.65Z"
android:fillColor="#222"/>
<path
android:pathData="M244.47,83.95s-4.5,18.83 -3.37,36.82a233.6,233.6 0,0 0,48.07 1.12l3.65,-44.13S264.15,79.73 244.47,83.95Z"
android:fillColor="#00000000"/>
<path
android:pathData="M292.82,76.27a1.5,1.5 0,0 1,1.5 1.62l-3.65,44.13a1.5,1.5 0,0 1,-1.34 1.37c-0.07,0.01 -7.45,0.74 -18.44,0.74a232.78,232.78 0,0 1,-29.97 -1.87,1.5 1.5,0 0,1 -1.3,-1.39 131.07,131.07 0,0 1,1.28 -25.46c0.98,-6.95 2.09,-11.61 2.13,-11.8a1.5,1.5 0,0 1,1.14 -1.12c10.23,-2.19 22.89,-3.77 31.71,-4.7 9.54,-1.01 16.78,-1.51 16.85,-1.52Q292.77,76.27 292.82,76.27ZM287.77,120.51 L291.17,79.39c-6.38,0.49 -28.95,2.4 -45.46,5.83 -0.37,1.69 -1.17,5.58 -1.88,10.64a130.47,130.47 0,0 0,-1.32 23.58,231.01 231.01,0 0,0 28.35,1.69C279.1,121.13 285.26,120.72 287.78,120.51Z"
android:fillColor="#222"/>
<path
android:pathData="M236.6,126.18q-0.07,0 -0.15,-0.01L210.87,123.64A1.5,1.5 0,0 1,209.53 122,1.5 1.5,0 0,1 211.17,120.65l25.58,2.53a1.5,1.5 0,0 1,-0.15 2.99Z"
android:fillColor="#222"/>
<path
android:pathData="M192.19,125.21s-38.51,-4.5 -97.54,7.87c-4.22,12.65 0.56,72.8 0.56,72.8s61.28,16.02 100.35,2.81C197.53,166.81 192.19,125.21 192.19,125.21Z"
android:fillColor="#00000000"/>
<path
android:pathData="M173.05,122.91h0a183.48,183.48 0,0 1,19.31 0.81,1.5 1.5,0 0,1 1.31,1.3c0.01,0.1 1.35,10.62 2.43,26.12 0.63,9.1 1.06,18.12 1.25,26.8 0.25,10.86 0.15,21.23 -0.3,30.82a1.5,1.5 0,0 1,-1.02 1.35c-10.4,3.52 -23.29,5.3 -38.3,5.3a230.68,230.68 0,0 1,-23.34 -1.26c-6.54,-0.67 -13.3,-1.6 -20.11,-2.78 -11.59,-2 -19.39,-4.02 -19.46,-4.04a1.5,1.5 0,0 1,-1.12 -1.33c-0.01,-0.15 -1.2,-15.26 -1.87,-31.72 -0.89,-22.24 -0.43,-36.26 1.38,-41.68a1.5,1.5 0,0 1,1.12 -0.99C128.66,124.42 156.08,122.91 173.05,122.91ZM190.85,126.58c-2.43,-0.22 -8.6,-0.67 -17.8,-0.67h0c-16.68,0 -43.56,1.47 -77.21,8.45 -1.47,5.6 -1.81,19.3 -0.99,39.8 0.56,13.88 1.5,26.8 1.78,30.53 2.47,0.61 9.17,2.18 18.21,3.74a262.08,262.08 0,0 0,42.9 3.99c14.22,0 26.44,-1.62 36.37,-4.82a513.21,513.21 0,0 0,-0.99 -56.22C192.25,138.94 191.22,129.73 190.85,126.58Z"
android:fillColor="#222"/>
<path
android:pathData="M111.23,129.7s-5.34,38.79 4.78,76.74c17.99,5.06 28.95,7.03 28.95,7.03"
android:fillColor="#00000000"/>
<path
android:pathData="M144.97,214.97a1.51,1.51 0,0 1,-0.27 -0.02c-0.11,-0.02 -11.24,-2.04 -29.09,-7.06a1.5,1.5 0,0 1,-1.04 -1.06,182.48 182.48,0 0,1 -5.06,-28.23 232.16,232.16 0,0 1,-1.18 -24.76,206.67 206.67,0 0,1 1.42,-24.34 1.5,1.5 0,1 1,2.97 0.41,203.81 203.81,0 0,0 -1.39,24c-0.06,12.89 0.93,32.17 5.92,51.33 17.22,4.81 27.88,6.74 27.99,6.76a1.5,1.5 0,0 1,-0.26 2.98Z"
android:fillColor="#222"/>
<path
android:pathData="M186.57,131.11s8.43,48.07 3.93,71.96c-30.92,6.75 -68.02,-2.81 -68.02,-2.81S115.45,153.88 120.23,136.73C152.27,130.27 186.57,131.11 186.57,131.11Z"
android:fillColor="#00000000"/>
<path
android:pathData="M182.49,129.58c2.6,0 4.06,0.04 4.12,0.04a1.5,1.5 0,0 1,1.44 1.24c0.02,0.12 2.13,12.24 3.67,27.13 0.9,8.75 1.43,16.74 1.57,23.74a109.5,109.5 0,0 1,-1.31 21.63,1.5 1.5,0 0,1 -1.15,1.19 118.19,118.19 0,0 1,-25.01 2.44,193.92 193.92,0 0,1 -30.56,-2.63c-7.93,-1.3 -12.94,-2.58 -13.15,-2.64a1.5,1.5 0,0 1,-1.11 -1.23c-0.02,-0.12 -1.78,-11.8 -2.93,-25.43 -0.68,-8.02 -1.01,-15.14 -1,-21.16 0.01,-7.61 0.59,-13.52 1.72,-17.56a1.5,1.5 0,0 1,1.15 -1.07C145.38,130.13 172.15,129.58 182.49,129.58ZM185.3,132.59c-0.68,-0.01 -1.63,-0.02 -2.81,-0.02 -10.12,0 -36.14,0.54 -61.04,5.45 -1.69,7.04 -1.83,19.71 -0.39,36.76 0.95,11.25 2.32,21.17 2.76,24.26 1.83,0.43 6.13,1.4 11.96,2.35a190.85,190.85 0,0 0,30.03 2.58,116.73 116.73,0 0,0 23.39,-2.17c1.63,-9.68 1.47,-24.69 -0.47,-43.53C187.49,146.23 185.86,136.01 185.29,132.59Z"
android:fillColor="#222"/>
<path
android:pathData="M92.4,147.69 L78.07,150.78s-1.69,29.23 1.97,42.16c10.12,3.65 14.62,4.22 14.62,4.22"
android:fillColor="#00000000"/>
<path
android:pathData="M94.65,198.66a1.51,1.51 0,0 1,-0.19 -0.01c-0.19,-0.02 -4.78,-0.63 -14.94,-4.29a1.5,1.5 0,0 1,-0.93 -1c-1.55,-5.49 -2.36,-14.35 -2.41,-26.33 -0.04,-8.87 0.38,-16.25 0.39,-16.33a1.5,1.5 0,0 1,1.18 -1.38l14.34,-3.09a1.5,1.5 0,1 1,0.63 2.93l-13.21,2.85c-0.11,2.39 -0.35,8.27 -0.33,15.02 0.04,11 0.77,19.53 2.1,24.77 9.27,3.3 13.52,3.87 13.56,3.88a1.5,1.5 0,0 1,-0.19 2.99Z"
android:fillColor="#222"/>
<path
android:pathData="M194.16,141.62A1.5,1.5 0,0 1,192.73 140.58,1.5 1.5,0 0,1 193.7,138.69l7.87,-2.53A1.5,1.5 0,0 1,203.46 137.13,1.5 1.5,0 0,1 202.49,139.02L194.62,141.55A1.5,1.5 0,0 1,194.16 141.62Z"
android:fillColor="#222"/>
<path
android:pathData="M201.74,179.26A1.5,1.5 0,0 1,201.13 179.13L195.51,176.59A1.5,1.5 0,0 1,194.76 174.61,1.5 1.5,0 0,1 196.74,173.86l5.62,2.53A1.5,1.5 0,0 1,201.74 179.26Z"
android:fillColor="#222"/>
<path
android:pathData="M204,122.69s-4.78,37.38 -1.41,66.06c9.56,1.97 43.45,3.75 43.45,3.75"
android:fillColor="#00000000"/>
<path
android:pathData="M246.04,193.99l-0.08,0c-1.39,-0.07 -34.12,-1.81 -43.68,-3.78a1.5,1.5 0,0 1,-1.19 -1.29,202.04 202.04,0 0,1 -1.21,-22.59c-0.02,-6.7 0.19,-13.92 0.64,-21.46 0.77,-12.83 1.97,-22.28 1.98,-22.38a1.5,1.5 0,0 1,2.98 0.38c-0.01,0.09 -1.2,9.46 -1.96,22.2 -0.68,11.44 -1.15,27.96 0.43,42.4 10.57,1.84 41.84,3.51 42.17,3.52a1.5,1.5 0,0 1,-0.08 3Z"
android:fillColor="#222"/>
<path
android:pathData="M277.45,192.5l4.97,-0.38s0,-45.54 -1.41,-65.21"
android:fillColor="#00000000"/>
<path
android:pathData="M277.44,194a1.5,1.5 0,0 1,-0.11 -3l3.59,-0.27c-0.01,-7.79 -0.15,-46.24 -1.4,-63.72A1.5,1.5 0,0 1,282.51 126.79c1.39,19.5 1.41,64.86 1.41,65.32a1.5,1.5 0,0 1,-1.39 1.5l-4.97,0.38C277.52,194 277.48,194 277.44,194Z"
android:fillColor="#222"/>
<path
android:pathData="M276.2,187.05s2.57,-28.1 0.04,-55.37c-22.21,-1.69 -60.72,1.69 -60.72,1.69s-2.53,34.85 0,52.28c13.49,3.93 32.11,3.1 32.11,3.1"
android:fillColor="#00000000"/>
<path
android:pathData="M243.33,190.32c-1.84,0 -4.15,-0.04 -6.76,-0.15a93.31,93.31 0,0 1,-21.47 -3.09,1.5 1.5,0 0,1 -1.06,-1.23c-1.06,-7.31 -1.39,-18.39 -0.96,-32.94 0.31,-10.8 0.95,-19.58 0.95,-19.67a1.5,1.5 0,0 1,1.37 -1.39c0.1,-0.01 9.8,-0.85 22.08,-1.48 11.36,-0.58 27.33,-1.09 38.88,-0.21a1.5,1.5 0,0 1,1.38 1.36,320.6 320.6,0 0,1 0.94,38.1c-0.32,10.36 -0.97,17.48 -0.97,17.55a1.5,1.5 0,0 1,-2.99 -0.27c0.01,-0.07 0.64,-7.12 0.96,-17.4a321.22,321.22 0,0 0,-0.81 -36.43c-11.27,-0.74 -26.36,-0.25 -37.22,0.3 -9.65,0.49 -17.69,1.12 -20.71,1.37 -0.18,2.81 -0.62,9.94 -0.86,18.27 -0.39,13.53 -0.12,24.36 0.8,31.44a97.03,97.03 0,0 0,19.8 2.7c6.21,0.28 10.85,0.08 10.89,0.08a1.5,1.5 0,0 1,0.13 3C247.58,190.25 245.94,190.32 243.33,190.32Z"
android:fillColor="#222"/>
<path
android:pathData="M211.58,190.15s-3.09,-31.2 -1.13,-61.84c12.93,-3.09 30.92,-1.97 30.92,-1.97"
android:fillColor="#00000000"/>
<path
android:pathData="M211.58,191.65A1.5,1.5 0,0 1,210.09 190.29c-0.01,-0.08 -0.78,-7.97 -1.31,-19.51a404.63,404.63 0,0 1,0.18 -42.57,1.5 1.5,0 0,1 1.15,-1.36 98.4,98.4 0,0 1,20.63 -2.18c6.1,-0.1 10.54,0.17 10.73,0.18a1.5,1.5 0,1 1,-0.19 2.99c-0.05,0 -4.53,-0.28 -10.52,-0.17a103.45,103.45 0,0 0,-18.88 1.86,405.2 405.2,0 0,0 -0.1,41.13c0.52,11.46 1.29,19.27 1.29,19.35a1.5,1.5 0,0 1,-1.35 1.64Q211.66,191.65 211.58,191.65Z"
android:fillColor="#222"/>
<path
android:pathData="M311.61,21.91"
android:fillColor="#00000000"/>
<path
android:pathData="M312.97,343s2.67,-36.56 -3.67,-59.6 -10.02,-26.42 -10.02,-26.42a107.31,107.31 0,0 0,-15.37 -1.54"
android:fillColor="#00000000"/>
<path
android:pathData="M312.97,344.5q-0.05,0 -0.11,0a1.5,1.5 0,0 1,-1.39 -1.61c0.01,-0.09 0.66,-9.24 0.54,-21.06 -0.11,-10.87 -0.93,-26.29 -4.16,-38.03a157.92,157.92 0,0 0,-7.03 -21.01,25.93 25.93,0 0,0 -2.35,-4.42 103.22,103.22 0,0 0,-14.56 -1.42,1.5 1.5,0 0,1 0,-3 107.43,107.43 0,0 1,15.63 1.56,1.5 1.5,0 0,1 0.75,0.37c0.41,0.38 4.17,4.33 10.45,27.13a115.67,115.67 0,0 1,3.3 19.29c0.57,5.94 0.9,12.51 0.97,19.54 0.13,11.94 -0.54,21.19 -0.55,21.28A1.5,1.5 0,0 1,312.97 344.5Z"
android:fillColor="#222"/>
<path
android:pathData="M203.3,367.83l-0.07,0A1.5,1.5 0,0 1,201.8 366.25L204.18,314.56A1.5,1.5 0,0 1,205.75 313.13,1.5 1.5,0 0,1 207.18,314.7L204.8,366.39A1.5,1.5 0,0 1,203.3 367.83Z"
android:fillColor="#222"/>
<path
android:pathData="M141.63,251.07s-0.17,-3.63 6.26,-4.62 7.09,3.46 8.74,11.54"
android:fillColor="#00000000"/>
<path
android:pathData="M156.63,259.5a1.5,1.5 0,0 1,-1.47 -1.2q-0.09,-0.43 -0.17,-0.85c-0.73,-3.58 -1.3,-6.41 -2.33,-8.03 -0.76,-1.19 -1.82,-1.9 -4.54,-1.48 -4.88,0.75 -4.99,3.02 -4.99,3.11a0.39,0.39 0,0 0,0 -0.05l-3,0.14a4.74,4.74 0,0 1,1.01 -2.9c1.26,-1.7 3.45,-2.8 6.52,-3.27a8.8,8.8 0,0 1,4.5 0.29,6.07 6.07,0 0,1 3.03,2.55c1.32,2.08 1.95,5.15 2.73,9.04q0.08,0.41 0.17,0.84a1.5,1.5 0,0 1,-1.47 1.8Z"
android:fillColor="#54565a"/>
<path
android:pathData="M283.39,250.74a98.1,98.1 0,0 1,1.98 10.39c-22.75,1.32 -37.42,0 -44.67,-0.82 0.33,-7.75 0.99,-10.39 0.99,-10.39Z"
android:fillColor="#00000000"/>
<path
android:pathData="M241.69,248.42h0.03l41.7,0.82a1.5,1.5 0,0 1,1.43 1.14,97.92 97.92,0 0,1 2.02,10.6 1.5,1.5 0,0 1,-1.41 1.63c-6.43,0.37 -12.72,0.56 -18.69,0.56a230.78,230.78 0,0 1,-26.24 -1.39,1.5 1.5,0 0,1 -1.33,-1.55c0.33,-7.81 1,-10.57 1.03,-10.69A1.5,1.5 0,0 1,241.69 248.42ZM282.2,252.22 L242.94,251.44c-0.19,1.26 -0.47,3.64 -0.67,7.52a230.12,230.12 0,0 0,24.51 1.22c5.41,0 11.1,-0.16 16.92,-0.47C283.31,257.16 282.59,253.9 282.2,252.22Z"
android:fillColor="#222"/>
<path
android:pathData="M145.42,284.51s14.67,-5.6 22.75,-6.43"
android:fillColor="#00000000"/>
<path
android:pathData="M145.42,286.01a1.5,1.5 0,0 1,-0.54 -2.9c0.61,-0.23 14.95,-5.68 23.13,-6.52a1.5,1.5 0,0 1,0.3 2.98c-7.79,0.8 -22.22,6.28 -22.36,6.34A1.5,1.5 0,0 1,145.42 286.01Z"
android:fillColor="#54565a"/>
<path
android:pathData="M204.93,275.96l-7.25,-15.82a20.36,20.36 0,0 1,-9.23 0.66c-5.11,-0.82 -7.09,-8.08 -3.79,-9.4s5.11,4.62 10.72,2.14c-2.47,-5.28 -3.79,-5.6 -8.24,-5.6s-4.78,-6.43 0.17,-7.25 7.09,-2.64 13.52,6.43"
android:fillColor="#00000000"/>
<path
android:pathData="M204.93,277.46a1.5,1.5 0,0 1,-1.37 -0.88l-6.72,-14.66a22.38,22.38 0,0 1,-8.64 0.35,7.6 7.6,0 0,1 -4.68,-2.75 8.8,8.8 0,0 1,-1.95 -4.5c-0.26,-2.37 0.7,-4.29 2.52,-5.02 2.15,-0.86 3.87,0.29 5.24,1.22 1.24,0.83 2.34,1.58 3.9,1.39 -1.7,-3.18 -2.73,-3.18 -6.11,-3.18a4.75,4.75 0,0 1,-4.92 -4.43,5.26 5.26,0 0,1 1.07,-3.64 5.83,5.83 0,0 1,3.77 -2.16c0.55,-0.09 1.08,-0.2 1.58,-0.3 2.03,-0.41 3.96,-0.81 6.17,0.17 2.16,0.95 4.4,3.16 7.24,7.17a1.5,1.5 0,0 1,-2.45 1.74c-2.48,-3.49 -4.38,-5.45 -6,-6.16 -1.34,-0.59 -2.54,-0.35 -4.36,0.02 -0.53,0.11 -1.08,0.22 -1.69,0.32a2.48,2.48 0,0 0,-2.35 2.59,1.76 1.76,0 0,0 1.93,1.68c2.32,0 4.08,0.08 5.65,1.05 1.65,1.02 2.77,2.9 3.95,5.42a1.5,1.5 0,0 1,-0.75 2.01,7.27 7.27,0 0,1 -4.99,0.5 11.03,11.03 0,0 1,-3.32 -1.7c-1.28,-0.87 -1.83,-1.17 -2.45,-0.92 -0.76,0.31 -0.69,1.53 -0.65,1.9a5.29,5.29 0,0 0,4.12 4.62,19.08 19.08,0 0,0 8.49,-0.59 1.5,1.5 0,0 1,1.87 0.79l7.25,15.82a1.5,1.5 0,0 1,-1.36 2.13Z"
android:fillColor="#54565a"/>
<path
android:pathData="M191.41,239.71a7.53,7.53 0,0 1,5.77 -2.97c4.12,-0.33 5.44,1.15 10.22,8.57"
android:fillColor="#00000000"/>
<path
android:pathData="M207.41,246.81a1.5,1.5 0,0 1,-1.26 -0.69c-4.91,-7.62 -5.76,-8.14 -8.84,-7.89a6.1,6.1 0,0 0,-4.63 2.28l0.01,-0.02 -2.54,-1.59a9.03,9.03 0,0 1,6.92 -3.67,7.28 7.28,0 0,1 5.97,1.75c1.54,1.34 3.04,3.49 5.63,7.51a1.5,1.5 0,0 1,-1.26 2.31Z"
android:fillColor="#54565a"/>
<path
android:pathData="M201.96,238.06s1.98,-2.47 6.26,-0.5 20.6,24.89 20.6,24.89"
android:fillColor="#00000000"/>
<path
android:pathData="M228.83,263.95a1.5,1.5 0,0 1,-1.22 -0.63c-0.04,-0.06 -4.12,-5.78 -8.67,-11.66 -2.66,-3.44 -4.95,-6.26 -6.82,-8.39 -3.02,-3.43 -4.17,-4.18 -4.53,-4.35a4.84,4.84 0,0 0,-3.6 -0.44,2.42 2.42,0 0,0 -0.86,0.51 1.5,1.5 0,1 1,-2.34 -1.87,5.06 5.06,0 0,1 2.19,-1.46 7.6,7.6 0,0 1,5.88 0.54c1.29,0.6 3.99,2.66 12.47,13.63 4.58,5.93 8.69,11.69 8.73,11.75a1.5,1.5 0,0 1,-1.22 2.37Z"
android:fillColor="#54565a"/>
<path
android:pathData="M200.15,265.74a29.74,29.74 0,0 1,20.77 -13.02"
android:fillColor="#00000000"/>
<path
android:pathData="M200.15,267.24a1.5,1.5 0,0 1,-1.29 -2.26,27.81 27.81,0 0,1 5.31,-6.14 31.7,31.7 0,0 1,6.79 -4.6,31.25 31.25,0 0,1 9.76,-3.01 1.5,1.5 0,1 1,0.41 2.97,28.41 28.41,0 0,0 -14.97,6.89 25.03,25.03 0,0 0,-4.7 5.4A1.5,1.5 0,0 1,200.15 267.24Z"
android:fillColor="#54565a"/>
<path
android:pathData="M213.17,268.7a51.68,51.68 0,0 1,13.02 -9.07"
android:fillColor="#00000000"/>
<path
android:pathData="M213.17,270.2a1.5,1.5 0,0 1,-1.06 -2.56,52.74 52.74,0 0,1 13.45,-9.36 1.5,1.5 0,1 1,1.27 2.72,50.4 50.4,0 0,0 -12.6,8.77A1.5,1.5 0,0 1,213.17 270.2Z"
android:fillColor="#54565a"/>
<path
android:pathData="M244.49,202.83s-3.93,-2.57 -8.01,1.51c-3.4,3.4 -2.27,14.06 7.56,10.58"
android:fillColor="#00000000"/>
<path
android:pathData="M240.47,217.11a7.89,7.89 0,0 1,-2.06 -0.26,6.54 6.54,0 0,1 -3.89,-2.88 9.1,9.1 0,0 1,-1.24 -5.64,8.32 8.32,0 0,1 8.86,-7.77 7.3,7.3 0,0 1,3.16 1.01l-1.64,2.51 0.01,0.01a4.51,4.51 0,0 0,-1.92 -0.55,5.46 5.46,0 0,0 -4.22,1.86 5.3,5.3 0,0 0,-1.27 3.19,6.18 6.18,0 0,0 0.79,3.78c1.46,2.32 4.33,1.9 6.48,1.14a1.5,1.5 0,1 1,1 2.83A12.27,12.27 0,0 1,240.47 217.11Z"
android:fillColor="#54565a"/>
<path
android:pathData="M278.65,201.02s6.35,-1.06 7.26,6.35 -4.38,8.31 -6.95,7.56"
android:fillColor="#00000000"/>
<path
android:pathData="M280.57,216.65a7.33,7.33 0,0 1,-2.04 -0.28,1.5 1.5,0 1,1 0.85,-2.88 4.27,4.27 0,0 0,3.76 -0.71c1.44,-1.22 1.5,-3.52 1.28,-5.23a5.86,5.86 0,0 0,-2.02 -4.19,5.14 5.14,0 0,0 -3.5,-0.87 1.5,1.5 0,1 1,-0.49 -2.96,8.19 8.19,0 0,1 5.79,1.42 8.7,8.7 0,0 1,3.2 6.22c0.54,4.43 -0.96,6.73 -2.32,7.88A6.91,6.91 0,0 1,280.57 216.65Z"
android:fillColor="#54565a"/>
<path
android:pathData="M250.09,185.14s4.53,-1.51 5.9,8.16 2.27,37.49 18.59,39.91"
android:fillColor="#00000000"/>
<path
android:pathData="M274.57,234.71a1.51,1.51 0,0 1,-0.22 -0.02,15.79 15.79,0 0,1 -9.61,-5.31 29.75,29.75 0,0 1,-5.54 -9.93c-2.62,-7.37 -3.55,-15.73 -4.22,-21.84 -0.18,-1.59 -0.33,-2.97 -0.49,-4.1 -0.66,-4.7 -2.04,-6.2 -2.8,-6.67a1.68,1.68 0,0 0,-1.13 -0.28,1.5 1.5,0 0,1 -0.95,-2.85 4.51,4.51 0,0 1,3.66 0.57c2.15,1.33 3.56,4.29 4.2,8.8 0.17,1.17 0.32,2.57 0.5,4.19 1.25,11.35 3.59,32.48 16.83,34.44a1.5,1.5 0,0 1,-0.22 2.98Z"
android:fillColor="#54565a"/>
<path
android:pathData="M257.34,178.66s4.23,-1.36 7.41,11.03 -0.45,16.48 4.23,25.85"
android:fillColor="#00000000"/>
<path
android:pathData="M268.98,217.04a1.5,1.5 0,0 1,-1.34 -0.83c-2.74,-5.48 -2.8,-9.26 -2.86,-13.62a48.47,48.47 0,0 0,-1.48 -12.52c-1.4,-5.48 -2.95,-7.93 -4.01,-9.02 -0.89,-0.92 -1.5,-0.94 -1.59,-0.93a1.5,1.5 0,0 1,-0.82 -2.88,3.84 3.84,0 0,1 2.95,0.47c2.62,1.45 4.76,5.36 6.36,11.62a51.04,51.04 0,0 1,1.58 13.22c0.06,4.17 0.11,7.46 2.54,12.33a1.5,1.5 0,0 1,-1.34 2.17Z"
android:fillColor="#54565a"/>
<path
android:pathData="M270.34,179.12s3.78,6.65 2.87,22.07"
android:fillColor="#00000000"/>
<path
android:pathData="M273.21,202.69l-0.09,0a1.5,1.5 0,0 1,-1.41 -1.59,58.52 58.52,0 0,0 -1.02,-16.2 21.14,21.14 0,0 0,-1.67 -5.05l0,0.01 2.61,-1.48c0.16,0.29 3.99,7.22 3.07,22.9A1.5,1.5 0,0 1,273.21 202.69Z"
android:fillColor="#54565a"/>
<path
android:pathData="M225.3,308.96s-10.88,4.53 -16.78,4.23"
android:fillColor="#00000000"/>
<path
android:pathData="M209.09,314.7q-0.33,0 -0.65,-0.02a1.5,1.5 0,0 1,0.15 -3c5.49,0.28 16.02,-4.07 16.13,-4.12a1.5,1.5 0,0 1,1.15 2.77C225.43,310.53 215.33,314.7 209.09,314.7Z"
android:fillColor="#222"/>
<path
android:pathData="M225.75,324.21a1.5,1.5 0,0 1,-0.46 -0.07L208.36,318.7A1.5,1.5 0,0 1,207.39 316.81,1.5 1.5,0 0,1 209.28,315.84l16.93,5.44a1.5,1.5 0,0 1,-0.46 2.93Z"
android:fillColor="#222"/>
<path
android:pathData="M263.39,358.84a193.36,193.36 0,0 0,29.78 -24.64c13.91,-14.36 17.84,-22.22 17.84,-22.22"
android:fillColor="#00000000"/>
<path
android:pathData="M263.39,360.34a1.5,1.5 0,0 1,-0.82 -2.76h0c0.04,-0.03 4,-2.6 9.6,-6.89a184.72,184.72 0,0 0,19.91 -17.54,153.38 153.38,0 0,0 13.92,-16.22 47.79,47.79 0,0 0,3.66 -5.63,1.5 1.5,0 0,1 2.68,1.34c-0.17,0.33 -4.19,8.23 -18.1,22.59a187.79,187.79 0,0 1,-20.27 17.85c-5.69,4.35 -9.61,6.9 -9.77,7A1.49,1.49 0,0 1,263.39 360.34Z"
android:fillColor="#222"/>
<path
android:pathData="M261.57,369.56a1.5,1.5 0,0 1,-1.26 -0.69A1.5,1.5 0,0 1,260.76 366.8L305.05,338.38a1.5,1.5 0,0 1,2.07 0.45A1.5,1.5 0,0 1,306.67 340.9L262.38,369.32A1.49,1.49 0,0 1,261.57 369.56Z"
android:fillColor="#222"/>
<path
android:pathData="M98.47,324.51A1.5,1.5 0,0 1,97 323.3L80.03,234.78A1.5,1.5 0,0 1,81.22 233.03,1.5 1.5,0 0,1 82.97,234.22L99.94,322.73a1.5,1.5 0,0 1,-1.48 1.78Z"
android:fillColor="#54565a"/>
<path
android:pathData="M233.46,260.2l-7.71,-31.44L93.94,241.91s3.63,24.03 7.71,42.48 6.35,26 6.35,26l41.57,-10.73"
android:fillColor="#00000000"/>
<path
android:pathData="M107.99,311.89a1.5,1.5 0,0 1,-1.44 -1.07c-0.02,-0.08 -2.33,-7.82 -6.38,-26.11s-7.69,-42.33 -7.73,-42.58a1.5,1.5 0,0 1,1.33 -1.72l131.81,-13.15a1.5,1.5 0,0 1,1.61 1.13l7.71,31.44a1.5,1.5 0,0 1,-2.91 0.71l-7.4,-30.18L95.66,243.24c0.88,5.62 4.02,25.32 7.45,40.82 3.06,13.82 5.11,21.57 5.93,24.5l40.15,-10.37a1.5,1.5 0,0 1,0.75 2.9l-41.57,10.73A1.5,1.5 0,0 1,107.99 311.89Z"
android:fillColor="#54565a"/>
<path
android:pathData="M173.45,294.65A1.5,1.5 0,0 1,171.99 293.52,1.5 1.5,0 0,1 173.09,291.7l26.15,-6.5A1.5,1.5 0,0 1,201.05 286.29a1.5,1.5 0,0 1,-1.09 1.82L173.81,294.61A1.5,1.5 0,0 1,173.45 294.65Z"
android:fillColor="#54565a"/>
<path
android:pathData="M170.42,286.65A1.5,1.5 0,0 1,168.96 285.47,1.5 1.5,0 0,1 170.1,283.68L203.05,276.43A1.5,1.5 0,0 1,204.84 277.57a1.5,1.5 0,0 1,-1.14 1.79L170.75,286.61A1.51,1.51 0,0 1,170.42 286.65Z"
android:fillColor="#54565a"/>
<path
android:pathData="M183.27,284.24A1.5,1.5 0,0 1,181.8 283.02L172.58,234.5A1.5,1.5 0,0 1,173.77 232.75,1.5 1.5,0 0,1 175.53,233.94l9.22,48.52a1.5,1.5 0,0 1,-1.48 1.78Z"
android:fillColor="#54565a"/>
<path
android:pathData="M166.79,259.02a1.5,1.5 0,0 1,-1.46 -1.16L160.35,236.24a1.5,1.5 0,0 1,1.12 -1.8,1.5 1.5,0 0,1 1.8,1.12L168.26,257.18a1.5,1.5 0,0 1,-1.46 1.84Z"
android:fillColor="#54565a"/>
<path
android:pathData="M172.69,286.2a1.5,1.5 0,0 1,-1.47 -1.19L168.5,272.31A1.5,1.5 0,0 1,169.66 270.53,1.5 1.5,0 0,1 171.44,271.69l2.72,12.7A1.5,1.5 0,0 1,172.69 286.2Z"
android:fillColor="#54565a"/>
<path
android:pathData="M192.79,281.82a1.5,1.5 0,0 1,-1.48 -1.29L188.59,261.33A1.5,1.5 0,0 1,189.87 259.64,1.5 1.5,0 0,1 191.56,260.91l2.72,19.2A1.5,1.5 0,0 1,192.79 281.82Z"
android:fillColor="#54565a"/>
<path
android:pathData="M189.01,254.18A1.5,1.5 0,0 1,187.53 252.89l-0.6,-4.23a1.5,1.5 0,0 1,1.27 -1.7,1.5 1.5,0 0,1 1.7,1.27l0.6,4.23A1.5,1.5 0,0 1,189.01 254.18Z"
android:fillColor="#54565a"/>
<path
android:pathData="M187.29,242.21A1.5,1.5 0,0 1,185.81 240.94L184.66,233.57A1.5,1.5 0,0 1,185.91 231.86,1.5 1.5,0 0,1 187.63,233.11L188.77,240.47A1.5,1.5 0,0 1,187.29 242.21Z"
android:fillColor="#54565a"/>
<path
android:pathData="M202.17,239.38A1.5,1.5 0,0 1,200.7 238.18L199.49,232.28A1.5,1.5 0,0 1,200.66 230.51,1.5 1.5,0 0,1 202.43,231.68l1.21,5.9A1.5,1.5 0,0 1,202.17 239.38Z"
android:fillColor="#54565a"/>
<path
android:pathData="M218.79,250.11a1.5,1.5 0,0 1,-1.46 -1.17L213.25,230.64A1.5,1.5 0,0 1,214.39 228.85,1.5 1.5,0 0,1 216.18,229.99l4.08,18.29A1.5,1.5 0,0 1,218.79 250.11Z"
android:fillColor="#54565a"/>
<path
android:pathData="M144.73,249.35A1.5,1.5 0,0 1,143.25 248.11L141.29,237.08A1.5,1.5 0,0 1,142.5 235.34,1.5 1.5,0 0,1 144.24,236.55L146.2,247.59a1.5,1.5 0,0 1,-1.48 1.76Z"
android:fillColor="#54565a"/>
<path
android:pathData="M123.72,239.65s4.99,25.24 8.47,41.12 5.9,22.22 5.9,22.22"
android:fillColor="#00000000"/>
<path
android:pathData="M138.08,304.48a1.5,1.5 0,0 1,-1.4 -0.97c-0.1,-0.26 -2.5,-6.64 -5.96,-22.43 -3.44,-15.7 -8.42,-40.89 -8.47,-41.15a1.5,1.5 0,1 1,2.94 -0.58c0.05,0.25 5.03,25.41 8.46,41.08 3.4,15.53 5.81,21.94 5.83,22.01a1.5,1.5 0,0 1,-1.4 2.03Z"
android:fillColor="#54565a"/>
<path
android:pathData="M107.54,240.55s8.47,48.83 14.66,66.21"
android:fillColor="#00000000"/>
<path
android:pathData="M122.2,308.26a1.5,1.5 0,0 1,-1.41 -1c-2.59,-7.28 -5.86,-20.68 -9.71,-39.83 -2.86,-14.23 -4.99,-26.5 -5.01,-26.63a1.5,1.5 0,1 1,2.96 -0.51c0.02,0.12 2.15,12.36 5,26.55 3.77,18.74 7.09,32.37 9.6,39.41a1.5,1.5 0,0 1,-1.41 2Z"
android:fillColor="#54565a"/>
<path
android:pathData="M95.75,255.69a1.5,1.5 0,0 1,-1.49 -1.34A1.5,1.5 0,0 1,95.59 252.7L142.15,247.71A1.5,1.5 0,0 1,143.8 249.04a1.5,1.5 0,0 1,-1.33 1.65L95.91,255.68A1.52,1.52 0,0 1,95.75 255.69Z"
android:fillColor="#54565a"/>
<path
android:pathData="M160.75,249.04A1.5,1.5 0,0 1,159.26 247.71,1.5 1.5,0 0,1 160.58,246.05L183.26,243.48A1.5,1.5 0,0 1,184.91 244.8,1.5 1.5,0 0,1 183.59,246.46L160.92,249.03A1.52,1.52 0,0 1,160.75 249.04Z"
android:fillColor="#54565a"/>
<path
android:pathData="M213.35,243A1.5,1.5 0,0 1,211.87 241.73,1.5 1.5,0 0,1 213.13,240.02L228.09,237.75A1.5,1.5 0,0 1,229.8 239.01,1.5 1.5,0 0,1 228.54,240.72L213.58,242.99A1.51,1.51 0,0 1,213.35 243Z"
android:fillColor="#54565a"/>
<path
android:pathData="M219.4,251.91A1.5,1.5 0,0 1,217.91 250.55,1.5 1.5,0 0,1 219.26,248.92L230.45,247.86A1.5,1.5 0,0 1,232.08 249.21a1.5,1.5 0,0 1,-1.35 1.63L219.54,251.9Q219.47,251.91 219.4,251.91Z"
android:fillColor="#54565a"/>
<path
android:pathData="M168.01,276.53A1.5,1.5 0,0 1,166.53 275.3a1.5,1.5 0,0 1,1.2 -1.75l33.26,-6.2a1.5,1.5 0,0 1,1.75 1.2,1.5 1.5,0 0,1 -1.2,1.75L168.28,276.51A1.51,1.51 0,0 1,168.01 276.53Z"
android:fillColor="#54565a"/>
<path
android:pathData="M175.11,262.03A1.5,1.5 0,0 1,173.63 260.79,1.5 1.5,0 0,1 174.86,259.05L184.53,257.39A1.5,1.5 0,0 1,186.26 258.61,1.5 1.5,0 0,1 185.04,260.35L175.36,262.01A1.51,1.51 0,0 1,175.11 262.03Z"
android:fillColor="#54565a"/>
<path
android:pathData="M98.77,271.7A1.5,1.5 0,0 1,97.29 270.38,1.5 1.5,0 0,1 98.6,268.71L140.16,263.72A1.5,1.5 0,0 1,141.83 265.03a1.5,1.5 0,0 1,-1.31 1.67L98.95,271.69A1.52,1.52 0,0 1,98.77 271.7Z"
android:fillColor="#54565a"/>
<path
android:pathData="M103.31,291.78A1.5,1.5 0,0 1,101.84 290.58,1.5 1.5,0 0,1 103.01,288.81L144.58,280.5A1.5,1.5 0,0 1,146.35 281.68a1.5,1.5 0,0 1,-1.18 1.76L103.6,291.76A1.51,1.51 0,0 1,103.31 291.78Z"
android:fillColor="#54565a"/>
<path
android:pathData="M208.76,63.23s-15.72,5.74 -23.43,-8.77c-5.74,13.91 -24.64,10.58 -24.64,10.58s-5.74,27.51 21.77,44.44C212.54,89.54 208.76,63.23 208.76,63.23Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M254.98,90.81s7.69,2.83 13.62,-4.99c2.56,5.8 10.66,5.8 10.66,5.8s3.1,14.03 -12.68,24.01C251.61,105.65 254.98,90.81 254.98,90.81Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M177.83,146.72s8.92,27.51 -20.41,48.52c-26,-18.29 -24.64,-37.49 -24.49,-45.2 11.34,5.29 23.13,-9.07 23.13,-9.07S165.44,153.22 177.83,146.72Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M56.27,32.33A1.5,1.5 0,0 1,54.81 31.2,1.5 1.5,0 0,1 55.9,29.38L62.81,27.65A1.5,1.5 0,0 1,64.63 28.74,1.5 1.5,0 0,1 63.54,30.56L56.63,32.29A1.5,1.5 0,0 1,56.27 32.33Z"
android:fillColor="#54565a"/>
<path
android:pathData="M58.32,40.22A1.5,1.5 0,0 1,56.89 39.17,1.5 1.5,0 0,1 57.87,37.29L64.35,35.24A1.5,1.5 0,0 1,66.23 36.22,1.5 1.5,0 0,1 65.25,38.1L58.77,40.15A1.5,1.5 0,0 1,58.32 40.22Z"
android:fillColor="#54565a"/>
<path
android:pathData="M60.8,48.54a1.5,1.5 0,0 1,-1.37 -0.89A1.5,1.5 0,0 1,60.19 45.66L66.78,42.75A1.5,1.5 0,0 1,68.76 43.51,1.5 1.5,0 0,1 68,45.49L61.41,48.41A1.5,1.5 0,0 1,60.8 48.54Z"
android:fillColor="#54565a"/>
<path
android:pathData="M63.18,55.34a1.5,1.5 0,0 1,-1.34 -0.83A1.5,1.5 0,0 1,62.51 52.5l6.48,-3.24a1.5,1.5 0,0 1,2.01 0.67,1.5 1.5,0 0,1 -0.67,2.01L63.85,55.18A1.49,1.49 0,0 1,63.18 55.34Z"
android:fillColor="#54565a"/>
<path
android:pathData="M66.31,62.79A1.5,1.5 0,0 1,64.95 61.92,1.5 1.5,0 0,1 65.69,59.93l7.56,-3.46a1.5,1.5 0,0 1,1.99 0.74,1.5 1.5,0 0,1 -0.74,1.99L66.93,62.66A1.5,1.5 0,0 1,66.31 62.79Z"
android:fillColor="#54565a"/>
<path
android:pathData="M69.44,69.27A1.5,1.5 0,0 1,68.17 68.56,1.5 1.5,0 0,1 68.65,66.5L75.78,62.07A1.5,1.5 0,0 1,77.84 62.55,1.5 1.5,0 0,1 77.36,64.62L70.23,69.04A1.49,1.49 0,0 1,69.44 69.27Z"
android:fillColor="#54565a"/>
<path
android:pathData="M74.19,76.29a1.5,1.5 0,0 1,-1.21 -0.62,1.5 1.5,0 0,1 0.33,-2.1L80.44,68.4a1.5,1.5 0,0 1,2.1 0.33,1.5 1.5,0 0,1 -0.33,2.1L75.08,76.01A1.49,1.49 0,0 1,74.19 76.29Z"
android:fillColor="#54565a"/>
<path
android:pathData="M78.95,82.56a1.5,1.5 0,0 1,-1.16 -0.55,1.5 1.5,0 0,1 0.22,-2.11l7.02,-5.72a1.5,1.5 0,0 1,2.11 0.22,1.5 1.5,0 0,1 -0.22,2.11L79.9,82.22A1.49,1.49 0,0 1,78.95 82.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M84.02,87.42a1.5,1.5 0,0 1,-1.14 -0.53A1.5,1.5 0,0 1,83.05 84.77L89.42,79.37A1.5,1.5 0,0 1,91.54 79.55a1.5,1.5 0,0 1,-0.17 2.11L84.99,87.06A1.49,1.49 0,0 1,84.02 87.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M90.5,92.49a1.5,1.5 0,0 1,-1.02 -0.4A1.5,1.5 0,0 1,89.4 89.97L94.69,84.25A1.5,1.5 0,0 1,96.81 84.17a1.5,1.5 0,0 1,0.08 2.12L91.6,92.01A1.5,1.5 0,0 1,90.5 92.49Z"
android:fillColor="#54565a"/>
<path
android:pathData="M96.88,97.29a1.49,1.49 0,0 1,-0.88 -0.29,1.5 1.5,0 0,1 -0.32,-2.1L100.09,88.86a1.5,1.5 0,0 1,2.1 -0.32,1.5 1.5,0 0,1 0.32,2.1L98.08,96.68A1.5,1.5 0,0 1,96.88 97.29Z"
android:fillColor="#54565a"/>
<path
android:pathData="M103.57,100.85a1.49,1.49 0,0 1,-0.82 -0.25A1.5,1.5 0,0 1,102.32 98.54L105.99,92.91a1.5,1.5 0,0 1,2.08 -0.44A1.5,1.5 0,0 1,108.5 94.56L104.83,100.17A1.5,1.5 0,0 1,103.57 100.85Z"
android:fillColor="#54565a"/>
<path
android:pathData="M292.9,70.03a1.5,1.5 0,0 1,-0.5 -0.09L286.57,67.89A1.5,1.5 0,0 1,285.65 65.98,1.5 1.5,0 0,1 287.57,65.06L293.4,67.11a1.5,1.5 0,0 1,-0.5 2.91Z"
android:fillColor="#54565a"/>
<path
android:pathData="M296.46,64.09a1.5,1.5 0,0 1,-0.58 -0.12L289.73,61.38a1.5,1.5 0,0 1,-0.8 -1.97,1.5 1.5,0 0,1 1.97,-0.8L297.05,61.21a1.5,1.5 0,0 1,-0.58 2.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M299.7,58.36a1.5,1.5 0,0 1,-0.54 -0.1L293.55,56.1A1.5,1.5 0,0 1,292.69 54.17,1.5 1.5,0 0,1 294.63,53.3L300.24,55.46a1.5,1.5 0,0 1,-0.54 2.9Z"
android:fillColor="#54565a"/>
<path
android:pathData="M303.38,49.83a1.5,1.5 0,0 1,-0.5 -0.09L296.83,47.58A1.5,1.5 0,0 1,295.92 45.67,1.5 1.5,0 0,1 297.83,44.76L303.88,46.92a1.5,1.5 0,0 1,-0.5 2.91Z"
android:fillColor="#54565a"/>
<path
android:pathData="M306.4,41.95a1.5,1.5 0,0 1,-0.4 -0.05L300.17,40.27A1.5,1.5 0,0 1,299.13 38.43,1.5 1.5,0 0,1 300.97,37.38L306.8,39a1.5,1.5 0,0 1,-0.4 2.95Z"
android:fillColor="#54565a"/>
<path
android:pathData="M308.89,34.06A1.51,1.51 0,0 1,308.61 34.04L302.24,32.85a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L309.16,31.09a1.5,1.5 0,0 1,-0.27 2.97Z"
android:fillColor="#54565a"/>
<path
android:pathData="M310.4,28.01a1.51,1.51 0,0 1,-0.18 -0.01L303.95,27.25A1.5,1.5 0,0 1,302.64 25.58,1.5 1.5,0 0,1 304.31,24.27l6.26,0.76a1.5,1.5 0,0 1,-0.18 2.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M301.97,74.67a1.49,1.49 0,0 1,-0.89 -0.3L296.86,71.24A1.5,1.5 0,0 1,296.56 69.14,1.5 1.5,0 0,1 298.66,68.84L302.87,71.97a1.5,1.5 0,0 1,-0.9 2.7Z"
android:fillColor="#54565a"/>
<path
android:pathData="M305.97,67.76a1.49,1.49 0,0 1,-0.71 -0.18L300.62,65.1a1.5,1.5 0,0 1,-0.62 -2.03,1.5 1.5,0 0,1 2.03,-0.62L306.68,64.94a1.5,1.5 0,0 1,-0.71 2.82Z"
android:fillColor="#54565a"/>
<path
android:pathData="M309.75,61.82a1.49,1.49 0,0 1,-0.78 -0.22L304,58.58a1.5,1.5 0,0 1,-0.5 -2.06,1.5 1.5,0 0,1 2.06,-0.5L310.53,59.04a1.5,1.5 0,0 1,-0.78 2.78Z"
android:fillColor="#54565a"/>
<path
android:pathData="M313.31,54.04a1.49,1.49 0,0 1,-0.7 -0.18L307.75,51.28A1.5,1.5 0,0 1,307.13 49.25,1.5 1.5,0 0,1 309.16,48.63l4.86,2.59a1.5,1.5 0,0 1,-0.71 2.82Z"
android:fillColor="#54565a"/>
<path
android:pathData="M316.66,45.94a1.5,1.5 0,0 1,-0.48 -0.08L311.1,44.14a1.5,1.5 0,0 1,-0.94 -1.9,1.5 1.5,0 0,1 1.9,-0.94L317.15,43.02a1.5,1.5 0,0 1,-0.48 2.92Z"
android:fillColor="#54565a"/>
<path
android:pathData="M319.36,37.42a1.5,1.5 0,0 1,-0.38 -0.05l-4.97,-1.3A1.5,1.5 0,0 1,312.94 34.24,1.5 1.5,0 0,1 314.77,33.17l4.97,1.3A1.5,1.5 0,0 1,319.36 37.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M321.63,28.77h-0.06L316.06,28.56A1.5,1.5 0,0 1,314.62 27,1.5 1.5,0 0,1 316.18,25.56l5.51,0.22a1.5,1.5 0,0 1,-0.06 3Z"
android:fillColor="#54565a"/>
<path
android:pathData="M244.34,250.14s-0.91,-35.98 0.15,-48.52 6.95,-23.28 18.14,-24.94 14.81,11.64 15.57,22.67 0.6,23.73 0.6,23.73 3.78,-3.78 7.41,-3.63 3.63,4.38 0.45,7.26c7.26,-1.97 9.07,3.63 0.91,9.07 9.98,-0.6 7.86,5.9 0.76,9.37s-20.25,4.38 -30.84,-5.29 -13.15,-19.8 -13.15,-19.8"
android:fillColor="#00000000"/>
<path
android:pathData="M244.34,251.64a1.5,1.5 0,0 1,-1.5 -1.46c-0.04,-1.47 -0.9,-36.2 0.16,-48.69 0.57,-6.78 2.48,-12.75 5.52,-17.26a21.67,21.67 0,0 1,5.87 -5.96,19.4 19.4,0 0,1 8.02,-3.07 11.5,11.5 0,0 1,9.26 2.35c2.52,2.03 4.5,5.27 5.9,9.63a51.67,51.67 0,0 1,2.13 12.07c0.53,7.68 0.61,16.23 0.62,20.72l0,0a10.21,10.21 0,0 1,5.95 -2.01,4.12 4.12,0 0,1 3.95,2.67 5.63,5.63 0,0 1,-0.33 4.2,7.03 7.03,0 0,1 1.1,0.15 4.28,4.28 0,0 1,3.1 2.33,5.22 5.22,0 0,1 -0.67,4.87 12.31,12.31 0,0 1,-1.86 2.31,8.31 8.31,0 0,1 1.34,0.38 4.22,4.22 0,0 1,2.83 2.85c0.39,1.5 -0.16,3.24 -1.55,4.9a15.87,15.87 0,0 1,-5.2 3.88,28.46 28.46,0 0,1 -14.92,2.43 29.89,29.89 0,0 1,-8.88 -2.3,31.22 31.22,0 0,1 -8.7,-5.67 53.38,53.38 0,0 1,-6.71 -7.38,49.06 49.06,0 0,1 -4.15,-6.55l-0.13,-0.24c0.06,11.97 0.34,23.11 0.35,23.31a1.5,1.5 0,0 1,-1.46 1.54ZM245.49,219.09a1.49,1.49 0,0 1,0.31 0.6,31.32 31.32,0 0,0 2.53,6.04 48.7,48.7 0,0 0,10.18 13.02c9.46,8.65 21.75,8.68 29.17,5.05a13.07,13.07 0,0 0,4.22 -3.11c0.86,-1.03 1.05,-1.82 0.95,-2.21s-0.6,-0.66 -1,-0.81a10.23,10.23 0,0 0,-4.18 -0.39,1.5 1.5,0 0,1 -0.92,-2.74 13.29,13.29 0,0 0,4.13 -3.91,2.53 2.53,0 0,0 0.5,-2.08c-0.31,-0.69 -1.89,-1.04 -4.31,-0.38a1.5,1.5 0,0 1,-1.4 -2.56c1.55,-1.41 2.06,-3.09 1.75,-3.95 -0.06,-0.18 -0.23,-0.65 -1.25,-0.69 -2.42,-0.1 -5.36,2.27 -6.28,3.19a1.5,1.5 0,0 1,-2.56 -1.08c0,-0.13 0.14,-12.77 -0.6,-23.61 -0.38,-5.54 -1.78,-15.44 -6.91,-19.57a8.5,8.5 0,0 0,-6.94 -1.72c-9.43,1.4 -15.74,10.22 -16.86,23.58C245.65,205.74 245.51,212.19 245.49,219.09Z"
android:fillColor="#222"/>
<path
android:pathData="M218.95,302.72S203.98,318.03 190.04,326.19s-28.91,2.38 -36.73,-17.69 -13.6,-49.32 -13.6,-49.32 -6.15,1.18 -6.97,-1.95 2.14,-4.95 5.6,-5.77 6.76,-1.65 8.24,2.97 1.81,6.26 1.81,6.26"
android:fillColor="#00000000"/>
<path
android:pathData="M177.77,331.27a21.56,21.56 0,0 1,-7.11 -1.2,25.83 25.83,0 0,1 -10.64,-7.32 44.29,44.29 0,0 1,-8.11 -13.7c-4.07,-10.44 -7.57,-23.36 -9.79,-32.37 -1.8,-7.28 -3.07,-13.25 -3.6,-15.83a14.86,14.86 0,0 1,-2.07 0.03,7.87 7.87,0 0,1 -2.91,-0.67 3.97,3.97 0,0 1,-2.24 -2.6,4.95 4.95,0 0,1 0.5,-3.89c1.29,-2.16 4.09,-3.21 6.21,-3.72l0.08,-0.02a13.28,13.28 0,0 1,5.45 -0.54c2.15,0.41 3.66,1.94 4.49,4.53 1.49,4.64 1.84,6.36 1.86,6.43a1.5,1.5 0,0 1,-2.94 0.59c0,-0.01 -0.35,-1.67 -1.77,-6.1 -0.63,-1.96 -1.51,-2.37 -2.2,-2.5a11.2,11.2 0,0 0,-4.18 0.52l-0.08,0.02c-2.17,0.52 -3.74,1.37 -4.33,2.34a1.95,1.95 0,0 0,-0.17 1.59c0.21,0.79 1.61,0.99 2.43,1.03a13.23,13.23 0,0 0,2.81 -0.17,1.5 1.5,0 0,1 1.75,1.18c0.01,0.07 1.47,7.4 3.86,17.08a278.48,278.48 0,0 0,9.67 31.98c3.95,10.12 9.81,16.79 16.94,19.27 5.6,1.95 11.7,1.14 17.63,-2.33 7.1,-4.16 14.49,-10.25 19.45,-14.62 5.38,-4.76 9.11,-8.56 9.15,-8.6a1.5,1.5 0,1 1,2.14 2.1c-0.04,0.04 -3.84,3.92 -9.3,8.75 -5.05,4.47 -12.61,10.69 -19.92,14.97a26.91,26.91 0,0 1,-10.14 3.59A22.5,22.5 0,0 1,177.77 331.27Z"
android:fillColor="#222"/>
<path
android:pathData="M152.02,246.76s1.81,-2.97 5.93,-1.32 4.29,5.77 6.43,16.98c5.44,-0.5 -0.99,-5.6 4.95,-6.76s9.4,13.52 -1.98,17.47c2.47,12.36 5.93,28.19 14.67,27.86s18.63,-13.52 25.06,-30c16.48,-6.92 33.46,-13.68 33.46,-13.68"
android:fillColor="#00000000"/>
<path
android:pathData="M181.75,302.5a8.83,8.83 0,0 1,-6.43 -2.93,22.43 22.43,0 0,1 -4.37,-7.17c-2.28,-5.48 -3.75,-12.38 -5.07,-18.97a1.5,1.5 0,0 1,0.98 -1.71,9.05 9.05,0 0,0 6.17,-11.13 6.02,6.02 0,0 0,-1.55 -2.83,2.09 2.09,0 0,0 -1.87,-0.63c-0.8,0.16 -1.33,0.4 -1.46,0.67a3.39,3.39 0,0 0,0.01 1.41,4.16 4.16,0 0,1 -0.57,3.35 4.22,4.22 0,0 1,-3.08 1.35,1.5 1.5,0 0,1 -1.61,-1.21c-0.29,-1.5 -0.54,-2.9 -0.77,-4.14 -1.51,-8.23 -2.06,-10.66 -4.74,-11.73a3.75,3.75 0,0 0,-3.13 -0.09,2.73 2.73,0 0,0 -0.98,0.82l0.01,-0.02 -2.56,-1.56a5.59,5.59 0,0 1,1.98 -1.81,6.53 6.53,0 0,1 5.8,-0.12 7.62,7.62 0,0 1,4.45 4.76,56.12 56.12,0 0,1 2.13,9.22l0,0.02a3.93,3.93 0,0 1,0.33 -1.48c0.56,-1.23 1.74,-2.01 3.61,-2.37a5.06,5.06 0,0 1,4.48 1.38,8.9 8.9,0 0,1 2.4,4.24 12.45,12.45 0,0 1,-0.65 8.22,11.95 11.95,0 0,1 -6.21,6.04c1.23,6.07 2.62,12.28 4.65,17.18a19.87,19.87 0,0 0,3.74 6.22,5.83 5.83,0 0,0 4.5,2.02c3.71,-0.14 7.96,-3.04 12.28,-8.39a80.05,80.05 0,0 0,11.43 -20.66,1.5 1.5,0 0,1 0.82,-0.84c16.31,-6.85 33.32,-13.63 33.49,-13.69a1.5,1.5 0,0 1,1.11 2.79c-0.17,0.07 -16.75,6.67 -32.85,13.43a97.58,97.58 0,0 1,-5.25 11.18,66.89 66.89,0 0,1 -6.41,9.68 33.91,33.91 0,0 1,-7.02 6.73,14.37 14.37,0 0,1 -7.49,2.77C181.96,302.49 181.85,302.5 181.75,302.5Z"
android:fillColor="#222"/>
<path
android:pathData="M150.7,301.97a48.92,48.92 0,0 1,20.44 -11.54"
android:fillColor="#00000000"/>
<path
android:pathData="M150.7,303.47a1.5,1.5 0,0 1,-1.08 -2.54,39.83 39.83,0 0,1 5.63,-4.6 52.61,52.61 0,0 1,15.49 -7.34,1.5 1.5,0 1,1 0.81,2.89 49.58,49.58 0,0 0,-14.52 6.87,37.89 37.89,0 0,0 -5.24,4.27A1.5,1.5 0,0 1,150.7 303.47Z"
android:fillColor="#222"/>
<path
android:pathData="M244.73,140.06l0.86,1.45c2.86,4.8 6.84,5.8 9.68,5.8a11.43,11.43 0,0 0,3.48 -0.51l1.1,-0.39 0.22,1.15a27.73,27.73 0,0 1,-0.52 10.5,29.95 29.95,0 0,1 -4.12,9.67 33.87,33.87 0,0 1,-9.73 9.61l-0.42,0.28 -0.48,-0.18a23.65,23.65 0,0 1,-10.39 -7.53,30.77 30.77,0 0,1 -5.14,-9.9 41.24,41.24 0,0 1,-1.94 -12.29l0.04,-1.52 1.38,0.63A13.37,13.37 0,0 0,233.71 147.8c4.28,0 7.7,-2.12 10.16,-6.29ZM255.27,149.31a12.74,12.74 0,0 1,-5.71 -1.3,13.24 13.24,0 0,1 -4.82,-4.16A13.08,13.08 0,0 1,233.71 149.8a15.72,15.72 0,0 1,-4.36 -0.63,41.06 41.06,0 0,0 1.84,10.29c2.55,7.95 7.2,13.3 13.82,15.93 6.68,-4.57 10.91,-10.55 12.59,-17.78a27.71,27.71 0,0 0,0.64 -8.61A14.5,14.5 0,0 1,255.27 149.31Z"
android:fillColor="#f7eed0"/>
</group>
</vector>

View File

@ -1,395 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M43.98,197.55a170.29,169.84 0,1 0,340.59 0a170.29,169.84 0,1 0,-340.59 0z"
android:strokeAlpha="0.5"
android:fillColor="#9bb9d4"
android:fillAlpha="0.5"/>
<path
android:pathData="M149.63,175.28s-19.06,3.61 -30.72,17.03c3.89,20.91 14.16,29.8 22.49,30.07 15.55,-10.83 46.36,-30.54 46.36,-30.54l32.76,17.49 18.18,-11.66a174.23,174.23 0,0 1,-5.14 -28.04c-1.11,-13.6 1.76,-40.81 1.76,-40.81a75.41,75.41 0,0 1,-14.53 6.66c-7.77,2.5 -24.89,7.4 -24.89,7.4s-33.13,20.64 -37.01,23.69A112.79,112.79 0,0 0,149.63 175.28Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M27,108.52 L166.24,76.85s-4.04,-19.99 -29.67,-11.26c-10.7,-37.92 -40.53,-24.8 -44.52,-19.43 -13.99,-21.53 -60.17,6.06 -44.79,42.03C34.56,78.07 20.85,100.63 27,108.52Z"
android:fillColor="#fff"/>
<path
android:pathData="M27.01,108.52s0.88,-4.73 16.66,-7.92c-0.7,-3.45 7.94,-6.51 17.88,-7.76 0.25,-3.45 9.5,-7.2 34.53,-12.26s27.69,-0.31 27.19,0.93c19.84,-4.57 22.17,-4.29 22.53,-3.42 12.66,-3.69 18.56,-4.58 20.44,-1.24C157.45,78.76 27.01,108.52 27.01,108.52Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M26.71,168.38l92.8,-26.47s-13.79,-23.77 -30.07,-6.5c-13.38,-26.24 -57.33,-11.32 -56.16,19.3C21.24,155.95 26.71,168.38 26.71,168.38Z"
android:fillColor="#fff"/>
<path
android:pathData="M26.71,168.38s2.8,-4.3 12.9,-5.77c0.13,-3.2 15.33,-10.25 26.62,-12.62s15.61,-0.82 15.61,-0.82a39.53,39.53 0,0 1,19.93 -6.04c3.95,-2.38 14.62,-4.47 17.74,-1.21C104.57,146.01 26.71,168.38 26.71,168.38Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M135,330.56s6.07,-2.67 3.11,-12.69 -15.29,-14.76 -22.35,-8.29c-0.37,-14.94 -10.54,-15.53 -12.1,-14.96 -4.98,-7.08 -27.46,-2.53 -26.04,12.9 -13.16,-3.9 -15.29,16.72 -8.31,20.85 -12.06,-0.43 -13.79,9.99 -10.24,13.19 -9.22,0.82 -12.7,8.63 -6.95,12.07C68.67,347.31 135,330.56 135,330.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M237.73,176.99s17.95,2.78 23.32,5.74c7.77,14.44 22.95,52.93 27.02,81.25 -3.89,8.51 -21.47,9.44 -21.47,9.44s-8.7,-12.95 -13.14,-23.87a69.79,69.79 0,0 1,-4.9 -20.64l6.66,-1.39 -8.24,-4.44s3.79,0.19 8.93,-3.61 9.95,-10.83 5.32,-13.97 -10.04,-1.3 -10.04,-1.3Z"
android:strokeAlpha="0.68"
android:fillColor="#ff8772"
android:fillAlpha="0.68"/>
<path
android:pathData="M220.52,209.23l6.66,-3.89s10.18,3.33 18.14,0.74 12.77,-2.96 15.92,-0.56 1.94,8.7 -5.32,13.97c-13.74,1.02 -26.33,-5.28 -26.33,-5.28Z"
android:fillColor="#fff"/>
<path
android:pathData="M314.79,170.72l76.18,11.85s-0.19,-15.62 -16.96,-11.07C375.04,140.97 324.99,136.03 314.79,170.72Z"
android:fillColor="#fff"/>
<path
android:pathData="M314.79,170.72s1.71,-2.98 8.97,-1.76c3.1,-2.91 12.07,-6.62 19.23,-4.71s11.75,4.98 14.73,8.51c7.9,-2.19 15.07,1.54 15.21,3.39 9.13,-0.04 16.31,1.49 18.04,6.43C385.42,181.74 314.79,170.72 314.79,170.72Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M196.75,323.08c91.63,-4.4 141.23,9.16 231.25,45.82l-124,59.1L0,408.79L0,385.61S50.67,330.09 196.75,323.08Z"
android:fillColor="#348e62"/>
<path
android:pathData="M270.21,317.55l4.16,29.15L119.75,358.64l-2.78,-7.5 6.11,-3.33 -0.56,-6.39 5,-1.11 -1.94,-5.55 7.22,-15.27L142.51,316.44s-9.72,-21.38 -12.77,-34.7 -0.83,-28.32 -0.83,-28.32 -5.55,-1.39 -6.11,-3.89c-12.22,2.22 -20.82,3.33 -20.82,3.33s27.76,-22.21 39.42,-30.81 46.36,-30.54 46.36,-30.54 53.58,28.04 67.46,35.81l-6.66,1.39a10.06,10.06 0,0 1,-3.05 6.11c3.05,10.83 3.61,37.76 -2.22,64.4 9.72,-1.39 14.44,-2.22 14.44,-2.22l1.94,10.83 3.89,-0.28 1.94,9.16Z"
android:fillColor="#fff"/>
<path
android:pathData="M134.46,253.17l13.7,15.18 -7.03,-19.43Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M159.63,249.02s7.59,10.18 10.73,28.13a383.86,383.86 0,0 1,4.26 39.24L179.25,306.58l-7.96,-49.97 -6.11,-11.66Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M215.52,241.26s-11.1,32.2 -10.55,48.86 2.41,25.54 2.41,25.54L201.27,296.41l3.33,-42.75 5,-16.1Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M257.72,296.96l-2.04,26.74 1.2,5.32 4.3,3.61 1.25,5.55 6.11,3.61 1.94,4.86h3.89l-4.16,-29.15 -4.72,-0.83 -1.94,-9.16 -3.89,0.28Z"
android:fillColor="#222"/>
<path
android:pathData="M205.16,316.76 L177.21,318.8s-0.19,-3.33 -2.59,-2.41c2.59,-13.88 -4.44,-57.56 -11.29,-69.77a11.74,11.74 0,0 0,2.22 -4.07l41.64,-7.59s0.56,2.41 4.07,4.44c-6.48,11.47 -10.55,49.97 -5,73.66C204.97,313.99 205.16,316.76 205.16,316.76Z"
android:fillColor="#222"/>
<path
android:pathData="M220.52,115.62s-4.07,12.77 3.89,18.51c-10.92,5.92 -28.5,8.88 -28.5,8.88l-3.01,2.87S175.92,139.12 169.07,127.09c-1.85,2.78 -8.33,37.57 -8.33,37.57l-11.1,10.73S133.16,177.24 118.92,192.42c-2.96,-27.76 7.4,-48.67 15.55,-63.67S151.67,105.62 151.67,105.62s0.93,-14.62 11.66,-18.69 15.55,3.52 16.66,4.26 11.66,15.18 15.36,19.06 14.62,7.22 17.4,7.68C218.67,116.36 220.52,115.62 220.52,115.62Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M237.73,236.92l-10.18,15.73 -0.56,-8.51 4.07,-9.62 2.04,0.74Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M141.49,246.51a20.39,20.39 0,0 1,-2.41 3.33c5,6.11 9.07,18.51 9.07,18.51l2.96,-18.32 -4.44,-4.44Z"
android:fillColor="#222"/>
<path
android:pathData="M230.51,231.92l-2.96,0.19a8.88,8.88 0,0 1,-2.59 7.03c2.41,4.44 2.59,13.51 2.59,13.51s0.19,-13.7 5.55,-17.4A19.82,19.82 0,0 1,230.51 231.92Z"
android:fillColor="#222"/>
<path
android:pathData="M249.53,223.74s3.89,0.56 6.66,-0.97c3.89,9.99 2.22,29.29 0.69,34.15 -4.03,-9.72 -8.05,-20.13 -8.33,-28.04 4.86,-1.11 5.55,-1.25 5.55,-1.25Z"
android:fillColor="#222"/>
<path
android:pathData="M245.36,222.55s6.8,0.83 10.55,-3.05 2.22,-9.16 -9.3,-9.85 -17.91,2.78 -18.6,3.33C235.51,217.13 245.36,222.55 245.36,222.55Z"
android:fillColor="#222"/>
<path
android:pathData="M193.4,107.7s-11.2,-14.9 -13.42,-16.29c4.72,-3.33 4.16,-9.72 4.16,-9.72s-7.77,-8.88 -4.44,-19.71 14.71,-23.6 18.04,-26.37 8.61,-7.77 10.27,-11.66 9.72,-12.22 7.5,0.28c11.38,-10.27 17.77,-11.66 12.77,6.11 8.61,-7.22 9.72,-3.89 6.11,3.61s-10.83,10.83 -16.1,11.66c4.44,6.66 3.61,14.71 3.61,14.71s5,-4.72 3.33,1.67 -4.16,6.66 -4.16,6.66 3.89,9.99 0.28,19.16C208.86,90.58 200.44,97.33 193.4,107.7Z"
android:fillColor="#decabe"/>
<path
android:pathData="M227.18,205.39l11.52,-7.77s-3.61,-12.22 -4.03,-20.54h3.05A122.39,122.39 0,0 1,251.19 204.27C243,207.89 230.93,207.89 227.18,205.39Z"
android:fillColor="#222"/>
<path
android:pathData="M209.41,202.88l-8.19,-16.38 -7.63,7.08Z"
android:fillColor="#222"/>
<path
android:pathData="M156.53,169s29.01,-18.46 36.37,-23.18c-10.97,-4.16 -20.96,-13.88 -24.99,-21.1 1.11,4.3 -2.5,3.75 -2.5,3.75s1.67,6.25 -4.72,8.19c-3.89,9.72 -2.78,11.1 -1.53,14.85S160.69,165.53 156.53,169Z"
android:fillColor="#222"/>
<path
android:pathData="M212.46,55.6c0.16,3.35 3.05,4.63 2.87,1.2S212.28,51.71 212.46,55.6Z"
android:fillColor="#222"/>
<path
android:pathData="M196.64,103.69s9.16,3.98 15.18,7.03 14.9,2.04 14.9,2.04l-13.97,5.18a37.69,37.69 0,0 1,-11.75 -3.98c-5.64,-3.15 -7.59,-6.48 -7.59,-6.48Z"
android:fillColor="#222"/>
<path
android:pathData="M235.32,128.9a118.74,118.74 0,0 0,-2.22 24.89c12.49,-1.11 29.8,-3.61 38.59,-8.33 -0.19,-6.57 -6.11,-16.1 -8.61,-17.86 0.19,9.35 -1.11,16.75 -4.44,17.58s-2.87,-4.07 -2.41,-7.77 0.74,-7.22 0.74,-7.22 0,0.37 -2.22,-0.37 -6.48,-7.87 -6.48,-7.87Z"
android:fillColor="#222"/>
<path
android:pathData="M310.04,10.35s-3.75,-1.39 -6.39,1.39S298.94,24.37 299.21,29.64s2.5,4.58 4.72,4.58c7.08,-5.97 8.05,-12.22 8.33,-13.88S311.71,12.71 310.04,10.35Z"
android:fillColor="#ffb34b"/>
<path
android:pathData="M220.52,115.61s-5,12.95 3.89,18.51c14.81,-7.22 23.87,-12.12 23.87,-12.12s3.52,8.05 8.14,8.61c-0.93,9.81 -1.3,14.99 2.22,14.62 3.73,-0.39 4.63,-8.7 4.07,-15.73s-2.22,-18.69 -13.69,-25.17C242.54,105.43 227.55,114.13 220.52,115.61Z"
android:fillColor="#decabe"/>
<path
android:pathData="M261.97,120.64l0.74,8.88a25.15,25.15 0,0 1,8.98 16.01c16.93,-6.39 27.3,-12.68 31.56,-16.19 9.62,3.33 21.28,-0.19 28.32,-5.74s8.7,-12.77 6.85,-20.54 -6.29,-9.99 -12.95,-9.25a12.15,12.15 0,0 0,-9.25 5.55s0.19,-12.77 -8.51,-12.95 -7.03,4.44 -1.3,9.44c2.78,3.89 1.48,11.1 -4.44,14.62S274.93,121.01 261.97,120.64Z"
android:fillColor="#decabe"/>
<path
android:pathData="M280.48,141.86l-7.77,-21.84 -10.73,0.56 1.67,10.92s6.29,4.26 8.05,13.97C278.26,143.34 280.48,141.86 280.48,141.86Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M288.07,263.87s-4.26,7.59 -21.47,9.44c4.44,13.51 27.39,12.95 39.42,9.25s17.21,-10.55 12.95,-14.99 -11.29,-4.07 -17.4,-2.78S288.07,263.87 288.07,263.87Z"
android:fillColor="#fff"/>
<path
android:pathData="M129.09,248.75l7.4,3.15 5,-5.37Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M156.11,244.5l5.74,3.33 5.37,-5.74Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M173.88,213.49l14.44,-8.33 12.59,4.44 2.22,0.19 -14.62,-8.51 -19.8,12.77Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M218.48,233.97l-5.37,6.48 -5.92,-5.37Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M230.51,231.94l4.44,4.07 6.66,-5.92Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M174.62,319.66l1.11,3.89s2.59,-6.48 -0.37,-9.25A33.95,33.95 0,0 0,174.62 319.66Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M205.16,312.63l3.33,5 1.48,4.63s-3.52,-1.11 -4.26,-3.33A10.42,10.42 0,0 1,205.16 312.63Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M225.14,315.04l1.85,3.7s-2.96,-0.93 -4.26,-2.78 -0.74,-5 -0.74,-5Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M228.11,315.61s-3.33,-13.51 -2.59,-21.28c-2.41,10.73 -3.52,16.66 -3.52,16.66A6.97,6.97 0,0 0,228.11 315.61Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M155.93,311.52l1.67,12.03 5.18,-2.41Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M159.26,326.5l0.74,-3.89 2.78,-1.48A7.65,7.65 0,0 1,159.26 326.5Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M193.5,109.38a1.5,1.5 0,0 1,-1.3 -2.24,41.75 41.75,0 0,1 6.85,-8.36 52.6,52.6 0,0 1,21.18 -12.51c3.53,-7.03 -0.68,-17.31 -0.73,-17.41a1.49,1.49 0,0 1,0.76 -1.94,7.54 7.54,0 0,0 3.96,-5q0.17,-0.97 0.23,-1.56c-0.23,0.11 -0.52,0.27 -0.89,0.48 -0.97,0.57 -2.28,1.47 -4.01,2.73a1.5,1.5 0,1 1,-1.77 -2.42,44.74 44.74,0 0,1 4.97,-3.29c1.16,-0.62 2.5,-1.15 3.64,-0.44a2.65,2.65 0,0 1,1.1 2.47,16.61 16.61,0 0,1 -0.31,2.56 10.05,10.05 0,0 1,-4.44 6.51,36.81 36.81,0 0,1 1.48,5.8 27.06,27.06 0,0 1,0.35 6.62,16.46 16.46,0 0,1 -2.01,6.91 1.5,1.5 0,0 1,-0.88 0.69,49.94 49.94,0 0,0 -20.55,11.97 39.28,39.28 0,0 0,-6.33 7.69A1.5,1.5 0,0 1,193.5 109.38Z"
android:fillColor="#222"/>
<path
android:pathData="M180.78,92.5l-1.59,-2.54 -0.01,0.01a7.42,7.42 0,0 0,1.85 -1.98,10.77 10.77,0 0,0 1.72,-5.97 19.25,19.25 0,0 1,-4.25 -7.51,22.06 22.06,0 0,1 -0.65,-8.93c0.68,-5.67 3.3,-11.94 7.56,-18.14a63.93,63.93 0,0 1,10.65 -11.82,50.94 50.94,0 0,0 10.23,-11.8 27.42,27.42 0,0 1,4.69 -6.03c1.61,-1.42 3.11,-1.9 4.43,-1.42 0.86,0.31 1.98,1.18 2.4,3.52q0.07,0.4 0.12,0.85a30.67,30.67 0,0 1,4.26 -3.93c2.29,-1.67 4.26,-2.24 5.86,-1.7a3.96,3.96 0,0 1,2.35 2.29,9.79 9.79,0 0,1 0.69,3.66 33.35,33.35 0,0 1,-0.21 4.99c2.34,-1.64 4.05,-2.08 5.35,-1.4 2.08,1.1 1.5,4.21 1.31,5.23a18.91,18.91 0,0 1,-7.37 11.45,34.51 34.51,0 0,1 -9.82,5.22 23.21,23.21 0,0 1,2.71 9.57,18.58 18.58,0 0,1 -0.34,5.12l-2.91,-0.73a16.11,16.11 0,0 0,0.25 -4.34,20.02 20.02,0 0,0 -3.2,-9.66 1.5,1.5 0,0 1,0.83 -2.25c4.49,-1.35 15.14,-5.5 16.91,-14.94a6.02,6.02 0,0 0,0.14 -1.96,8.88 8.88,0 0,0 -3.03,1.81 32.47,32.47 0,0 0,-2.53 2.23,1.53 1.53,0 0,1 -2.1,0.08 1.46,1.46 0,0 1,-0.17 -2.02c0.13,-0.21 1.35,-2.41 1.2,-8.33a6.78,6.78 0,0 0,-0.44 -2.53,1.11 1.11,0 0,0 -0.57,-0.66c-0.45,-0.15 -1.51,0.1 -3.13,1.28a37.75,37.75 0,0 0,-6.53 6.69,1.5 1.5,0 0,1 -2.65,-1.16 14.7,14.7 0,0 0,0.11 -4.15,2.5 2.5,0 0,0 -0.51,-1.42c-0.14,-0.01 -0.69,0.15 -1.61,1.02a26,26 0,0 0,-3.93 5.18,53.43 53.43,0 0,1 -10.75,12.44 61.4,61.4 0,0 0,-10.2 11.31c-4.09,5.93 -12.51,20.85 -2.56,31.24a1.5,1.5 0,0 1,0.42 1C185.95,89.17 180.99,92.36 180.78,92.5Z"
android:fillColor="#222"/>
<path
android:pathData="M213.66,75.55a5.52,5.52 0,0 1,-3.59 -1.29,7.63 7.63,0 0,1 -2.53,-5.32 1.5,1.5 0,0 1,2.99 -0.2,4.66 4.66,0 0,0 1.45,3.21 2.58,2.58 0,0 0,2.06 0.58,47.79 47.79,0 0,0 7.64,-1.96 1.5,1.5 0,0 1,0.98 2.84,49.92 49.92,0 0,1 -8.27,2.11A6.29,6.29 0,0 1,213.66 75.55Z"
android:fillColor="#222"/>
<path
android:pathData="M192.34,78.49a7.88,7.88 0,0 1,-8.19 -7.41,19.24 19.24,0 0,1 0.17,-6.33 12.66,12.66 0,0 1,1.86 -4.95,8.98 8.98,0 0,1 3.06,-2.59 6.9,6.9 0,0 1,4.17 -0.81,5.31 5.31,0 0,1 2.85,1.36 7.68,7.68 0,0 1,1.98 3.16,1.5 1.5,0 1,1 -2.83,1c-0.55,-1.54 -1.37,-2.4 -2.44,-2.56 -1.56,-0.23 -3.45,0.94 -4.37,2.2 -1,1.36 -2.04,5.46 -1.48,9.05a5.88,5.88 0,0 0,1.89 3.84c3.22,2.34 7.59,-0.07 7.63,-0.09l0.74,1.3 0.74,1.3a13.12,13.12 0,0 1,-3.54 1.28A11.15,11.15 0,0 1,192.34 78.49Z"
android:fillColor="#222"/>
<path
android:pathData="M140.94,224.03a1.51,1.51 0,0 1,-0.26 -0.02c-7.58,-1.33 -13.46,-5.68 -17.46,-12.94 -3.61,-6.55 -5.68,-15.49 -6.18,-26.59a77.69,77.69 0,0 1,1.55 -18.03A119.53,119.53 0,0 1,124.64 145.86a130.23,130.23 0,0 1,25.24 -40.78,31.84 31.84,0 0,1 3.68,-11.43 19.03,19.03 0,0 1,6.28 -6.69,18.17 18.17,0 0,1 8.22,-2.7 17.41,17.41 0,0 1,6.47 0.64c3.33,1.07 8.01,6.86 13.42,13.57 3.78,4.68 7.68,9.52 10.57,11.86a28.28,28.28 0,0 0,9.92 4.93,32.26 32.26,0 0,0 4.89,1c1.96,-0.65 13.09,-4.42 22.88,-8.73 1.66,-0.73 3.07,-1.37 4.31,-1.93 3.54,-1.6 5.5,-2.48 7.05,-2.73 1.91,-0.31 3.14,0.33 4.62,1.54l0.04,0.03a32.28,32.28 0,0 1,5.99 6.04,31.65 31.65,0 0,1 5.42,12.56c2.16,10.43 1.3,13.3 0.98,13.93a1.5,1.5 0,0 1,-2.72 -1.25c0.07,-0.22 0.73,-2.75 -1.2,-12.07 -2.1,-10.17 -7.47,-14.53 -10.36,-16.88l-0.04,-0.03c-1.76,-1.43 -1.79,-1.45 -8.55,1.6 -1.25,0.56 -2.66,1.2 -4.33,1.94 -10.86,4.79 -23.33,8.9 -23.46,8.94a1.5,1.5 0,0 1,-0.59 0.07,32.86 32.86,0 0,1 -5.68,-1.12A31.33,31.33 0,0 1,196.62 112.66c-3.13,-2.54 -7.14,-7.51 -11.02,-12.31 -2.4,-2.98 -4.89,-6.06 -7.05,-8.41 -2.8,-3.05 -4.24,-3.96 -4.95,-4.19a15.31,15.31 0,0 0,-12.16 1.75c-4.69,2.96 -7.6,8.5 -8.65,16.46a1.5,1.5 0,0 1,-0.39 0.82c-22.43,24.07 -33.26,57.24 -32.36,77.57 0.47,10.63 2.42,19.14 5.81,25.28 3.54,6.43 8.7,10.27 15.35,11.44a1.5,1.5 0,0 1,-0.26 2.98Z"
android:fillColor="#222"/>
<path
android:pathData="M263.27,122.22a12.76,12.76 0,0 1,-1.92 -0.1l0.49,-2.96 -0.01,0a25.08,25.08 0,0 0,5.63 -0.2,116.3 116.3,0 0,0 19.62,-4.38c8.58,-2.56 14.07,-5.07 16.78,-7.69 2.32,-2.24 2.5,-4.39 2.5,-6.97 0,-1.9 -1.58,-3.69 -3.12,-5.42 -1.61,-1.81 -3.13,-3.53 -2.79,-5.55a4.55,4.55 0,0 1,2.59 -3.11,9.5 9.5,0 0,1 4.46,-1.28 8.22,8.22 0,0 1,4.26 1.07,10.83 10.83,0 0,1 4.3,4.76 19.2,19.2 0,0 1,1.8 7.81,1.5 1.5,0 0,1 -3,0.11c-0.18,-4.8 -1.88,-8.56 -4.57,-10.07a5.74,5.74 0,0 0,-5.78 0.21c-0.76,0.43 -1.07,0.8 -1.11,1 -0.01,0.09 -0.01,0.37 0.39,0.99a19.24,19.24 0,0 0,1.69 2.07c1.72,1.95 3.87,4.37 3.87,7.41 0,2.95 -0.26,6.08 -3.42,9.13 -3.11,3 -8.83,5.67 -18.01,8.41C273.98,121.61 266.48,122.22 263.27,122.22Z"
android:fillColor="#222"/>
<path
android:pathData="M232.18,155.16a1.5,1.5 0,0 1,-0.03 -3,115.34 115.34,0 0,0 12.68,-1.17 118.96,118.96 0,0 0,27.13 -7.05,196.75 196.75,0 0,0 22.59,-10.83c5.17,-2.92 7.99,-4.9 8.02,-4.92a1.5,1.5 0,0 1,1.73 2.45c-0.12,0.08 -2.94,2.07 -8.22,5.05A199.71,199.71 0,0 1,273.08 146.72a107.91,107.91 0,0 1,-14.79 4.72c-4.21,1.03 -8.61,1.88 -13.1,2.52a115.75,115.75 0,0 1,-13 1.2Z"
android:fillColor="#222"/>
<path
android:pathData="M309.8,132.36c-6.66,0 -9.73,-3.16 -9.87,-3.31l2.18,-2.06 -0.01,-0.01a7.42,7.42 0,0 0,2.17 1.34,14.7 14.7,0 0,0 7,0.98 38.96,38.96 0,0 0,8.8 -1.67,16.75 16.75,0 0,1 -8.69,-8.97 19.71,19.71 0,0 1,1.71 -17.92,18.92 18.92,0 0,1 7.14,-6.58 16.79,16.79 0,0 1,8.34 -1.98c4.05,0.15 7.31,1.95 8.94,4.95a25.7,25.7 0,0 1,3.28 11.98,17.32 17.32,0 0,1 -5.4,12.76 35.97,35.97 0,0 1,-11.97 7.75,41.02 41.02,0 0,1 -11.91,2.67C310.91,132.34 310.34,132.36 309.8,132.36ZM328.07,95.18a15.16,15.16 0,0 0,-12.46 7.19,16.67 16.67,0 0,0 -1.46,15.15 14.19,14.19 0,0 0,10.24 8.42,32.91 32.91,0 0,0 8.9,-6.21c7.71,-7.51 3.67,-17.3 1.58,-21.16 -1.11,-2.04 -3.45,-3.28 -6.41,-3.38Q328.27,95.18 328.07,95.18Z"
android:fillColor="#222"/>
<path
android:pathData="M314.77,122.24a1.5,1.5 0,0 1,-1.1 -2.52,23.73 23.73,0 0,1 5.37,-4.07 24.2,24.2 0,0 1,6.12 -2.46,21.81 21.81,0 0,1 7.99,-0.47 1.5,1.5 0,1 1,-0.38 2.98c-10.03,-1.27 -16.83,5.98 -16.9,6.05A1.5,1.5 0,0 1,314.77 122.24Z"
android:fillColor="#222"/>
<path
android:pathData="M312.97,111.52l0.01,-0.01 -2.58,-1.52c0.13,-0.22 3.31,-5.45 12.91,-8 8.85,-2.35 11.51,-1.39 12.24,-0.86a1.5,1.5 0,0 1,-1.61 2.53c-0.22,-0.08 -2.45,-0.73 -9.86,1.24a23.44,23.44 0,0 0,-8.72 4.16A11.1,11.1 0,0 0,312.97 111.52Z"
android:fillColor="#222"/>
<path
android:pathData="M193.31,128a1.5,1.5 0,0 1,-0.85 -2.74,65.41 65.41,0 0,1 6.43,-3.75A52.29,52.29 0,0 1,213.21 116.32a1.5,1.5 0,0 1,0.54 2.95c-9.75,1.77 -19.5,8.39 -19.59,8.46A1.49,1.49 0,0 1,193.31 128Z"
android:fillColor="#222"/>
<path
android:pathData="M205.16,134.09a1.5,1.5 0,0 1,-1.47 -1.22c-0.36,-1.91 0.17,-4.53 1.58,-7.79a38.31,38.31 0,0 1,2.13 -4.18,1.5 1.5,0 0,1 2.57,1.55h0a35.92,35.92 0,0 0,-1.96 3.85c-1.13,2.61 -1.61,4.74 -1.37,6.01a1.5,1.5 0,0 1,-1.48 1.78Z"
android:fillColor="#222"/>
<path
android:pathData="M196.83,143.71a1.5,1.5 0,0 1,-0.29 -2.97c0.18,-0.04 18.48,-3.73 30.2,-9.15A157.31,157.31 0,0 0,247.43 120.06a1.5,1.5 0,0 1,2.27 0.76,23.84 23.84,0 0,0 1.88,4.04c1.02,1.72 2.64,3.85 4.56,4.22a1.5,1.5 0,0 1,-0.57 2.95c-2.44,-0.47 -4.66,-2.38 -6.61,-5.68a26.46,26.46 0,0 1,-1.41 -2.77,165.38 165.38,0 0,1 -19.57,10.75 126.04,126.04 0,0 1,-20.02 6.8c-6.1,1.61 -10.8,2.56 -10.85,2.57A1.51,1.51 0,0 1,196.83 143.71Z"
android:fillColor="#222"/>
<path
android:pathData="M141.3,187.09a1.5,1.5 0,0 1,-1.25 -2.33,86.58 86.58,0 0,1 5.54,-7.26 64.1,64.1 0,0 1,13.4 -12.41,1.5 1.5,0 0,1 1.64,2.51 63.39,63.39 0,0 0,-12.72 11.8,85.39 85.39,0 0,0 -5.36,7.02A1.5,1.5 0,0 1,141.3 187.09Z"
android:fillColor="#222"/>
<path
android:pathData="M119.28,193.55a1.5,1.5 0,0 1,-1.2 -2.4,42.01 42.01,0 0,1 8.18,-7.76 48.3,48.3 0,0 1,9.93 -5.69,45.97 45.97,0 0,1 13.68,-3.44 1.5,1.5 0,0 1,0.28 2.99,44.11 44.11,0 0,0 -22.1,8.55 39.51,39.51 0,0 0,-7.55 7.14A1.5,1.5 0,0 1,119.28 193.55Z"
android:fillColor="#222"/>
<path
android:pathData="M209.6,204.81a1.5,1.5 0,0 1,-1.34 -0.82l-7.76,-15.19 -6.32,6.32a1.5,1.5 0,0 1,-2.12 -2.12l7.77,-7.77a1.5,1.5 0,0 1,2.4 0.38l8.7,17.03a1.5,1.5 0,0 1,-1.34 2.18Z"
android:fillColor="#222"/>
<path
android:pathData="M200.9,187.84a1.5,1.5 0,0 1,-1.49 -1.36,29 29,0 0,1 0.96,-8.95 36.47,36.47 0,0 1,3.43 -8.7,39.52 39.52,0 0,1 7.35,-9.48 1.5,1.5 0,0 1,2.07 2.17,35.01 35.01,0 0,0 -9.91,16.62 26.73,26.73 0,0 0,-0.92 8.07,1.5 1.5,0 0,1 -1.35,1.63Q200.97,187.84 200.9,187.84Z"
android:fillColor="#222"/>
<path
android:pathData="M198.87,185.43a1.5,1.5 0,0 1,-1.23 -0.64,21.13 21.13,0 0,1 -2.85,-6 31.88,31.88 0,0 1,-1.17 -5.87,35.49 35.49,0 0,1 -0.14,-6.33 1.5,1.5 0,0 1,2.99 0.27h0a33.18,33.18 0,0 0,0.14 5.81c0.32,2.95 1.19,7.15 3.48,10.41a1.5,1.5 0,0 1,-1.23 2.36Z"
android:fillColor="#222"/>
<path
android:pathData="M246.24,224.31a1.5,1.5 0,0 1,-0.09 -3,20.49 20.49,0 0,0 10.74,-3.46 11.69,11.69 0,0 0,4.59 -6.04c0.63,-2.17 0.21,-4.04 -1.12,-4.99 -3.01,-2.15 -6.17,-1.3 -10.55,-0.14a56.35,56.35 0,0 1,-6.88 1.51,45.62 45.62,0 0,1 -16.53,-1.15 1.5,1.5 0,0 1,-0.45 -2.68l10.9,-7.49c-0.79,-2.5 -2.55,-9.44 -4.5,-25.89a128.02,128.02 0,0 1,-0.84 -15.91c0.03,-4.4 0.27,-8.92 0.7,-13.42a122.58,122.58 0,0 1,1.83 -12.8,1.5 1.5,0 0,1 2.93,0.63h0a122.33,122.33 0,0 0,-1.78 12.51,137.84 137.84,0 0,0 0.14,28.64c1.3,10.97 2.5,17.49 3.28,21.03a33.91,33.91 0,0 0,1.41 5.17,1.47 1.47,0 0,1 -0.51,1.86l-8.97,6.16a40.58,40.58 0,0 0,11.98 0.37,53.16 53.16,0 0,0 6.52,-1.44 31.2,31.2 0,0 1,6.6 -1.28,10.04 10.04,0 0,1 6.47,1.88c2.38,1.7 3.24,4.86 2.26,8.26a14.68,14.68 0,0 1,-5.72 7.65,23.46 23.46,0 0,1 -12.31,4.02Z"
android:fillColor="#222"/>
<path
android:pathData="M290.58,286.35q-0.45,0 -0.89,-0.01a40.62,40.62 0,0 1,-9.46 -1.24,29.46 29.46,0 0,1 -8.52,-3.65c-2.52,-1.61 -5.3,-4.74 -8.29,-9.29a109.68,109.68 0,0 1,-7.84 -14.53,131.35 131.35,0 0,1 -6.02,-15.84 54.01,54.01 0,0 1,-2.6 -13.2,1.5 1.5,0 0,1 3,-0.08c0.17,6.12 3.45,17.06 8.36,27.88a106.66,106.66 0,0 0,7.61 14.13c2.71,4.14 5.27,7.04 7.4,8.41 8.31,5.33 21.25,5.89 34.63,1.5a23.53,23.53 0,0 0,8.26 -4.47c1.82,-1.62 2.83,-3.32 2.85,-4.81a3.4,3.4 0,0 0,-0.98 -2.4,9.6 9.6,0 0,0 -3.88,-2.33c-4.96,-1.79 -8.06,-1.17 -11.65,-0.46a28.64,28.64 0,0 1,-14.88 -0.25,1.5 1.5,0 0,1 -1.07,-1.13c-4.65,-21.76 -14.5,-55.01 -26.1,-80.55a106.89,106.89 0,0 0,-18.11 -4.77c-4.87,-0.84 -8.04,-1.03 -8.07,-1.03a1.5,1.5 0,0 1,0.17 -2.99,82.68 82.68,0 0,1 8.36,1.06 109.57,109.57 0,0 1,19.29 5.14,1.5 1.5,0 0,1 0.84,0.78c11.65,25.47 21.58,58.74 26.37,80.83a25.7,25.7 0,0 0,12.63 -0.03,30.92 30.92,0 0,1 5.88,-0.77 20.53,20.53 0,0 1,7.38 1.35,12.49 12.49,0 0,1 5.08,3.13 6.43,6.43 0,0 1,1.76 4.46c-0.04,2.37 -1.37,4.79 -3.85,7.01a26.52,26.52 0,0 1,-9.32 5.08A59.55,59.55 0,0 1,290.58 286.35Z"
android:fillColor="#222"/>
<path
android:pathData="M192.57,147.05a1.51,1.51 0,0 1,-0.3 -0.03c-0.19,-0.04 -4.68,-0.99 -10.77,-5.34a54.13,54.13 0,0 1,-9.99 -9.38,77.63 77.63,0 0,1 -10.27,-16.27 1.5,1.5 0,0 1,2.7 -1.3c6.46,13.48 14.06,20.76 19.3,24.5 5.57,3.98 9.59,4.83 9.63,4.84a1.5,1.5 0,0 1,-0.3 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M169.25,132.06a1.49,1.49 0,0 1,-0.8 -0.23L155.31,123.5A1.5,1.5 0,0 1,154.85 121.43,1.5 1.5,0 0,1 156.91,120.96l13.14,8.33a1.5,1.5 0,0 1,-0.8 2.77Z"
android:fillColor="#222"/>
<path
android:pathData="M162.96,137.95h-0.02L149.24,137.77A1.5,1.5 0,0 1,147.76 136.25,1.5 1.5,0 0,1 149.28,134.77l13.7,0.19a1.5,1.5 0,0 1,-0.02 3Z"
android:fillColor="#222"/>
<path
android:pathData="M206.08,41a1.5,1.5 0,0 1,-0.67 -2.84h0c0.06,-0.03 5.64,-2.88 7.48,-7.29a1.5,1.5 0,0 1,2.77 1.15c-2.27,5.45 -8.63,8.68 -8.9,8.81A1.49,1.49 0,0 1,206.08 41Z"
android:fillColor="#222"/>
<path
android:pathData="M213.44,44.19a1.5,1.5 0,0 1,-0.75 -2.8h0c0.07,-0.04 7.05,-4.1 10.73,-8.29a1.5,1.5 0,1 1,2.26 1.98c-4,4.58 -11.18,8.74 -11.48,8.92A1.49,1.49 0,0 1,213.44 44.19Z"
android:fillColor="#222"/>
<path
android:pathData="M301.22,35.11h0c-1.83,0 -3.16,-1.55 -3.32,-3.87a39.11,39.11 0,0 1,0.43 -7.52,37.64 37.64,0 0,1 2.6,-9.62 12.08,12.08 0,0 1,2.72 -4.11,4.13 4.13,0 0,1 2.75,-1.17 3.07,3.07 0,0 1,1.21 0.24,2.4 2.4,0 0,1 1.46,1.26 10.15,10.15 0,0 1,0.9 4.1,29.9 29.9,0 0,1 -3.4,16.1C304.47,34.31 302.5,35.11 301.22,35.11ZM306.4,11.82c-0.41,0 -1.5,0.73 -2.74,3.51 -2.49,5.59 -2.95,13.13 -2.77,15.71a1.7,1.7 0,0 0,0.34 1.07c0.28,-0.01 1.35,-0.58 2.72,-3.05a26.87,26.87 0,0 0,3.03 -14.45,8.29 8.29,0 0,0 -0.49,-2.76l-0.06,-0.03Z"
android:fillColor="#222"/>
<path
android:pathData="M309.01,28.88a1.5,1.5 0,0 1,-0.37 -0.05L306.5,28.3A1.5,1.5 0,0 1,305.41 26.48,1.5 1.5,0 0,1 307.23,25.39l2.14,0.54a1.5,1.5 0,0 1,-0.36 2.96Z"
android:fillColor="#222"/>
<path
android:pathData="M310.35,24.99a1.51,1.51 0,0 1,-0.24 -0.02l-2.55,-0.4A1.5,1.5 0,0 1,306.32 22.86,1.5 1.5,0 0,1 308.04,21.61l2.55,0.4A1.5,1.5 0,0 1,310.35 24.99Z"
android:fillColor="#222"/>
<path
android:pathData="M311.29,20.57a1.51,1.51 0,0 1,-0.2 -0.01L308.14,20.16A1.5,1.5 0,0 1,306.85 18.47,1.5 1.5,0 0,1 308.54,17.19l2.95,0.4a1.5,1.5 0,0 1,-0.2 2.99Z"
android:fillColor="#222"/>
<path
android:pathData="M308.47,16.02A1.5,1.5 0,0 1,306.98 14.66,1.5 1.5,0 0,1 308.33,13.03l2.81,-0.27A1.5,1.5 0,0 1,312.78 14.11,1.5 1.5,0 0,1 311.43,15.74L308.62,16.01C308.57,16.02 308.52,16.02 308.47,16.02Z"
android:fillColor="#222"/>
<path
android:pathData="M322.86,87.84a1.5,1.5 0,0 1,-1.29 -2.27h0c0,-0.01 0.36,-0.61 0.82,-1.63a1.5,1.5 0,1 1,2.74 1.23,20.82 20.82,0 0,1 -0.98,1.94A1.5,1.5 0,0 1,322.86 87.84ZM325.91,78.38a1.52,1.52 0,0 1,-0.17 -0.01,1.5 1.5,0 0,1 -1.33,-1.66c0.07,-0.62 0.11,-1.25 0.12,-1.85a1.5,1.5 0,1 1,3 0.04c-0.01,0.7 -0.05,1.42 -0.13,2.14A1.5,1.5 0,0 1,325.91 78.38ZM304.94,70.13a1.49,1.49 0,0 1,-1 -0.38,5.87 5.87,0 0,1 -1.53,-2.17 1.5,1.5 0,1 1,2.78 -1.13,2.89 2.89,0 0,0 0.75,1.07 1.5,1.5 0,0 1,-1 2.62ZM312.39,70.03a1.5,1.5 0,0 1,-0.81 -2.76,9.08 9.08,0 0,0 0.82,-0.59 4.93,4.93 0,0 0,0.46 -0.43,1.5 1.5,0 1,1 2.18,2.06 7.94,7.94 0,0 1,-0.74 0.69,12.09 12.09,0 0,1 -1.09,0.79A1.49,1.49 0,0 1,312.39 70.03ZM324.31,68.65a1.5,1.5 0,0 1,-1.34 -0.82,14.23 14.23,0 0,0 -0.92,-1.56 1.5,1.5 0,1 1,2.48 -1.69,17.25 17.25,0 0,1 1.12,1.88 1.5,1.5 0,0 1,-1.34 2.18ZM317.32,61.61a1.5,1.5 0,0 1,-1.31 -0.77c-0.28,-0.15 -0.57,-0.28 -0.85,-0.4a2.38,2.38 0,1 1,4.04 -2.03c-0.07,0.4 -0.15,0.8 -0.23,1.19a1.77,1.77 0,0 1,-1.65 2.01ZM306.26,61.48a1.5,1.5 0,0 1,-0.91 -2.69,10.15 10.15,0 0,1 2.01,-1.2 1.5,1.5 0,1 1,1.23 2.74,7.15 7.15,0 0,0 -1.42,0.84A1.49,1.49 0,0 1,306.26 61.48ZM318.24,51.68a1.5,1.5 0,0 1,-1.5 -1.45c-0.02,-0.64 -0.06,-1.29 -0.11,-1.93a1.5,1.5 0,1 1,2.99 -0.23c0.05,0.69 0.09,1.38 0.12,2.06a1.5,1.5 0,0 1,-1.45 1.55ZM316.84,41.8a1.5,1.5 0,0 1,-1.46 -1.14c-0.15,-0.62 -0.32,-1.25 -0.5,-1.88a1.5,1.5 0,1 1,2.88 -0.83c0.19,0.66 0.37,1.33 0.53,1.99a1.5,1.5 0,0 1,-1.46 1.86ZM313.54,32.38a1.5,1.5 0,0 1,-1.36 -0.88q-0.09,-0.2 -0.19,-0.41a1.5,1.5 0,1 1,2.72 -1.27q0.1,0.22 0.2,0.43a1.5,1.5 0,0 1,-1.36 2.13Z"
android:fillColor="#222"/>
<path
android:pathData="M304.08,35.54a1.5,1.5 0,0 1,-0.2 -0.01l-2.55,-0.34a1.5,1.5 0,0 1,0.4 -2.97l2.11,0.29a8.44,8.44 0,0 0,1.83 -1.39,16.02 16.02,0 0,0 3.82,-6.45 18.32,18.32 0,0 0,0.03 -12.62q-0.04,-0.1 -0.07,-0.16a21.53,21.53 0,0 0,-3.19 -0.21,1.5 1.5,0 0,1 0.03,-3h0.03a15.43,15.43 0,0 1,4.08 0.36,2.84 2.84,0 0,1 1.91,1.89 18.53,18.53 0,0 1,1.18 4.87,22.74 22.74,0 0,1 -1.16,9.83 18.8,18.8 0,0 1,-4.74 7.8,9.62 9.62,0 0,1 -3,2.02A1.5,1.5 0,0 1,304.08 35.54Z"
android:fillColor="#222"/>
<path
android:pathData="M308.09,31.47a1.5,1.5 0,0 1,-0.37 -0.05L305.51,30.87A1.5,1.5 0,0 1,304.42 29.05,1.5 1.5,0 0,1 306.24,27.96L308.45,28.51a1.5,1.5 0,0 1,-0.36 2.96Z"
android:fillColor="#222"/>
<path
android:pathData="M306.77,33.12a1.51,1.51 0,0 1,-0.26 -0.02l-2,-0.34A1.5,1.5 0,0 1,303.3 31.02,1.5 1.5,0 0,1 305.03,29.8l2,0.34A1.5,1.5 0,0 1,306.77 33.12Z"
android:fillColor="#222"/>
<path
android:pathData="M305.67,34.29A1.52,1.52 0,0 1,305.52 34.29l-2,-0.21A1.5,1.5 0,0 1,302.18 32.43,1.5 1.5,0 0,1 303.82,31.1l2,0.21A1.5,1.5 0,0 1,305.67 34.29Z"
android:fillColor="#222"/>
<path
android:pathData="M188.13,190.07a1.5,1.5 0,0 1,0.71 0.18l67,35.9a1.5,1.5 0,0 1,-0.46 2.8c-0.92,0.16 -92.87,15.85 -153.25,25.73a1.5,1.5 0,0 1,-1.32 -2.53c4.57,-4.7 11.98,-10.88 22.01,-18.37 7.99,-5.97 17.68,-12.79 28.78,-20.27 18.89,-12.73 35.58,-23.11 35.74,-23.21A1.5,1.5 0,0 1,188.13 190.07ZM250.56,226.74 L188.19,193.31c-3.42,2.14 -18.32,11.51 -34.92,22.7 -21.79,14.69 -37.84,26.65 -46.88,34.94C159.02,242.31 232.18,229.87 250.56,226.74Z"
android:fillColor="#222"/>
<path
android:pathData="M156.11,325.21a15.85,15.85 0,0 1,-6.22 -1.07,14.57 14.57,0 0,1 -5.47,-4.18 42.04,42.04 0,0 1,-5.19 -8.23c-1.76,-3.45 -3.65,-7.77 -5.98,-13.57a88.73,88.73 0,0 1,-4.76 -16.53,102.71 102.71,0 0,1 -1.64,-14.31 85.16,85.16 0,0 1,0.38 -13.96,1.5 1.5,0 1,1 2.97,0.4 84.13,84.13 0,0 0,-0.35 13.5,93.19 93.19,0 0,0 6.18,29.79c4.47,11.18 7.66,17.45 10.66,20.96s5.82,4.19 9.41,4.19a7.51,7.51 0,0 0,5.16 -2.27l-0.01,0.01 2.27,1.97A10.44,10.44 0,0 1,156.11 325.21Z"
android:fillColor="#222"/>
<path
android:pathData="M168.76,325.36a8.61,8.61 0,0 1,-3.22 -0.63,13.82 13.82,0 0,1 -3.87,-2.77 33.02,33.02 0,0 1,-4.94 -6.14,53.11 53.11,0 0,1 -4.96,-10.18 80.17,80.17 0,0 1,-3.8 -14.82,99.68 99.68,0 0,1 -1.26,-16.3 106.49,106.49 0,0 1,0.89 -13.31,80.56 80.56,0 0,1 2.46,-12.35 1.5,1.5 0,0 1,2.87 0.89h0a79.46,79.46 0,0 0,-2.36 11.93,101.02 101.02,0 0,0 0.37,28.66c1.95,12.01 5.6,19.61 8.32,23.86 3.21,5.03 6.26,7.27 7.43,7.75a4.9,4.9 0,0 0,4.42 -0.26c1.32,-0.88 2.02,-2.68 2.02,-5.2a1.5,1.5 0,0 1,3 0c0,4.51 -1.82,6.67 -3.35,7.7A7.13,7.13 0,0 1,168.76 325.36Z"
android:fillColor="#222"/>
<path
android:pathData="M167.97,328.97q-0.27,0 -0.54,-0.02a6.47,6.47 0,0 1,-3.32 -1.14,7.74 7.74,0 0,1 -3.02,-6.18 1.5,1.5 0,0 1,3 0,4.78 4.78,0 0,0 1.74,3.73c1.15,0.8 2.81,0.82 4.95,0.04 5,-1.82 4.76,-7.34 4.75,-7.39a1.5,1.5 0,1 1,3 -0.17,12.02 12.02,0 0,1 -0.66,4.18A9.77,9.77 0,0 1,171.8 328.22,11.3 11.3,0 0,1 167.97,328.97Z"
android:fillColor="#222"/>
<path
android:pathData="M154.48,251.59a10.95,10.95 0,0 1,-6.45 -1.93,8.52 8.52,0 0,1 -2.49,-2.64l2.64,-1.43 -0.01,-0.01c0.08,0.14 2.09,3.55 7.59,2.94 5.76,-0.64 8.41,-6.13 8.43,-6.18a1.5,1.5 0,1 1,2.71 1.28,15.43 15.43,0 0,1 -2.58,3.63 13.31,13.31 0,0 1,-8.23 4.26A14.62,14.62 0,0 1,154.48 251.59Z"
android:fillColor="#222"/>
<path
android:pathData="M129.84,255.3a9.63,9.63 0,0 1,-5.37 -1.64,10.19 10.19,0 0,1 -2.74,-2.65l2.51,-1.64 0,-0.01a7,7 0,0 0,7.45 2.7A16.86,16.86 0,0 0,140.28 246.34a1.5,1.5 0,1 1,2.42 1.77,19.81 19.81,0 0,1 -10.29,6.86A10.61,10.61 0,0 1,129.84 255.3Z"
android:fillColor="#222"/>
<path
android:pathData="M217.34,242.72a11.86,11.86 0,0 1,-7.48 -2.64,13.3 13.3,0 0,1 -3.26,-3.78l2.65,-1.4 0,-0a10.46,10.46 0,0 0,2.56 2.91,8.99 8.99,0 0,0 7.66,1.7 8.34,8.34 0,0 0,6.1 -4.11,7.12 7.12,0 0,0 0.84,-2.93 1.5,1.5 0,1 1,3 0,9.94 9.94,0 0,1 -1.19,4.34c-1.08,2.04 -3.37,4.67 -8.15,5.65A13.61,13.61 0,0 1,217.34 242.72Z"
android:fillColor="#222"/>
<path
android:pathData="M237.76,237.95a8.95,8.95 0,0 1,-6.53 -2.6,9.09 9.09,0 0,1 -2.15,-3.35l2.86,-0.92 0,-0.01a6.33,6.33 0,0 0,1.5 2.24,6.4 6.4,0 0,0 5.57,1.55c4.59,-0.62 6.52,-2.42 7.27,-3.43a3.38,3.38 0,0 0,0.71 -2.59,1.5 1.5,0 0,1 2.95,-0.52 6.39,6.39 0,0 1,-1.24 4.88c-1.77,2.42 -5.07,4.07 -9.29,4.64A12.33,12.33 0,0 1,237.76 237.95Z"
android:fillColor="#222"/>
<path
android:pathData="M228.51,317.22a7.72,7.72 0,0 1,-7.59 -5.48l2.89,-0.79 0,-0.01a4.99,4.99 0,0 0,2.21 2.69,6.73 6.73,0 0,0 5.18,0.16c3.6,-1.05 6.49,-4.32 8.85,-9.99 2.73,-6.56 4.68,-16.45 5.81,-29.42 2.35,-26.94 -1.91,-39.41 -1.96,-39.53a1.5,1.5 0,0 1,2.83 -1,52.44 52.44,0 0,1 1.99,10.06 119.96,119.96 0,0 1,0.82 12.67,177.68 177.68,0 0,1 -0.7,18.06c-2.27,25.98 -7.61,39.33 -16.8,42.03A12.6,12.6 0,0 1,228.51 317.22Z"
android:fillColor="#222"/>
<path
android:pathData="M211.8,320.23a5.69,5.69 0,0 1,-4.86 -2.15c-1.76,-2.11 -3.09,-5.93 -4.2,-12.04a1.5,1.5 0,0 1,2.95 -0.53c0.98,5.43 2.17,9.01 3.55,10.65a2.86,2.86 0,0 0,2.74 1.07h0.2a7.68,7.68 0,0 0,7.86 -5.33c2.16,-5.58 4.91,-25.89 6.01,-44.33a102.22,102.22 0,0 0,-0.75 -21.02,46.37 46.37,0 0,0 -1.57,-7.28 1.5,1.5 0,0 1,2.84 -0.98,47.7 47.7,0 0,1 1.68,7.69 105.04,105.04 0,0 1,0.8 21.76c-1.13,19.02 -3.91,39.32 -6.21,45.24a10.66,10.66 0,0 1,-10.65 7.25Z"
android:fillColor="#222"/>
<path
android:pathData="M212.74,324.07c-4.56,0 -6.76,-2.29 -7.8,-4.21a9.39,9.39 0,0 1,-1.11 -4.14h3v-0.01a6.57,6.57 0,0 0,0.79 2.8c0.95,1.69 2.67,2.55 5.11,2.55 4.72,0 6.05,-2.05 6.35,-2.68a1.77,1.77 0,0 0,-0.1 -1.89,1.5 1.5,0 1,1 2.3,-1.92 4.72,4.72 0,0 1,0.51 5.08,6.96 6.96,0 0,1 -3.2,3.16A12.7,12.7 0,0 1,212.74 324.07Z"
android:fillColor="#222"/>
<path
android:pathData="M230.28,320.61q-0.69,0 -1.38,-0.06c-3.37,-0.3 -5.86,-1.42 -7.4,-3.33a7.03,7.03 0,0 1,-1.55 -5.01l2.98,0.37 0,-0.02a4.09,4.09 0,0 0,0.93 2.81c1.02,1.23 2.8,1.97 5.3,2.19 4.41,0.39 7.53,-1.59 8.66,-3.74a2.6,2.6 0,0 0,0.04 -2.88,1.5 1.5,0 1,1 2.32,-1.91 4.86,4.86 0,0 1,1.1 3.04,6.56 6.56,0 0,1 -0.8,3.15 9.81,9.81 0,0 1,-4.3 4.06A13.09,13.09 0,0 1,230.28 320.61Z"
android:fillColor="#222"/>
<path
android:pathData="M119.84,359.79a1.5,1.5 0,0 1,-1.39 -0.95l-3.15,-7.96a1.5,1.5 0,0 1,0.88 -1.96l5.52,-1.99 -0.76,-5.46a1.5,1.5 0,0 1,1.21 -1.68l3.32,-0.62 -1.33,-4.11a1.5,1.5 0,0 1,0.05 -1.06l7.03,-16.1a1.5,1.5 0,0 1,0.99 -0.85l10.36,-2.78a1.5,1.5 0,0 1,0.78 2.9l-9.67,2.59 -6.52,14.92 1.68,5.2a1.5,1.5 0,0 1,-1.15 1.93l-3.59,0.66 0.73,5.24a1.5,1.5 0,0 1,-0.98 1.62l-5.21,1.88 2.17,5.5c6.95,-0.49 45.7,-3.22 82.35,-6.22 35.02,-2.87 62.68,-5.07 69.47,-5.61l-4.03,-27.03 -3.44,-0.28a1.5,1.5 0,0 1,-1.36 -1.25l-1.26,-7.57 -2.74,0.13a1.5,1.5 0,0 1,-1.55 -1.25l-1.61,-9.64 -12.6,1.99a1.5,1.5 0,0 1,-0.47 -2.96l14.06,-2.22a1.5,1.5 0,0 1,1.71 1.24l1.63,9.79 2.74,-0.13a1.5,1.5 0,0 1,1.55 1.25l1.29,7.73 3.46,0.28a1.5,1.5 0,0 1,1.36 1.27l4.44,29.8a1.5,1.5 0,0 1,-1.37 1.72c-0.3,0.02 -30.82,2.44 -71.06,5.74s-83.06,6.26 -83.49,6.29C119.91,359.79 119.87,359.79 119.84,359.79Z"
android:fillColor="#222"/>
<path
android:pathData="M125.57,336.26a1.5,1.5 0,0 1,-0.14 -2.99c0.29,-0.03 29.45,-2.8 61.14,-4.45 32.84,-1.71 57.22,-4.66 67.37,-6.28 0.79,-7.78 2.45,-26.04 2.47,-26.23a1.5,1.5 0,1 1,2.99 0.27c-0.02,0.2 -1.86,20.45 -2.59,27.41a1.5,1.5 0,0 1,-1.25 1.32c-6.28,1.05 -15.97,2.26 -26.59,3.32 -13.27,1.33 -27.88,2.43 -42.24,3.17 -31.62,1.64 -60.72,4.41 -61.01,4.44Q125.64,336.26 125.57,336.26Z"
android:fillColor="#222"/>
<path
android:pathData="M127.42,341.84a1.5,1.5 0,0 1,-0.09 -3c0.48,-0.03 48.04,-2.8 74.73,-4.99 26.64,-2.19 55.11,-6.97 55.4,-7.02a1.5,1.5 0,0 1,0.5 2.96c-0.29,0.05 -28.87,4.85 -55.65,7.05 -26.73,2.2 -74.33,4.97 -74.8,5Z"
android:fillColor="#222"/>
<path
android:pathData="M147.73,343.32c-2.76,0 -5.33,-0.02 -7.63,-0.05 -10.39,-0.14 -17.68,-0.51 -17.75,-0.51a1.5,1.5 0,0 1,0.15 -3c0.07,0 7.32,0.37 17.66,0.51 9.53,0.13 23.7,0.08 37.13,-0.88 5.28,-0.38 10.73,-0.71 15.99,-1.04 21.26,-1.31 43.26,-2.67 66.94,-7.09a1.5,1.5 0,0 1,0.55 2.95c-23.86,4.45 -45.94,5.81 -67.3,7.13 -5.26,0.32 -10.7,0.66 -15.97,1.03C167.21,343.12 156.49,343.32 147.73,343.32Z"
android:fillColor="#222"/>
<path
android:pathData="M123.35,349.43a1.5,1.5 0,0 1,-0.01 -3c0.1,0 9.74,-0.1 24.79,-0.69 13.89,-0.55 35.35,-1.64 58.74,-3.74 44.71,-4.01 56.06,-5.71 56.17,-5.73a1.5,1.5 0,0 1,0.45 2.97c-0.11,0.02 -11.48,1.72 -56.35,5.75 -23.45,2.11 -44.98,3.2 -58.9,3.75 -15.09,0.6 -24.77,0.69 -24.87,0.7Z"
android:fillColor="#222"/>
<path
android:pathData="M126.55,351.89c-5.85,0 -9.78,-0.06 -9.88,-0.06a1.5,1.5 0,0 1,0.02 -3h0.02c0.25,0 25.14,0.36 43.38,-0.74 3.38,-0.2 8.25,-0.46 13.89,-0.76 26.39,-1.39 70.56,-3.72 94.25,-7.19a1.5,1.5 0,1 1,0.44 2.97c-23.83,3.49 -68.09,5.82 -94.53,7.22 -5.63,0.3 -10.5,0.55 -13.86,0.75C149.15,351.76 135.57,351.89 126.55,351.89Z"
android:fillColor="#222"/>
<path
android:pathData="M167.63,216.67a1.5,1.5 0,0 1,-0.9 -2.7c0.49,-0.37 12.13,-9.01 21.01,-13.72a1.5,1.5 0,0 1,1.27 -0.06c10.37,4.2 15.98,8.78 16.22,8.98a1.5,1.5 0,0 1,-1.52 2.55,6.48 6.48,0 0,0 -2.09,-0.4 1.86,1.86 0,0 0,-1.96 1.04,1.5 1.5,0 0,1 -2.67,0.07c-0.69,-1.28 -1.44,-1.98 -2.12,-1.98 -0.89,0 -2.03,1.18 -2.5,2.57a1.5,1.5 0,0 1,-2.89 -0.17c-0.56,-2.68 -1.8,-3.9 -2.71,-3.9a1.17,1.17 0,0 0,-0.87 0.43,4.88 4.88,0 0,0 -0.81,3.6 1.5,1.5 0,0 1,-2.8 0.85,3.13 3.13,0 0,0 -2.56,-1.87 1.82,1.82 0,0 0,-1.45 0.69,2.29 2.29,0 0,0 -0.3,2.03 1.5,1.5 0,0 1,-2.43 1.5,3.74 3.74,0 0,0 -2.48,-0.71 13.94,13.94 0,0 0,-4.82 1.09A1.5,1.5 0,0 1,167.63 216.67ZM173.94,212.5a7.83,7.83 0,0 1,1.07 0.17,4.87 4.87,0 0,1 0.48,-1.24Q174.69,211.97 173.94,212.49ZM179.72,208.95a5.24,5.24 0,0 1,2.68 0.74,5.9 5.9,0 0,1 1.29,-2.37 4.17,4.17 0,0 1,3.07 -1.39,4.81 4.81,0 0,1 3.56,1.75 7.54,7.54 0,0 1,0.99 1.43l0.1,-0.1a4.93,4.93 0,0 1,3.45 -1.57,4.67 4.67,0 0,1 3.57,1.81 4.65,4.65 0,0 1,0.91 -0.51,75.36 75.36,0 0,0 -10.81,-5.51c-3.02,1.64 -6.36,3.73 -9.44,5.77A5.03,5.03 0,0 1,179.72 208.95Z"
android:fillColor="#222"/>
<path
android:pathData="M289.78,277.17a1.5,1.5 0,0 1,-1.46 -1.16,100.95 100.95,0 0,1 -1.75,-11.69 1.5,1.5 0,0 1,2.99 -0.27,99.93 99.93,0 0,0 1.68,11.26 1.5,1.5 0,0 1,-1.46 1.84Z"
android:fillColor="#222"/>
<path
android:pathData="M282.29,274.4a1.5,1.5 0,0 1,-0.67 -2.84c3.2,-1.6 11.27,-7.06 11.35,-7.12a1.5,1.5 0,0 1,1.68 2.48c-0.34,0.23 -8.31,5.63 -11.69,7.32A1.49,1.49 0,0 1,282.29 274.4Z"
android:fillColor="#222"/>
<path
android:pathData="M294.91,276.2a1.5,1.5 0,0 1,-1.49 -1.32,14.37 14.37,0 0,1 1.23,-6.53 31.67,31.67 0,0 1,1.53 -3.39,1.5 1.5,0 0,1 2.64,1.43h0c-0.77,1.43 -2.71,5.68 -2.42,8.13a1.5,1.5 0,0 1,-1.31 1.67A1.52,1.52 0,0 1,294.91 276.2Z"
android:fillColor="#222"/>
<path
android:pathData="M250.23,149.85a4.67,4.67 0,0 1,-0.84 -0.08,3.32 3.32,0 0,1 -2.35,-1.68c-0.71,-1.25 -0.86,-3.11 -0.44,-5.65a2.79,2.79 0,0 1,-1.85 0.25,2.67 2.67,0 0,1 -1.75,-1.32c-0.58,-1.01 -0.69,-2.52 -0.34,-4.73 0.13,-0.84 0.33,-1.79 0.59,-2.87a2.72,2.72 0,0 1,-1.36 0.07,2.47 2.47,0 0,1 -1.86,-1.96 10.32,10.32 0,0 1,0.63 -5.8,1.5 1.5,0 0,1 2.77,1.16 8.11,8.11 0,0 0,-0.57 3.43,8.76 8.76,0 0,0 1.9,-1.76 1.5,1.5 0,0 1,2.6 1.39,48.89 48.89,0 0,0 -1.75,6.9 7.41,7.41 0,0 0,-0.08 2.42,7.38 7.38,0 0,0 1.57,-1.66 20.71,20.71 0,0 0,1.28 -1.92,1.5 1.5,0 0,1 2.71,1.27 36.63,36.63 0,0 0,-1.21 4.08c-0.85,3.7 -0.38,4.94 -0.21,5.23a0.35,0.35 0,0 0,0.28 0.21c0.26,0.05 0.97,0.18 1.79,-0.9a5.85,5.85 0,0 0,0.82 -1.55l0,0.01 2.87,0.89a8.74,8.74 0,0 1,-1.23 2.39A4.88,4.88 0,0 1,250.23 149.85Z"
android:fillColor="#decabe"/>
<path
android:pathData="M341.18,346.47a1.5,1.5 0,0 1,-1.48 -1.78c0.01,-0.04 0.76,-3.99 2.08,-9.09a96.95,96.95 0,0 1,5.63 -16.62,1.5 1.5,0 1,1 2.71,1.28c-4.49,9.52 -7.44,24.84 -7.47,25A1.5,1.5 0,0 1,341.18 346.47Z"
android:fillColor="#54565a"/>
<path
android:pathData="M349.33,349.43a1.5,1.5 0,0 1,-1.47 -1.82c0.12,-0.56 3.06,-13.83 7.04,-20.27a1.5,1.5 0,0 1,2.55 1.58c-3.71,6.01 -6.63,19.2 -6.66,19.34A1.5,1.5 0,0 1,349.33 349.43Z"
android:fillColor="#54565a"/>
<path
android:pathData="M359.32,351.83a1.5,1.5 0,0 1,-1.41 -2c0.18,-0.5 4.4,-12.36 8.62,-17.15a1.5,1.5 0,1 1,2.25 1.98c-3.83,4.36 -8,16.05 -8.04,16.17A1.5,1.5 0,0 1,359.32 351.83Z"
android:fillColor="#54565a"/>
<path
android:pathData="M293.43,387.18q-0.07,0 -0.14,-0.01a1.5,1.5 0,0 1,-1.36 -1.63c0.02,-0.19 0.43,-4.75 1.4,-10.44 1.32,-7.71 2.95,-13.48 4.87,-17.14a1.5,1.5 0,1 1,2.66 1.39c-4.26,8.15 -5.93,26.28 -5.94,26.46A1.5,1.5 0,0 1,293.43 387.18Z"
android:fillColor="#54565a"/>
<path
android:pathData="M301.21,388.29a1.5,1.5 0,0 1,-1.39 -2.07c0.29,-0.71 7.13,-17.41 10.5,-22.47a1.5,1.5 0,1 1,2.5 1.66c-3.21,4.82 -10.15,21.77 -10.22,21.94A1.5,1.5 0,0 1,301.21 388.29Z"
android:fillColor="#54565a"/>
<path
android:pathData="M165.37,395.51h-0.04a1.5,1.5 0,0 1,-1.47 -1.53c0,-0.16 0.35,-16.03 -1.27,-23.91a1.5,1.5 0,0 1,2.94 -0.6c1.68,8.22 1.34,23.92 1.33,24.58A1.5,1.5 0,0 1,165.37 395.51Z"
android:fillColor="#54565a"/>
<path
android:pathData="M154.82,397.73a1.5,1.5 0,0 1,-1.47 -1.22c-0.04,-0.19 -3.7,-19.56 -6.03,-25.65a1.5,1.5 0,0 1,2.8 -1.07c2.43,6.34 6.03,25.36 6.18,26.17a1.5,1.5 0,0 1,-1.48 1.78Z"
android:fillColor="#54565a"/>
<path
android:pathData="M142.6,397.55a1.5,1.5 0,0 1,-1.33 -0.81c-0.08,-0.15 -7.93,-15.3 -10.25,-18.5a1.5,1.5 0,0 1,2.43 -1.76c2.44,3.38 10.15,18.25 10.48,18.88a1.5,1.5 0,0 1,-1.33 2.19Z"
android:fillColor="#54565a"/>
<path
android:pathData="M160.92,234.52a1.5,1.5 0,0 1,-0.11 -3,102.91 102.91,0 0,0 10.26,-1.27c1.16,-0.24 1.45,-0.65 1.45,-0.7 0,-0.24 -0.65,-0.97 -2.17,-1.26a1.5,1.5 0,0 1,-0.05 -2.94c0.98,-0.22 1.35,-0.75 1.28,-1.14s-0.59,-0.74 -1.6,-0.62c-3.79,0.45 -10.76,1.73 -10.82,1.74a1.5,1.5 0,0 1,-0.54 -2.95c0.29,-0.05 7.12,-1.31 11.01,-1.77a4.91,4.91 0,0 1,3.27 0.65,3.62 3.62,0 0,1 1.64,2.45 3.71,3.71 0,0 1,-0.72 2.85,3.77 3.77,0 0,1 1.7,2.99 3.2,3.2 0,0 1,-1.14 2.43,5.77 5.77,0 0,1 -2.7,1.23 103.79,103.79 0,0 1,-10.65 1.32Q160.98,234.52 160.92,234.52Z"
android:fillColor="#222"/>
<path
android:pathData="M162.4,234.52A1.5,1.5 0,0 1,160.91 233.15L160.08,223.62A1.5,1.5 0,0 1,161.44 222,1.5 1.5,0 0,1 163.07,223.36L163.9,232.89A1.5,1.5 0,0 1,162.54 234.52C162.49,234.52 162.45,234.52 162.4,234.52Z"
android:fillColor="#222"/>
<path
android:pathData="M162.03,229.72A1.5,1.5 0,0 1,160.55 228.46,1.5 1.5,0 0,1 161.79,226.74L170.4,225.35a1.5,1.5 0,0 1,1.72 1.24,1.5 1.5,0 0,1 -1.24,1.72L162.27,229.7A1.51,1.51 0,0 1,162.03 229.72Z"
android:fillColor="#222"/>
<path
android:pathData="M176.74,231.57a1.5,1.5 0,0 1,-1.47 -1.82l2.32,-10.74a1.5,1.5 0,0 1,2.72 -0.5l6.39,9.79a1.5,1.5 0,0 1,-2.51 1.64l-4.43,-6.78 -1.56,7.23A1.5,1.5 0,0 1,176.74 231.57Z"
android:fillColor="#222"/>
<path
android:pathData="M175.19,232.08A1.5,1.5 0,0 1,173.69 230.75,1.5 1.5,0 0,1 175.02,229.09l3.88,-0.43A1.5,1.5 0,0 1,180.56 229.98,1.5 1.5,0 0,1 179.23,231.64L175.35,232.07A1.52,1.52 0,0 1,175.19 232.08Z"
android:fillColor="#222"/>
<path
android:pathData="M183.73,230.96A1.5,1.5 0,0 1,182.24 229.68,1.5 1.5,0 0,1 183.51,227.98l5.78,-0.86a1.5,1.5 0,0 1,1.7 1.26A1.5,1.5 0,0 1,189.73 230.08l-5.78,0.86A1.51,1.51 0,0 1,183.73 230.96Z"
android:fillColor="#222"/>
<path
android:pathData="M177.95,228.72a1.5,1.5 0,0 1,-1.46 -1.18A1.5,1.5 0,0 1,177.63 225.76L183.15,224.55A1.5,1.5 0,0 1,184.93 225.7,1.5 1.5,0 0,1 183.79,227.48L178.27,228.69A1.51,1.51 0,0 1,177.95 228.72Z"
android:fillColor="#222"/>
<path
android:pathData="M187.26,230.28A1.5,1.5 0,0 1,185.78 229l-1.32,-9.14 -1.36,0.22a1.5,1.5 0,1 1,-0.48 -2.96l2.87,-0.46a1.5,1.5 0,0 1,1.72 1.27l1.54,10.65a1.5,1.5 0,0 1,-1.49 1.72Z"
android:fillColor="#222"/>
<path
android:pathData="M195.44,229.08a1.5,1.5 0,0 1,-1.04 -0.42L184.68,219.31a1.5,1.5 0,1 1,2.08 -2.16l6.45,6.21 -1.05,-6.32a1.5,1.5 0,0 1,2.96 -0.49l1.79,10.78a1.5,1.5 0,0 1,-1.48 1.75Z"
android:fillColor="#222"/>
<path
android:pathData="M191.75,218.48a1.5,1.5 0,0 1,-0.25 -2.98l3.62,-0.6 3.96,-0.69a1.5,1.5 0,0 1,0.51 2.96l-3.97,0.69 -0.01,0 -3.62,0.6A1.51,1.51 0,0 1,191.75 218.48Z"
android:fillColor="#222"/>
<path
android:pathData="M199.17,228.22A1.5,1.5 0,0 1,197.69 226.96L195.96,216.44A1.5,1.5 0,0 1,197.2 214.71,1.5 1.5,0 0,1 198.92,215.95L200.65,226.48a1.5,1.5 0,0 1,-1.48 1.74Z"
android:fillColor="#222"/>
<path
android:pathData="M198.56,223.05a1.5,1.5 0,0 1,-0.97 -2.64l8.45,-7.16a1.5,1.5 0,0 1,0.78 -0.34l2.67,-0.34a1.5,1.5 0,0 1,0.38 2.97l-2.23,0.29 -8.12,6.87A1.49,1.49 0,0 1,198.56 223.05Z"
android:fillColor="#222"/>
<path
android:pathData="M209.78,225.46a1.5,1.5 0,0 1,-0.74 -0.19l-8.28,-4.66a1.5,1.5 0,0 1,1.47 -2.62l7.84,4.41 2,-0.28a1.5,1.5 0,1 1,0.41 2.97l-2.5,0.34A1.5,1.5 0,0 1,209.78 225.46Z"
android:fillColor="#222"/>
<path
android:pathData="M197.36,228.64A1.5,1.5 0,0 1,195.88 227.38,1.5 1.5,0 0,1 197.11,225.66l4.14,-0.69A1.5,1.5 0,0 1,202.98 226.2,1.5 1.5,0 0,1 201.74,227.93L197.6,228.62A1.51,1.51 0,0 1,197.36 228.64Z"
android:fillColor="#222"/>
</group>
</vector>

View File

@ -1,333 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M216.51,69.79A150.41,150.41 0,1 1,66.1 220.21,150.41 150.41,0 0,1 216.51,69.79Z"
android:strokeAlpha="0.3"
android:fillColor="#9bb9d4"
android:fillAlpha="0.3"/>
<path
android:pathData="M24.85,406.98L394.83,406.98A243.55,243.55 0,0 0,24.85 366.2Z"
android:fillColor="#99bcab"/>
<path
android:pathData="M76.43,406.98s45.06,-5.97 48.32,-26.06 -30.4,-21.72 -15.2,-40.72 42.35,-23.89 68.95,-21.17c-25.52,3.26 -53.21,20.63 -39.09,33.66s32.58,34.75 10.86,53.21C109.55,405.89 74.26,406.98 76.43,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M131.13,307.62s-50.09,13.85 -54.57,34.61 15.47,10.18 29.73,22.8 3.66,24.84 3.66,24.84 7.74,-19.14 -13.44,-22.8 -45.2,-0.81 -39.91,-17.51S99.78,315.36 131.13,307.62Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M166.97,305.99s-54.97,3.26 -70.04,30.54c13.44,-12.22 31.76,-22.4 81.03,-24.84C168.6,306.4 166.97,305.99 166.97,305.99Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M217.05,329.61s-19.95,14.66 15.88,30.95 47.64,38.68 48.05,47.24c25.25,0 36.24,-0.41 36.24,-0.41s-5.29,-21.58 -29.73,-35.02 -51.31,-17.92 -57.01,-25.65 -6.51,-14.25 3.26,-17.92S217.05,329.61 217.05,329.61Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M242.71,406.98s15.07,-12.22 1.63,-35.83c11.4,10.99 16.7,20.77 13.85,36.65C250.44,407.79 243.32,407.59 242.71,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M337.59,408.2s-7.74,-23.21 -49.68,-41.13c39.91,6.51 75.33,40.72 75.33,40.72Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M394.83,406.98s-40.96,-42.35 -100.68,-65.15C330.53,348.34 361.95,366.26 394.83,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M24.85,381.46s13.03,15.74 41.26,14.12S95.98,379.83 83.49,379.29s-15.2,8.69 -15.2,8.69 1.63,-11.94 16.83,-14.12S110.64,385.8 99.24,393.95 50.91,411.32 24.85,406.98C24.85,387.97 23.22,381.46 24.85,381.46Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M16.3,42.94S34.22,27.87 41.96,22.58s14.25,-7.33 21.17,-5.29S74.94,27.06 69.65,36.01 42.36,60.04 43.18,74.7 54.99,94.24 69.65,95.06l0.81,2.04s-7.33,3.66 -17.51,13.85 -21.99,24.02 -27.28,37.87 3.66,11.4 7.74,1.22c-4.48,13.03 0.81,14.25 7.74,2.04 -2.04,13.44 3.26,9.77 9.77,-3.26 8.96,7.74 15.07,2.04 6.92,-6.92 9.77,-19.14 13.03,-17.92 13.03,-17.92l2.04,25.25 10.99,0.81s-4.07,16.7 -9.36,24.84c-10.99,-5.7 -10.99,-7.33 -19.14,0.41s-10.18,26.06 -3.26,28.5 11.4,-4.07 12.22,-8.55c14.25,2.04 25.65,0.81 40.72,-30.95 23.62,-6.92 26.47,-6.11 26.47,-6.11a56.69,56.69 0,0 1,-6.11 26.88c-6.92,13.03 -10.59,15.07 -4.48,22.4s17.51,13.44 24.43,8.96 -6.52,-15.47 -6.52,-15.47a53.49,53.49 0,0 0,16.29 -34.21c1.63,-21.58 1.22,-61.49 1.22,-61.49s19.55,-10.18 31.35,-23.62 17.92,-24.84 19.95,-31.35 -0.41,-7.33 -6.92,-0.41c5.29,-12.22 4.48,-17.1 -7.33,-5.29C202.8,30.31 197.92,29.09 188.14,40.9l-4.89,7.33s-4.07,-11.4 -6.92,-10.18 -3.26,8.14 0.41,18.73c-6.52,13.44 -20.36,21.99 -20.36,21.99L156.38,73.48l-4.89,-1.22S151.9,35.61 116.47,34.79s-32.98,40.72 -32.98,40.72L70.05,80.4l0.41,6.92s-6.92,0.41 -12.62,-2.04S46.03,73.07 57.43,61.26s24.84,-22.8 21.17,-37.46S62.72,6.69 47.66,13.21 13.45,38.87 13.45,38.87Z"
android:fillColor="#f3edd2"/>
<path
android:pathData="M243.3,93.88l-4.34,7.6 -38.73,-7.24S173.98,217.49 169.09,238.49 157.87,267.8 152.62,272.87c2.71,-14.12 10.86,-48.32 10.86,-48.32l32.21,-138.81Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M312.34,108.09l56.19,14.66 -61.9,231.84L142.4,314.41l5.16,-22.26s27.15,12.22 52.67,20.63 63.8,20.63 63.8,20.63 9.77,-5.97 15.74,-8.14 23.08,-18.73 29.59,-31.22 11.13,-28.23 14.93,-44.25 30.4,-122.43 30.4,-122.43l-41.81,-10.32Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M238.95,101.48l-38.73,-7.24s-27.69,133.29 -31.76,148.22 -10.05,33.12 -35.29,39.91c11.67,9.77 26.88,16.56 59.45,27.42s71.4,23.62 71.4,23.62 19,-7.87 31.49,-20.63A98.52,98.52 0,0 0,314.24 284.82l40.45,-157.45 -41.81,-10.32 -1.36,7.6 -74.93,-15.2Z"
android:fillColor="#fff"/>
<path
android:pathData="M308.68,102.8c-5.7,-7.74 -11.81,-6.92 -11.81,-6.92s6.51,-22.4 -9.37,-25.25 -20.36,19.95 -20.36,19.95 -24.43,-10.99 -30.54,18.73l74.52,15.47S314.38,110.53 308.68,102.8ZM280.99,92.21c-11.4,-3.66 -2.39,-14.77 4.07,-13.85C296.46,79.99 292.39,95.87 280.99,92.21Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M306.23,355.54a1.5,1.5 0,0 1,-0.35 -0.04l-163.7,-39.5a1.5,1.5 0,0 1,-1.11 -1.8l5.14,-22.24a1.5,1.5 0,1 1,2.92 0.68l-4.81,20.8 160.83,38.81 61.53,-228.42L310.74,109.13a1.5,1.5 0,1 1,0.76 -2.9l57.42,15.07a1.5,1.5 0,0 1,1.07 1.84L307.68,354.43A1.5,1.5 0,0 1,306.23 355.54Z"
android:fillColor="#222"/>
<path
android:pathData="M152.31,274.1a1.5,1.5 0,0 1,-1.46 -1.84l43.16,-186.91a1.5,1.5 0,0 1,1.71 -1.14l48.46,8.14a1.5,1.5 0,0 1,-0.5 2.96l-47.06,-7.91L153.77,272.94A1.5,1.5 0,0 1,152.31 274.1Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,126.29a1.5,1.5 0,0 1,-0.31 -0.03L236.29,110.78a1.5,1.5 0,0 1,-1.16 -1.77c1.65,-8.04 4.79,-13.97 9.32,-17.63A19.7,19.7 0,0 1,257.17 87.09a28.75,28.75 0,0 1,8.9 1.49,42.29 42.29,0 0,1 3.44,-8.81 24.34,24.34 0,0 1,5.8 -7.39,14.63 14.63,0 0,1 9.5,-3.5 16.76,16.76 0,0 1,2.95 0.27,13.15 13.15,0 0,1 9.31,6.04 17.72,17.72 0,0 1,2.35 6.86,31.1 31.1,0 0,1 0.16,6.82 42.78,42.78 0,0 1,-0.82 5.58,13.28 13.28,0 0,1 3.73,1.12 19.47,19.47 0,0 1,7.39 6.34,18.4 18.4,0 0,1 3.05,7.29 33.98,33.98 0,0 1,0.6 7.53,46.08 46.08,0 0,1 -0.95,8.39A1.5,1.5 0,0 1,311.12 126.29ZM238.39,108.15 L309.93,123.01c0.61,-3.7 1.75,-13.61 -2.46,-19.32 -4.33,-5.88 -8.81,-6.34 -10.08,-6.34 -0.19,0 -0.3,0.01 -0.33,0.01a1.47,1.47 0,0 1,-1.33 -0.5,1.5 1.5,0 0,1 -0.3,-1.41c0.03,-0.12 3.35,-11.83 -0.91,-18.68a10.14,10.14 0,0 0,-7.28 -4.67,13.76 13.76,0 0,0 -2.42,-0.22c-5.07,0 -9.32,3.11 -12.62,9.25a39.47,39.47 0,0 0,-3.58 9.74,1.5 1.5,0 0,1 -2.09,1.08A25.64,25.64 0,0 0,257.17 90.09C247.68,90.09 241.21,96.33 238.39,108.15Z"
android:fillColor="#222"/>
<path
android:pathData="M284.28,76.81h0a7.04,7.04 0,0 1,0.99 0.07,9.6 9.6,0 0,1 6.29,3.29 8.19,8.19 0,0 1,1.76 5.76,9.03 9.03,0 0,1 -2.61,5.74 8.89,8.89 0,0 1,-6.44 2.59,12.24 12.24,0 0,1 -3.74,-0.62 10.21,10.21 0,0 1,-5.26 -3.38,6.26 6.26,0 0,1 -1.16,-4.8C274.81,81.01 279.75,76.81 284.28,76.81ZM284.27,91.26a5.91,5.91 0,0 0,6.06 -5.54c0.17,-2.43 -1.18,-5.25 -5.48,-5.86a4.03,4.03 0,0 0,-0.57 -0.04h0a7.51,7.51 0,0 0,-4.57 1.94,7.4 7.4,0 0,0 -2.63,4.17 3.28,3.28 0,0 0,0.6 2.55,7.37 7.37,0 0,0 3.76,2.31A9.26,9.26 0,0 0,284.27 91.26Z"
android:fillColor="#222"/>
<path
android:pathData="M264.29,335.18a1.5,1.5 0,0 1,-0.48 -0.08c-13.27,-4.48 -26.13,-8.64 -38.56,-12.66 -21.43,-6.93 -41.68,-13.47 -57.8,-19.76 -17.97,-7.01 -29.32,-13.12 -35.72,-19.23a1.5,1.5 0,0 1,0.68 -2.54c16.02,-3.9 25.33,-12.5 31.11,-28.77 6.41,-18.02 34.68,-157.2 34.96,-158.61a1.5,1.5 0,0 1,1.75 -1.18l38.68,7.33a1.5,1.5 0,0 1,-0.56 2.95l-37.23,-7.05c-1.43,7.01 -7.82,38.35 -14.77,71.1 -10.55,49.71 -17.28,78.81 -20.01,86.47 -3.24,9.12 -7.59,15.98 -13.3,20.99a39.28,39.28 0,0 1,-9.17 5.98,52.06 52.06,0 0,1 -8.01,2.99c6.41,5.25 16.92,10.64 32.68,16.79 16.04,6.26 36.24,12.78 57.63,19.7 12.26,3.96 24.92,8.06 38.01,12.47 40.29,-20.31 48.38,-42.06 56.07,-72.85 7.14,-28.57 29.49,-118.33 32.62,-130.88l-41.3,-10.23a1.5,1.5 0,1 1,0.72 -2.91l42.76,10.59a1.5,1.5 0,0 1,1.1 1.82c-0.25,1.01 -25.33,101.75 -32.98,132.34a212.03,212.03 0,0 1,-6.44 21.87,89.09 89.09,0 0,1 -9.81,19.48c-8.96,13.18 -22.29,23.9 -41.95,33.74A1.5,1.5 0,0 1,264.29 335.18Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,124.78s6.92,-8.14 5.29,-15.88a19.27,19.27 0,0 0,-4.89 -1.22S313.15,117.46 311.12,124.78Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,290.52l-10.18,41.13 -24.84,-4.89S300.12,312.51 311.12,290.52Z"
android:fillColor="#222"/>
<path
android:pathData="M197.92,312.91l-46.83,-7.33 6.51,-8.14"
android:fillColor="#222"/>
<path
android:pathData="M92.18,95.74a1.49,1.49 0,0 1,-0.81 -0.24c-4.3,-2.79 -7.48,-8.31 -8.94,-15.53a44.49,44.49 0,0 1,-0.8 -10.73,46.28 46.28,0 0,1 1.84,-11.14A35.35,35.35 0,0 1,94 41.13a29.28,29.28 0,0 1,9.15 -5.33,34.74 34.74,0 0,1 11.84,-1.96c7.56,0 14.18,1.64 19.66,4.88a31.6,31.6 0,0 1,11.73 12.31,40.65 40.65,0 0,1 4.07,11.36 49.5,49.5 0,0 1,0.93 11.91c-0.32,7.8 -2.44,15.27 -5.8,20.49a1.5,1.5 0,1 1,-2.52 -1.63c5.96,-9.24 7.93,-27.43 0.7,-40.69 -3.89,-7.13 -12.03,-15.63 -28.76,-15.63 -14.04,0 -24.49,8.06 -28.65,22.12a43.1,43.1 0,0 0,-0.97 20.42c1.28,6.33 4.07,11.29 7.64,13.61a1.5,1.5 0,0 1,-0.82 2.76Z"
android:fillColor="#54565a"/>
<path
android:pathData="M42.78,162.46a2.86,2.86 0,0 1,-1.19 -0.25c-0.9,-0.41 -2,-1.48 -2.24,-4.23 -1.84,2.48 -3.61,3.74 -5.27,3.74A3.95,3.95 0,0 1,30.64 160.34a3.9,3.9 0,0 1,-0.66 -2.08,5.15 5.15,0 0,1 -3.95,1.45 3.68,3.68 0,0 1,-2.55 -1.59,5.74 5.74,0 0,1 -0.94,-2.98c-0.32,-5.85 8,-21.53 24.54,-40.17A114.96,114.96 0,0 1,60.44 102.21a131.14,131.14 0,0 1,12.5 -9,104.75 104.75,0 0,1 12.93,-7.13 1.5,1.5 0,0 1,1.2 2.75h0A104.11,104.11 0,0 0,74.5 95.79a120.94,120.94 0,0 0,-25.18 21.17,157.85 157.85,0 0,0 -18.42,24.7c-4.11,7.05 -5.46,11.5 -5.36,13.31 0.05,0.99 0.41,1.7 0.88,1.76s1.32,-0.3 2.35,-1.49a18.84,18.84 0,0 0,3.21 -5.97q0.2,-0.59 0.42,-1.22a1.5,1.5 0,0 1,2.84 0.96q-0.21,0.65 -0.44,1.27A41.7,41.7 0,0 0,33.09 156.49c-0.26,1.62 -0.04,2.06 -0.01,2.11a2.38,2.38 0,0 0,1 0.11c0.39,0 1.56,-0.63 3.21,-3.02a25.85,25.85 0,0 0,3.23 -6.51,1.5 1.5,0 0,1 2.88,0.85 25.88,25.88 0,0 0,-1.1 7.04,4.17 4.17,0 0,0 0.52,2.4c0.28,-0.05 1.2,-0.57 2.5,-2.53 3.86,-5.78 4.34,-8.61 4.37,-8.82a1.47,1.47 0,0 1,1.07 -1.31,1.51 1.51,0 0,1 1.63,0.57c0.72,0.98 3.06,3.56 5.16,3.74a2.34,2.34 0,0 0,2.29 -1.19c0.82,-1.64 -0.4,-4.53 -3.26,-7.71a1.5,1.5 0,0 1,-0.25 -1.63A48.23,48.23 0,0 1,72.47 121.29a59.14,59.14 0,0 1,9.6 -5.53,66.96 66.96,0 0,1 9.13,-3.41 1.5,1.5 0,0 1,0.84 2.88C83.24,117.81 67.44,124.56 59.48,140.96a16.58,16.58 0,0 1,3.23 5.44,6.34 6.34,0 0,1 -0.17,4.86 5.06,5.06 0,0 1,-2.29 2.28,5.61 5.61,0 0,1 -2.94,0.57 9.13,9.13 0,0 1,-5.23 -2.66q-0.11,-0.1 -0.22,-0.2a40.77,40.77 0,0 1,-4.04 7.36,11.31 11.31,0 0,1 -2.84,3.1A3.89,3.89 0,0 1,42.78 162.46Z"
android:fillColor="#54565a"/>
<path
android:pathData="M55.53,206.42a8.7,8.7 0,0 1,-6.57 -3.44,10.19 10.19,0 0,1 -2.15,-6.3 25.51,25.51 0,0 1,0.92 -7.44,39.97 39.97,0 0,1 6.06,-13.12c2.14,-2.81 3.83,-5.03 5.5,-6.32a6.08,6.08 0,0 1,6.24 -0.97,53.45 53.45,0 0,1 7.71,3.74 54.88,54.88 0,0 0,2.93 -5.54,98.52 98.52,0 0,0 6.66,-20.45 70.45,70.45 0,0 0,1.51 -21.49,36.56 36.56,0 0,0 -1.46,-7.82 1.5,1.5 0,1 1,2.83 -1.01,38.28 38.28,0 0,1 1.61,8.4 65.39,65.39 0,0 1,0.2 9.7,80.18 80.18,0 0,1 -1.75,12.85 101.35,101.35 0,0 1,-6.93 21.18,46.35 46.35,0 0,1 -3.91,7.07 1.5,1.5 0,0 1,-2 0.4,57.46 57.46,0 0,0 -8.41,-4.21 3.1,3.1 0,0 0,-3.4 0.52,34.76 34.76,0 0,0 -4.95,5.76 37.31,37.31 0,0 0,-5.54 12.06,22.56 22.56,0 0,0 -0.83,6.55 7.33,7.33 0,0 0,1.44 4.49c1.1,1.29 2.87,2.73 5.08,2.3a6.53,6.53 0,0 0,3.53 -2.29A17.65,17.65 0,0 0,63.07 195.02a1.5,1.5 0,0 1,1.52 -1.02c16.59,1.05 19.62,-1.94 28.58,-13.54 8.82,-11.42 10.86,-16.57 10.91,-16.71a1.48,1.48 0,0 1,0.89 -0.89c0.21,-0.08 5.31,-1.95 12.02,-3.68a101.42,101.42 0,0 1,10.96 -2.24,44.69 44.69,0 0,1 10.81,-0.41 1.5,1.5 0,1 1,-0.32 2.98c-4.92,-0.54 -12.07,0.35 -20.68,2.57 -5.27,1.36 -9.61,2.83 -11.16,3.38 -0.81,1.77 -3.54,7.09 -11.06,16.83 -4.58,5.93 -7.92,9.99 -12.47,12.36 -4.16,2.16 -9.14,2.86 -17.54,2.4a19.55,19.55 0,0 1,-3.4 5.97,9.46 9.46,0 0,1 -5.22,3.26A7.2,7.2 0,0 1,55.53 206.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M141.47,219.73a23.29,23.29 0,0 1,-4.52 -0.5,25.35 25.35,0 0,1 -12.15,-6.3 44.27,44.27 0,0 1,-6.99 -8.46,7.1 7.1,0 0,1 -0.76,-6.31 38,38 0,0 1,3.21 -6.88,86.4 86.4,0 0,0 5,-10.45 55.85,55.85 0,0 0,3.43 -22.66,1.5 1.5,0 0,1 2.99,-0.28 49.37,49.37 0,0 1,-0.03 7.44,58.25 58.25,0 0,1 -3.59,16.59 90.16,90.16 0,0 1,-5.16 10.79c-2.82,5.21 -4.11,7.82 -2.59,10.1 3.82,5.72 8.85,11.8 17.24,13.48a16.73,16.73 0,0 0,5.38 0.35,3.13 3.13,0 0,0 2.39,-1.19c0.48,-0.82 0.31,-2.23 -0.49,-4.09a39.7,39.7 0,0 0,-6.28 -9.18,1.5 1.5,0 0,1 -0.03,-1.91c12.19,-15.17 13.86,-24.42 15.97,-40.79 2.14,-16.57 1.05,-47.97 -0.55,-64.27a1.5,1.5 0,1 1,2.99 -0.29c0.87,8.88 1.51,20.97 1.7,32.33 0.16,9.51 0.09,22.89 -1.17,32.62 -1.02,7.89 -2.06,14.96 -4.45,21.69 -2.32,6.5 -5.85,12.59 -11.39,19.63 6.12,7.38 8.18,12.55 6.28,15.79C146.82,218.8 144.63,219.73 141.47,219.73Z"
android:fillColor="#54565a"/>
<path
android:pathData="M156.24,107.15a1.5,1.5 0,0 1,-1.24 -2.34l8.42,-12.49A1.5,1.5 0,0 1,165.91 94l-5.22,7.75q0.53,-0.32 1.12,-0.69a121.84,121.84 0,0 0,18.11 -14.68c17.48,-16.62 23.68,-30.72 25.72,-35.35a13.35,13.35 0,0 0,1.07 -3.5,3.53 3.53,0 0,0 -0.01,-1.32c-0.48,0.14 -2.12,0.88 -5.28,4.98a1.5,1.5 0,0 1,-2.47 -1.69,29.14 29.14,0 0,0 3.18,-7.06c0.52,-1.94 0.36,-2.88 0.24,-3.13A4.87,4.87 0,0 0,199.91 40.53a39.99,39.99 0,0 0,-6.15 6.1,1.5 1.5,0 0,1 -2.31,-1.92 35.41,35.41 0,0 0,4.88 -7.5,7.94 7.94,0 0,0 0.87,-2.97 6.06,6.06 0,0 0,-1.48 0.92c-4.91,3.88 -10.75,12.6 -10.81,12.69a1.5,1.5 0,0 1,-2.24 0.29,17.51 17.51,0 0,1 -4.2,-6.28 2.03,2.03 0,0 0,-2.17 -1.43c-0.97,0.24 -1.44,1.8 -1.19,3.97a40.04,40.04 0,0 0,2.85 11.21,1.5 1.5,0 0,1 -0.01,1.29 62.64,62.64 0,0 1,-7.1 10.81,57.2 57.2,0 0,1 -8.65,8.72 40.1,40.1 0,0 1,-11.98 6.76,1.5 1.5,0 1,1 -0.98,-2.84c8.64,-2.97 15.25,-9.54 19.27,-14.52a63.13,63.13 0,0 0,6.43 -9.63,44.51 44.51,0 0,1 -2.82,-11.44 8.72,8.72 0,0 1,0.58 -4.82,4.34 4.34,0 0,1 2.87,-2.41 4.56,4.56 0,0 1,3.38 0.53,5.39 5.39,0 0,1 2.31,2.73 14.62,14.62 0,0 0,2.23 3.85c1.99,-2.8 6.36,-8.65 10.37,-11.81a8.01,8.01 0,0 1,2.71 -1.51,2.72 2.72,0 0,1 2.81,0.61 3.34,3.34 0,0 1,0.81 2.71,9.78 9.78,0 0,1 -0.6,2.55 6.97,6.97 0,0 1,1.86 -0.75,3.18 3.18,0 0,1 2.65,0.44 3.49,3.49 0,0 1,1.34 2.66,10.17 10.17,0 0,1 -0.32,3.26q-0.11,0.47 -0.26,0.96a3.34,3.34 0,0 1,3.39 -0.17c0.76,0.45 1.63,1.47 1.48,3.76a15.13,15.13 0,0 1,-1.35 4.91,96.09 96.09,0 0,1 -8.06,14.78 126.49,126.49 0,0 1,-18.34 21.53c-16.63,15.81 -24.96,18.43 -25.31,18.54A1.5,1.5 0,0 1,156.24 107.15Z"
android:fillColor="#54565a"/>
<path
android:pathData="M156.25,80.54a1.5,1.5 0,0 1,-1.5 -1.44l-0.21,-5.15 -4.06,-0.2a1.5,1.5 0,0 1,0.15 -3l5.43,0.27a1.5,1.5 0,0 1,1.42 1.44l0.27,6.51a1.5,1.5 0,0 1,-1.44 1.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M70.19,97.92a1.5,1.5 0,0 1,-1.5 -1.44c0,-0.06 -0.27,-6.65 -0.27,-15.81a1.5,1.5 0,0 1,0.65 -1.23c3.72,-2.58 13.15,-4.75 13.55,-4.84a1.5,1.5 0,0 1,0.67 2.92c-2.38,0.55 -8.8,2.25 -11.86,3.98 0.01,8.65 0.27,14.79 0.27,14.85a1.5,1.5 0,0 1,-1.44 1.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M79.83,151.44a24.42,24.42 0,0 1,-7.1 -1.2,1.5 1.5,0 0,1 -1.06,-1.43c0,-4.77 -1.61,-24.92 -1.62,-25.13a1.5,1.5 0,1 1,2.99 -0.24c0.06,0.78 1.44,18 1.62,24.23a18.96,18.96 0,0 0,5.97 0.74,6.9 6.9,0 0,0 2.21,-0.42l-0.02,0.01 1.34,2.68a8.71,8.71 0,0 1,-3.06 0.7Q80.48,151.44 79.83,151.44Z"
android:fillColor="#54565a"/>
<path
android:pathData="M119.46,44.15A27.42,27.42 0,0 1,138.85 90.97,27.42 27.42,0 1,1 108.79,46.31 27.25,27.25 0,0 1,119.46 44.15ZM119.46,96A24.42,24.42 0,1 0,95.04 71.58,24.45 24.45,0 0,0 119.46,96Z"
android:fillColor="#54565a"/>
<path
android:pathData="M141.04,107.68a1.5,1.5 0,0 1,1.49 1.32l3.53,28.5a1.5,1.5 0,0 1,-1.23 1.66l-33.66,5.97a1.5,1.5 0,0 1,-1.76 -1.38l-1.9,-30.13a1.5,1.5 0,0 1,1.3 -1.58l32.03,-4.34A1.5,1.5 0,0 1,141.04 107.68ZM142.91,136.45l-3.17,-25.59 -29.15,3.95 1.71,27.06Z"
android:fillColor="#222"/>
<path
android:pathData="M118.01,115.6h0c1.95,0 3.43,1.87 3.51,4.44a5.8,5.8 0,0 1,-0.88 3.35,4.28 4.28,0 0,1 -3.39,1.94c-0.14,0.01 -0.28,0.01 -0.42,0.01a3.75,3.75 0,0 1,-3.99 -2.82,5.21 5.21,0 0,1 0.67,-3.71 7.1,7.1 0,0 1,2.98 -2.84A3.4,3.4 0,0 1,118.01 115.6ZM116.82,122.34c0.08,0 0.15,0 0.23,-0.01 0.76,-0.05 1.23,-0.54 1.4,-1.46a3.43,3.43 0,0 0,-0.09 -1.63,1.27 1.27,0 0,0 -0.37,-0.64 0.59,0.59 0,0 0,-0.17 0.06,3.48 3.48,0 0,0 -2.07,3.18C115.79,121.98 115.87,122.35 116.82,122.35Z"
android:fillColor="#373a40"/>
<path
android:pathData="M125.03,120.99a1.5,1.5 0,0 1,-1.49 -1.3A1.5,1.5 0,0 1,124.83 118L137.04,116.38A1.5,1.5 0,0 1,138.73 117.66a1.5,1.5 0,0 1,-1.29 1.68L125.23,120.98A1.51,1.51 0,0 1,125.03 120.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M117.87,126.85h0a3.73,3.73 0,0 1,1.07 0.16,6.24 6.24,0 0,1 3.08,1.84 3.66,3.66 0,0 1,0.84 2.91c-0.35,2.4 -2.97,4.43 -5.71,4.43a3.32,3.32 0,0 1,-2.95 -1.67,5.78 5.78,0 0,1 0.27,-5.49A3.96,3.96 0,0 1,117.87 126.85ZM117.15,133.19a2.9,2.9 0,0 0,2.74 -1.87c0.12,-0.79 -1.36,-1.3 -1.81,-1.44a0.74,0.74 0,0 0,-0.21 -0.03c-0.37,0 -0.68,0.47 -0.8,0.68a2.94,2.94 0,0 0,-0.27 2.49C116.85,133.11 116.9,133.19 117.15,133.19Z"
android:fillColor="#373a40"/>
<path
android:pathData="M125.3,132.93A1.5,1.5 0,0 1,123.82 131.69,1.5 1.5,0 0,1 125.04,129.96L135.9,128.06A1.5,1.5 0,0 1,137.63 129.28a1.5,1.5 0,0 1,-1.22 1.74L125.56,132.91A1.51,1.51 0,0 1,125.3 132.93Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.29,205.13a13.44,13.44 0,0 1,-1.03 -4.35,37.91 37.91,0 0,1 1.19,-12.69A34.61,34.61 0,0 1,55.46 180.21a40.7,40.7 0,0 1,3.84 -5.95,35.92 35.92,0 0,1 4.77,-5.15 1.5,1.5 0,0 1,1.93 2.3,33.78 33.78,0 0,0 -4.38,4.76 34.67,34.67 0,0 0,-6.26 12.64,35.2 35.2,0 0,0 -1.14,11.44 11.78,11.78 0,0 0,0.76 3.57l-0.01,-0.01Z"
android:fillColor="#54565a"/>
<path
android:pathData="M142.06,215.86a25.17,25.17 0,0 1,-12.35 -3.03c-6.55,-3.7 -12.02,-13.74 -12.26,-14.17a1.5,1.5 0,0 1,2.64 -1.43h0c0.05,0.1 5.3,9.71 11.09,12.98 6.28,3.55 13.28,2.64 15.28,2.27a1.5,1.5 0,0 1,0.54 2.95A28.31,28.31 0,0 1,142.06 215.86Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.89,124.75a6.41,6.41 0,0 1,-4.32 -1.69A22.09,22.09 0,0 1,44.76 118.66a1.5,1.5 0,0 1,2.54 -1.59,19.35 19.35,0 0,0 3.24,3.74c0.94,0.82 3.12,2.73 9.97,-3.26 3.59,-3.14 5.36,-5.51 5.42,-7.23 0.02,-0.57 -0.11,-1.48 -1.42,-2.79L61.26,104.26a1.5,1.5 0,1 1,2.12 -2.12l3.26,3.26a6.68,6.68 0,0 1,2.3 5.01,8.27 8.27,0 0,1 -1.77,4.5 30.06,30.06 0,0 1,-4.67 4.89c-3.23,2.82 -5.95,4.4 -8.32,4.83A7.26,7.26 0,0 1,52.89 124.75Z"
android:fillColor="#54565a"/>
<path
android:pathData="M56.89,122.35A1.5,1.5 0,0 1,55.76 121.84L49.52,114.78a1.5,1.5 0,0 1,0.13 -2.12,1.5 1.5,0 0,1 2.12,0.13L58.01,119.85A1.5,1.5 0,0 1,56.89 122.35Z"
android:fillColor="#54565a"/>
<path
android:pathData="M63.94,116.65a1.5,1.5 0,0 1,-1.04 -0.42l-7.6,-7.33A1.5,1.5 0,0 1,55.26 106.78,1.5 1.5,0 0,1 57.39,106.74l7.6,7.33A1.5,1.5 0,0 1,63.94 116.65Z"
android:fillColor="#54565a"/>
<path
android:pathData="M73.99,197a1.49,1.49 0,0 1,-1.02 -0.4,6.74 6.74,0 0,1 -2.35,-4.55 7.36,7.36 0,0 1,1.32 -4.47,21 21,0 0,1 7.96,-6.59 22.23,22.23 0,0 1,4.32 -1.72,5.84 5.84,0 0,1 3.66,-0.09 21.27,21.27 0,0 1,5.33 3.54,1.5 1.5,0 0,1 -2.04,2.2h0a18.48,18.48 0,0 0,-4.44 -2.97,4.74 4.74,0 0,0 -1.99,0.29 20.64,20.64 0,0 0,-3.81 1.6c-3.05,1.63 -5.54,3.75 -6.65,5.66a3.5,3.5 0,0 0,0.73 4.89,1.5 1.5,0 0,1 -1.02,2.6Z"
android:fillColor="#54565a"/>
<path
android:pathData="M87.02,190.49a1.5,1.5 0,0 1,-1.11 -0.49l-5.7,-6.24a1.5,1.5 0,0 1,0.1 -2.12,1.5 1.5,0 0,1 2.12,0.1l5.7,6.24A1.5,1.5 0,0 1,87.02 190.49Z"
android:fillColor="#54565a"/>
<path
android:pathData="M80.5,195.1a1.5,1.5 0,0 1,-1.15 -0.54L73.65,187.78A1.5,1.5 0,0 1,73.84 185.67a1.5,1.5 0,0 1,2.11 0.18l5.7,6.79A1.5,1.5 0,0 1,80.5 195.1Z"
android:fillColor="#54565a"/>
<path
android:pathData="M147.29,190.22q-0.07,0 -0.14,-0.01a6.51,6.51 0,0 1,-4.83 -2.32c-1.88,-2.46 -1.22,-6.14 -0.65,-9.38l0.07,-0.38c0.43,-2.46 2.18,-10.53 6.47,-11a32.77,32.77 0,0 1,6.62 0.28,1.5 1.5,0 0,1 -0.42,2.97 30.31,30.31 0,0 0,-5.87 -0.27c-0.41,0.05 -1.18,0.71 -2,2.42a24.46,24.46 0,0 0,-1.84 6.13l-0.07,0.38c-0.47,2.64 -1,5.62 0.08,7.03a3.66,3.66 0,0 0,2.72 1.15,1.5 1.5,0 0,1 -0.13,2.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M151.09,184.79a1.5,1.5 0,0 1,-0.38 -0.05L142.3,182.57A1.5,1.5 0,0 1,141.22 180.74,1.5 1.5,0 0,1 143.05,179.66L151.46,181.83a1.5,1.5 0,0 1,-0.37 2.95Z"
android:fillColor="#54565a"/>
<path
android:pathData="M152.99,177.46a1.51,1.51 0,0 1,-0.23 -0.02L144.07,176.08A1.5,1.5 0,0 1,142.82 174.37,1.5 1.5,0 0,1 144.53,173.12L153.22,174.47a1.5,1.5 0,0 1,-0.23 2.98Z"
android:fillColor="#54565a"/>
<path
android:pathData="M69.92,89.23A29.91,29.91 0,0 1,57.96 87a14.31,14.31 0,0 1,-7.32 -6.58,12.53 12.53,0 0,1 -0.81,-8.43 25.66,25.66 0,0 1,5.07 -9.89c2.58,-3.32 5.65,-6.56 8.61,-9.7C68.53,47.09 73.73,41.59 76.29,35.92c2.79,-6.18 2.18,-11.87 -1.91,-17.93a14.01,14.01 0,0 0,-11.37 -6.22c-8.65,-0.52 -18.61,4.3 -25.45,8.44A97.89,97.89 0,0 0,15.4 38.49a1.5,1.5 0,0 1,-2.12 0.15A1.5,1.5 0,0 1,13.13 36.52,101.05 101.05,0 0,1 36.01,17.64 73.43,73.43 0,0 1,49.85 10.98a35.04,35.04 0,0 1,13.34 -2.21,18.57 18.57,0 0,1 7.64,2.03 16.7,16.7 0,0 1,6.04 5.5c4.67,6.91 5.38,13.73 2.16,20.85C76.26,43.28 70.88,48.97 65.68,54.46c-2.92,3.09 -5.93,6.28 -8.43,9.48 -4.49,5.78 -5.89,11.16 -3.93,15.16 2.18,4.46 8.38,7.12 16.59,7.12a1.5,1.5 0,0 1,0 3Z"
android:fillColor="#54565a"/>
<path
android:pathData="M68.06,96.08a34.17,34.17 0,0 1,-11.58 -1.86,22.54 22.54,0 0,1 -9.56,-6.36A20.17,20.17 0,0 1,42.48 79.15a24,24 0,0 1,-0.1 -10.17c1.56,-7.97 8.47,-15.07 15.14,-21.93C62.88,41.54 67.95,36.33 69.58,31.34c1.26,-3.87 0.76,-7.05 -1.45,-9.19a11.61,11.61 0,0 0,-7.4 -2.81A29.63,29.63 0,0 0,48.98 21.27C41.36,24 33.91,29.69 29,33.99a104.12,104.12 0,0 0,-8.98 8.84,1.5 1.5,0 0,1 -2.12,0.15 1.5,1.5 0,0 1,-0.15 -2.12A104.99,104.99 0,0 1,26.98 31.76,91.8 91.8,0 0,1 36.6,24.34 53.28,53.28 0,0 1,47.97 18.45a32.62,32.62 0,0 1,12.98 -2.1,14.52 14.52,0 0,1 9.28,3.65C73.26,22.95 74.04,27.31 72.43,32.27c-1.84,5.65 -7.14,11.1 -12.75,16.87 -6.37,6.55 -12.96,13.32 -14.35,20.41 -1.23,6.26 0.14,12.06 3.85,16.34 4.43,5.09 11.95,7.62 21.2,7.12a1.5,1.5 0,0 1,0.16 3Q69.28,96.08 68.06,96.08Z"
android:fillColor="#54565a"/>
<path
android:pathData="M90.28,92.62L77.25,92.62l9.23,-4.89Z"
android:fillColor="#54565a"/>
<path
android:pathData="M86.21,132.79s10.86,-8.69 5.7,-19.27c-4.89,1.9 -7.33,2.71 -7.33,2.71S86.75,125.46 86.21,132.79Z"
android:fillColor="#54565a"/>
<path
android:pathData="M138.6,157.77h-8.69v14.39S139.96,168.36 138.6,157.77Z"
android:fillColor="#54565a"/>
<path
android:pathData="M123.94,47.01c-19.27,-1.63 -30.4,15.2 -27.69,27.42s18.46,14.93 28.23,6.51c0.26,4.66 1.94,7.47 4.13,8.96 5.18,-4.25 7.32,-8.54 9.44,-14.39 2.17,-5.97 -0.27,-16.02 -5.16,-20.09s-3.53,-6.51 2.17,-1.63 7.87,14.12 6.51,21.45c-1.28,6.91 -4.62,12.31 -9.66,15.93a9.51,9.51 0,0 0,4.5 -0.45c4.07,-3.26 7.34,-7.6 8.96,-16.02C146.74,67.64 143.21,48.64 123.94,47.01Z"
android:fillColor="#222"/>
<path
android:pathData="M66.93,87.46s-6.79,0.54 -7.06,5.97c7.33,1.63 10.32,1.63 10.32,1.63v-7.33Z"
android:fillColor="#54565a"/>
<path
android:pathData="M55.53,93.57a1.5,1.5 0,0 1,-0.39 -0.05A1.5,1.5 0,0 1,54.08 91.69L55.17,87.61A1.5,1.5 0,0 1,57 86.55,1.5 1.5,0 0,1 58.06,88.39L56.98,92.46A1.5,1.5 0,0 1,55.53 93.57Z"
android:fillColor="#54565a"/>
<path
android:pathData="M49.56,90.04a1.49,1.49 0,0 1,-0.85 -0.27,1.5 1.5,0 0,1 -0.38,-2.09L50.77,84.16A1.5,1.5 0,0 1,52.86 83.78,1.5 1.5,0 0,1 53.23,85.87L50.79,89.4A1.5,1.5 0,0 1,49.56 90.04Z"
android:fillColor="#54565a"/>
<path
android:pathData="M44.94,83.26a1.5,1.5 0,0 1,-1.2 -0.6A1.5,1.5 0,0 1,44.04 80.56L46.21,78.93a1.5,1.5 0,0 1,2.1 0.3,1.5 1.5,0 0,1 -0.3,2.1L45.84,82.96A1.49,1.49 0,0 1,44.94 83.26Z"
android:fillColor="#54565a"/>
<path
android:pathData="M50.1,75.93q-0.08,0 -0.15,-0.01L47.24,75.65A1.5,1.5 0,0 1,45.89 74.01,1.5 1.5,0 0,1 47.53,72.66l2.71,0.27a1.5,1.5 0,0 1,-0.15 2.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.81,67.78A1.49,1.49 0,0 1,51.93 67.5L48.95,65.32a1.5,1.5 0,0 1,-0.33 -2.1,1.5 1.5,0 0,1 2.1,-0.33L53.7,65.07a1.5,1.5 0,0 1,-0.88 2.71Z"
android:fillColor="#54565a"/>
<path
android:pathData="M59.33,59.64a1.49,1.49 0,0 1,-0.93 -0.32l-3.8,-2.99A1.5,1.5 0,0 1,54.35 54.23,1.5 1.5,0 0,1 56.46,53.97l3.8,2.99A1.5,1.5 0,0 1,59.33 59.64Z"
android:fillColor="#54565a"/>
<path
android:pathData="M66.39,52.58A1.5,1.5 0,0 1,65.33 52.14L62.07,48.88a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L67.45,50.02A1.5,1.5 0,0 1,66.39 52.58Z"
android:fillColor="#54565a"/>
<path
android:pathData="M73.45,43.89a1.5,1.5 0,0 1,-1.06 -0.44L69.4,40.47a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L74.51,41.33A1.5,1.5 0,0 1,73.45 43.89Z"
android:fillColor="#54565a"/>
<path
android:pathData="M74.26,34.66a1.5,1.5 0,0 1,-0.58 -0.12L70.43,33.19A1.5,1.5 0,0 1,69.62 31.23,1.5 1.5,0 0,1 71.58,30.42L74.84,31.78a1.5,1.5 0,0 1,-0.58 2.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M71.82,26.25A1.5,1.5 0,0 1,70.36 25.11,1.5 1.5,0 0,1 71.45,23.29l3.26,-0.81A1.5,1.5 0,0 1,76.53 23.57,1.5 1.5,0 0,1 75.44,25.39L72.18,26.2A1.5,1.5 0,0 1,71.82 26.25Z"
android:fillColor="#54565a"/>
<path
android:pathData="M68.83,21.63a1.49,1.49 0,0 1,-0.79 -0.22,1.5 1.5,0 0,1 -0.49,-2.06L69.72,15.82a1.5,1.5 0,0 1,2.06 -0.49A1.5,1.5 0,0 1,72.28 17.39L70.11,20.92A1.5,1.5 0,0 1,68.83 21.63Z"
android:fillColor="#54565a"/>
<path
android:pathData="M62.59,18.92A1.51,1.51 0,0 1,62.41 18.9,1.5 1.5,0 0,1 61.1,17.24L61.64,12.63A1.5,1.5 0,0 1,63.31 11.31,1.5 1.5,0 0,1 64.62,12.98L64.08,17.59A1.5,1.5 0,0 1,62.59 18.92Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.54,19.46a1.5,1.5 0,0 1,-1.4 -0.96L49.79,14.97A1.5,1.5 0,0 1,50.65 13.03,1.5 1.5,0 0,1 52.59,13.89L53.94,17.42a1.5,1.5 0,0 1,-1.4 2.04Z"
android:fillColor="#54565a"/>
<path
android:pathData="M42.5,22.99A1.5,1.5 0,0 1,41.32 22.41L39.42,19.97a1.5,1.5 0,0 1,0.26 -2.1,1.5 1.5,0 0,1 2.1,0.26l1.9,2.44A1.5,1.5 0,0 1,42.5 22.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M36.53,27.06A1.5,1.5 0,0 1,35.47 26.62L33.02,24.18a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L37.58,24.5A1.5,1.5 0,0 1,36.53 27.06Z"
android:fillColor="#54565a"/>
<path
android:pathData="M28.92,33.03a1.49,1.49 0,0 1,-0.9 -0.3L24.77,30.29A1.5,1.5 0,0 1,24.47 28.19,1.5 1.5,0 0,1 26.57,27.89L29.83,30.33a1.5,1.5 0,0 1,-0.9 2.7Z"
android:fillColor="#54565a"/>
<path
android:pathData="M22.95,38.74a1.5,1.5 0,0 1,-1.06 -0.44L18.91,35.31a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L24.01,36.17A1.5,1.5 0,0 1,22.95 38.74Z"
android:fillColor="#54565a"/>
<path
android:pathData="M208.64,120.43a1.5,1.5 0,0 1,0.28 0.03l26.88,5.16a1.5,1.5 0,0 1,1.18 1.8l-6.24,27.69a1.5,1.5 0,0 1,-1.72 1.15l-25.52,-4.34a1.5,1.5 0,0 1,-1.23 -1.73l4.89,-28.5a1.5,1.5 0,0 1,1.48 -1.25ZM233.71,128.27L209.86,123.7l-4.37,25.52 22.64,3.85Z"
android:fillColor="#222"/>
<path
android:pathData="M323.47,150.31a1.51,1.51 0,0 1,-0.28 -0.03L251.25,136.71a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L323.75,147.34a1.5,1.5 0,0 1,-0.28 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M318.05,163.88a1.51,1.51 0,0 1,-0.31 -0.03L248.24,149.19A1.5,1.5 0,0 1,247.08 147.41,1.5 1.5,0 0,1 248.86,146.26l69.5,14.66A1.5,1.5 0,0 1,318.05 163.88Z"
android:fillColor="#222"/>
<path
android:pathData="M220.04,146.24a1.5,1.5 0,0 1,-1.33 -0.81l-4.89,-9.5a1.5,1.5 0,1 1,2.67 -1.37l4.14,8.06 26.31,-16.25a1.5,1.5 0,0 1,1.58 2.55l-27.69,17.1A1.5,1.5 0,0 1,220.04 146.24Z"
android:fillColor="#ff4438"/>
<path
android:pathData="M195.34,184.23a1.5,1.5 0,0 1,0.28 0.03l26.88,5.16a1.5,1.5 0,0 1,1.18 1.8l-6.24,27.69a1.5,1.5 0,0 1,-1.72 1.15L190.2,215.71a1.5,1.5 0,0 1,-1.23 -1.73l4.89,-28.5a1.5,1.5 0,0 1,1.48 -1.25ZM220.41,192.07 L196.56,187.49L192.18,213.01l22.64,3.85Z"
android:fillColor="#222"/>
<path
android:pathData="M310.17,214.11a1.51,1.51 0,0 1,-0.28 -0.03L237.95,200.51a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L310.45,211.13a1.5,1.5 0,0 1,-0.28 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M304.74,227.68a1.51,1.51 0,0 1,-0.31 -0.03L234.93,212.99A1.5,1.5 0,0 1,233.78 211.21,1.5 1.5,0 0,1 235.55,210.05l69.5,14.66A1.5,1.5 0,0 1,304.74 227.68Z"
android:fillColor="#222"/>
<path
android:pathData="M206.74,210.03a1.5,1.5 0,0 1,-1.33 -0.81l-4.89,-9.5a1.5,1.5 0,1 1,2.67 -1.37l4.14,8.06 26.31,-16.25a1.5,1.5 0,0 1,1.58 2.55l-27.69,17.1A1.5,1.5 0,0 1,206.74 210.03Z"
android:fillColor="#ff4438"/>
<path
android:pathData="M180.41,249.65a1.5,1.5 0,0 1,0.31 0.03c0.14,0.03 14.27,3.03 24.24,5.72a1.5,1.5 0,0 1,1.11 1.5,40.23 40.23,0 0,1 -2.13,11.25 55.51,55.51 0,0 1,-4.1 9.24,56.62 56.62,0 0,1 -5.8,8.66 1.5,1.5 0,0 1,-1.57 0.46c-0.79,-0.23 -19.44,-5.76 -24.1,-7.95a1.5,1.5 0,0 1,-0.56 -2.26,65.1 65.1,0 0,0 8.52,-16.66 79.01,79.01 0,0 0,2.61 -8.82A1.5,1.5 0,0 1,180.41 249.65ZM203.01,257.99c-7.88,-2.08 -17.83,-4.27 -21.48,-5.06 -0.4,1.59 -1.17,4.35 -2.35,7.69a81.36,81.36 0,0 1,-3.6 8.61,58.76 58.76,0 0,1 -4.25,7.34c5.38,2.09 17.53,5.75 21.04,6.8a58.26,58.26 0,0 0,4.89 -7.48C199.62,271.58 202.48,265.07 203,257.99Z"
android:fillColor="#222"/>
<path
android:pathData="M287.37,284.96a1.5,1.5 0,0 1,-0.32 -0.04L218.91,269.99A1.5,1.5 0,0 1,217.76 268.21,1.5 1.5,0 0,1 219.55,267.06L287.69,281.99a1.5,1.5 0,0 1,-0.32 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M277.59,301.79a1.5,1.5 0,0 1,-0.42 -0.06L212.56,283A1.5,1.5 0,0 1,211.54 281.14,1.5 1.5,0 0,1 213.4,280.12l64.61,18.73a1.5,1.5 0,0 1,-0.42 2.94Z"
android:fillColor="#222"/>
<path
android:pathData="M158.96,30.44A4.96,4.96 0,1 1,154 35.4,4.97 4.97,0 0,1 158.96,30.44ZM158.96,37.36A1.96,1.96 0,1 0,157 35.4,1.96 1.96,0 0,0 158.96,37.36Z"
android:fillColor="#54565a"/>
<path
android:pathData="M253.64,50.06A4.55,4.55 0,1 1,249.08 54.61,4.56 4.56,0 0,1 253.64,50.06ZM253.64,56.16A1.55,1.55 0,1 0,252.08 54.61,1.56 1.56,0 0,0 253.64,56.16Z"
android:fillColor="#54565a"/>
<path
android:pathData="M269.18,28.81A3.13,3.13 0,1 1,266.05 31.94,3.13 3.13,0 0,1 269.18,28.81Z"
android:fillColor="#54565a"/>
<path
android:pathData="M115.25,13.34A2.72,2.72 0,1 1,112.53 16.06,2.72 2.72,0 0,1 115.25,13.34Z"
android:fillColor="#54565a"/>
<path
android:pathData="M18.95,78.09A4.15,4.15 0,1 1,14.8 82.23,4.15 4.15,0 0,1 18.95,78.09ZM18.95,83.38A1.15,1.15 0,1 0,17.8 82.23,1.15 1.15,0 0,0 18.95,83.38Z"
android:fillColor="#54565a"/>
<path
android:pathData="M24.24,59.76A2.92,2.92 0,1 1,21.32 62.69,2.93 2.93,0 0,1 24.24,59.76Z"
android:fillColor="#54565a"/>
<path
android:pathData="M38.5,242.19A4.15,4.15 0,1 1,34.35 246.34,4.15 4.15,0 0,1 38.5,242.19ZM38.5,247.48A1.15,1.15 0,1 0,37.35 246.34,1.15 1.15,0 0,0 38.5,247.48Z"
android:fillColor="#54565a"/>
<path
android:pathData="M53.77,321.19A2.72,2.72 0,1 1,51.04 323.91,2.72 2.72,0 0,1 53.77,321.19Z"
android:fillColor="#54565a"/>
<path
android:pathData="M379.8,222.37A4.35,4.35 0,1 1,375.45 226.72,4.36 4.36,0 0,1 379.8,222.37ZM379.8,228.07A1.35,1.35 0,1 0,378.45 226.72,1.35 1.35,0 0,0 379.8,228.07Z"
android:fillColor="#54565a"/>
<path
android:pathData="M402.13,175.41A2.52,2.52 0,1 1,399.61 177.92,2.52 2.52,0 0,1 402.13,175.41Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M381.02,309.38A2.52,2.52 0,1 1,378.5 311.89,2.52 2.52,0 0,1 381.02,309.38Z"
android:fillColor="#54565a"/>
<path
android:pathData="M386.25,126.13A2.92,2.92 0,1 1,383.32 129.06,2.93 2.93,0 0,1 386.25,126.13Z"
android:fillColor="#54565a"/>
<path
android:pathData="M405.79,113.51A2.52,2.52 0,1 1,403.28 116.03,2.52 2.52,0 0,1 405.79,113.51Z"
android:fillColor="#54565a"/>
<path
android:pathData="M412.51,280.87A3.54,3.54 0,1 1,408.98 284.41,3.54 3.54,0 0,1 412.51,280.87ZM412.51,284.95A0.54,0.54 0,1 0,411.98 284.41,0.54 0.54,0 0,0 412.51,284.95Z"
android:fillColor="#54565a"/>
<path
android:pathData="M344.1,258.88A5.57,5.57 0,1 1,338.53 264.46,5.58 5.58,0 0,1 344.1,258.88ZM344.1,267.03A2.57,2.57 0,1 0,341.53 264.46,2.58 2.58,0 0,0 344.1,267.03Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M118.1,264.73m-2.85,0a2.85,2.85 0,1 1,5.7 0a2.85,2.85 0,1 1,-5.7 0"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M174.7,112.15A4.35,4.35 0,1 1,170.35 116.5,4.36 4.36,0 0,1 174.7,112.15ZM174.7,117.85A1.35,1.35 0,1 0,173.35 116.5,1.35 1.35,0 0,0 174.7,117.85Z"
android:fillColor="#54565a"/>
<path
android:pathData="M78.6,219.79A2.31,2.31 0,1 1,76.29 222.11,2.32 2.32,0 0,1 78.6,219.79Z"
android:fillColor="#54565a"/>
<path
android:pathData="M104.46,188.84A2.52,2.52 0,1 1,101.94 191.36,2.52 2.52,0 0,1 104.46,188.84Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M399.96,296.41A2.52,2.52 0,1 1,397.44 298.93,2.52 2.52,0 0,1 399.96,296.41Z"
android:fillColor="#54565a"/>
<path
android:pathData="M322.93,65.87A2.31,2.31 0,1 1,320.61 68.18,2.32 2.32,0 0,1 322.93,65.87Z"
android:fillColor="#54565a"/>
<path
android:pathData="M323.47,38.31A4.35,4.35 0,1 1,319.12 42.66,4.36 4.36,0 0,1 323.47,38.31ZM323.47,44.01A1.35,1.35 0,1 0,322.12 42.66,1.35 1.35,0 0,0 323.47,44.01Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M393.85,45.38m-3.05,0a3.05,3.05 0,1 1,6.11 0a3.05,3.05 0,1 1,-6.11 0"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M349.53,28.75A2.52,2.52 0,1 1,347.01 31.26,2.52 2.52,0 0,1 349.53,28.75Z"
android:fillColor="#54565a"/>
</group>
</vector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 KiB

File diff suppressed because one or more lines are too long

View File

@ -1,995 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M207,37.81h14c95.54,0 173,77.71 173,173.57v14.05c0,95.86 -77.46,173.57 -173,173.57L207,399c-95.54,0 -173,-77.71 -173,-173.57L34,211.38C34,115.52 111.46,37.81 207,37.81Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M207,37.81h14c95.54,0 173,77.71 173,173.57v14.05c0,95.86 -77.46,173.57 -173,173.57L207,399c-95.54,0 -173,-77.71 -173,-173.57L34,211.38C34,115.52 111.46,37.81 207,37.81Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M207,37.81L221,37.81A173,173 0,0 1,394 210.81L394,226A173,173 0,0 1,221 399L207,399A173,173 0,0 1,34 226L34,210.81A173,173 0,0 1,207 37.81z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M207,37.81L221,37.81A173,173 0,0 1,394 210.81L394,226A173,173 0,0 1,221 399L207,399A173,173 0,0 1,34 226L34,210.81A173,173 0,0 1,207 37.81z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M54.72,220.54a159.73,157.62 0,1 0,319.45 0a159.73,157.62 0,1 0,-319.45 0z"
android:strokeAlpha="0.47"
android:fillColor="#9bb9d4"
android:fillAlpha="0.47"/>
<path
android:pathData="M125.87,108.13s-7.14,17.69 -24.49,9.18 -15.3,-29.25 -15.3,-29.25l-2.72,-3.4s-3.06,3.4 0.68,21.43 22.79,19.39 28.23,18.37 14.62,-4.08 17.34,-12.92S125.87,108.13 125.87,108.13Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M284.7,126.16s0,13.94 11.56,18.37 23.81,-6.8 25.51,-21.43 -0.68,-43.53 -0.68,-43.53l-5.1,-5.44s2.04,22.45 1.02,39.45 -5.1,25.17 -15.31,26.53 -12.24,-14.97 -12.24,-14.97Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M313.6,144.18s-14.28,-3.74 -18.71,-25.85l0.68,-5.44s8.5,24.49 22.11,27.89"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M327.55,144.52s22.45,6.46 40.81,-6.46l2.72,5.1s-14.97,14.63 -48.98,4.76C324.15,146.57 327.55,144.52 327.55,144.52Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M89.47,196.56a28.17,28.17 0,0 1,-5.1 16.67c-5.78,8.5 -26.19,7.14 -32.99,-31.97l-5.44,2.72s3.06,30.95 23.47,36.73 24.83,-12.92 25.17,-24.15C92.19,194.52 89.47,196.56 89.47,196.56Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M52.74,174.79s8.84,52.38 50,56.8c5.1,0 10.88,-0.34 10.88,-0.34S88.79,228.19 73.15,208.8s-16.67,-42.85 -16.67,-42.85Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M174.16,226.83s6.12,-2.04 7.14,-13.94c3.74,-1.02 5.44,-1.36 5.44,-1.36s-1.02,10.54 -6.12,14.97C177.22,226.83 174.16,226.83 174.16,226.83Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M116.46,54.18l-4.99,29.25 14.97,8.84 -1.13,14.97 9.52,9.52s27.44,6.35 51.47,6.35 36.73,-3.85 36.73,-3.85 6.12,-22.67 11.34,-79.81c-16.55,-2.95 -31.06,-5.44 -42.4,-5.89S145.03,37.18 129.61,44.21c-1.13,7.48 -1.59,10.2 -1.59,10.2Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M145.7,54.63S137.77,87.06 140.94,112.68c24.03,5.67 50.11,7.94 69.61,4.99 10.88,-16.78 12.7,-29.02 14.06,-46.48s-4.31,-24.72 -4.31,-24.72S182.66,44.21 145.7,54.63Z"
android:strokeAlpha="0.94"
android:fillColor="#ff8772"
android:fillAlpha="0.94"/>
<path
android:pathData="M230.51,74.36s50.56,-5.22 64.85,-2.27c6.12,17.69 -2.04,52.83 -2.04,52.83l-12.02,1.59 1.81,65.53s-27.21,2.49 -52.6,0 -26.98,-3.17 -26.98,-3.17L202.39,176.4l-5.9,-0.91 -0.45,33.33s-15.42,6.12 -43.31,5.44 -47.62,-11.34 -47.62,-11.34l-27.21,-37.19 0.68,-14.74 14.51,-2.95s0.68,-12.47 2.27,-15.19c25.62,-4.76 66.66,-10.66 97.72,-7.48 1.13,12.24 1.13,15.42 1.13,15.42l9.07,-3.17 0.91,-14.97 17.23,-6.35Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M245.02,84.34s-5.22,22.22 -3.17,36.96a251.79,251.79 0,0 0,44.67 1.36s7.26,-31.06 -0.23,-43.99C267.46,80.03 245.02,84.34 245.02,84.34Z"
android:strokeAlpha="0.94"
android:fillColor="#ff8772"
android:fillAlpha="0.94"/>
<path
android:pathData="M216.45,134.21s-3.63,33.33 -0.45,52.15c24.94,4.76 31.74,2.72 31.74,2.72s4.53,-11.18 16.78,-11.79c9.07,-0.45 12.47,9.98 12.47,9.98s0.45,-39.91 -4.31,-55.1C260.89,130.59 216.45,134.21 216.45,134.21Z"
android:strokeAlpha="0.94"
android:fillColor="#ff8772"
android:fillAlpha="0.94"/>
<path
android:pathData="M182.21,131.75s6.8,9.75 7.94,41.49 -5.22,31.74 -5.22,31.74 -26.98,4.31 -61.45,-4.31c-6.57,-44.21 -4.53,-59.18 -2.95,-63.26C146.38,132.2 182.21,131.75 182.21,131.75Z"
android:strokeAlpha="0.94"
android:fillColor="#ff8772"
android:fillAlpha="0.94"/>
<path
android:pathData="M114.64,96.92S74.51,82.98 62.6,22.44C58.86,19.04 56.14,22.1 56.14,22.1S58.52,54.41 76.89,77.54s37.07,24.49 37.07,24.49Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M304.42,21.08s-2.04,27.89 -21.09,49.66c4.42,0.68 8.16,1.02 8.16,1.02s14.97,-16.67 20.07,-50A9.05,9.05 0,0 0,304.42 21.08Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M317.69,19.72s-1.13,24.83 -22.33,52.38a56.15,56.15 0,0 1,1.93 8.5s12.92,-15.98 18.37,-31.97 8.16,-27.55 8.16,-27.55S322.45,19.04 317.69,19.72Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M331.29,20.06s3.06,59.18 17.35,91.83c-26.87,31.29 -43.87,40.47 -65.98,47.62 6.46,4.42 19.39,1.02 33.67,-8.5S344.22,130.25 353.06,116.65c8.16,7.82 11.22,3.4 15.65,-10.54s15.14,-41.68 13.1,-64.81c-1.7,-5.1 -3.68,-3.31 -3.68,-3.31s-4.83,-1.45 -5.17,5.01S366.32,75.16 353.4,102.7C342.85,78.9 338.43,20.06 338.43,20.06S336.39,17.68 331.29,20.06Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M241.16,258.76 L229.83,223.62 81.99,234.5l-5.22,2.27s14.28,78.45 17.23,87.07l4.31,1.13L193.09,296.86s10.66,-13.15 14.97,-24.26C222.57,263.98 241.16,258.76 241.16,258.76Z"
android:strokeAlpha="0.94"
android:fillColor="#9bb9d4"
android:fillAlpha="0.94"/>
<path
android:pathData="M169.06,279.05s-17,3.85 -23.35,6.8c-2.27,-11.34 -5.9,-25.62 -5.9,-25.62s-6.57,1.81 -6.8,-2.72 9.52,-5.44 9.52,-5.44 -0.91,-6.12 10.43,-4.31c4.08,-4.08 9.3,-1.59 10.2,6.12s1.81,9.75 1.81,9.75 2.72,0.23 2.27,-2.95 2.49,-6.8 5.67,-2.49 4.99,11.11 -5.22,16.33A46.14,46.14 0,0 0,169.06 279.05Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M200.58,266.29l-2.95,-5.44s-8.62,3.63 -12.47,-1.13 -1.13,-8.39 2.04,-7.48 5.44,3.4 8.16,2.27c-3.17,-4.31 -4.08,-4.99 -7.71,-5.22s-4.99,-6.12 0,-7.71l4.99,-1.59s5.44,-4.99 9.98,-1.13c4.76,-2.49 8.39,-1.13 19.05,14.51C210.1,257 206.02,259.49 200.58,266.29Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M279.03,251.43l-34.24,-0.68L244.79,216.06s-9.75,3.4 -9.52,-7.03c-0.23,-7.48 9.98,-5.22 9.98,-5.22s-0,-26.3 19.27,-26.3c13.15,0 14.28,24.49 14.28,24.49s7.71,-2.27 7.48,7.03 -7.26,6.8 -7.26,6.8l-0.23,7.94s15.42,-9.98 8.39,3.4c6.58,-2.04 9.75,3.63 1.36,9.07 9.07,-0.91 10.66,8.39 -9.75,12.47A7.82,7.82 0,0 0,279.03 251.43Z"
android:strokeAlpha="0.94"
android:fillColor="#fff"
android:fillAlpha="0.94"/>
<path
android:pathData="M229.37,263.52l-7.71,-9.75s-9.3,-0.68 -21.09,12.92c4.53,9.75 4.76,11.11 4.76,11.11s-10.23,25.67 -23.58,24.49c-10.2,-0.91 -12.7,-22.9 -12.7,-22.9s-15.42,2.49 -23.35,6.8c7.26,23.35 14.51,44.9 31.52,44.67s28.8,-14.51 28.8,-14.51l-2.8,60.62s22.15,4.25 51.89,-3.34 55.53,-26.4 55.53,-26.4 4.21,-33.15 1.26,-51.74S299.88,258.31 299.88,258.31l-14.74,-1.59 -1.36,-4.76 -41.04,-0.68 -1.59,7.48Z"
android:strokeAlpha="0.94"
android:fillColor="#99bcab"
android:fillAlpha="0.94"/>
<path
android:pathData="M115.7,57.43s6.5,2.72 10.43,13.15l0.15,5.9s4.84,3.78 7.86,16.17c0.6,17.99 1.06,23.73 1.06,23.73L124.01,106.71l0.3,-1.81s-11.79,-1.06 -17.84,-4.84c1.97,-2.57 6.5,-3.78 6.5,-3.78s6.2,3.48 11.64,2.87c0.45,-5.59 0.45,-6.65 0.45,-6.65l-13.6,-9.67S112.83,63.93 115.7,57.43Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M208.51,117.75s10.73,-11.94 13.15,-34.77 0.15,-30.23 -1.81,-36.28a23.3,23.3 0,0 1,7.86 0s-1.21,21.47 -3.93,39.76 -5.14,29.63 -5.14,29.63Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M228.16,95.88l8.31,13.45 0.6,15.57 -26.15,-2.57 12.4,-2.57Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M284.24,121.98a94.83,94.83 0,0 0,4.08 -22.07,55.19 55.19,0 0,0 -2.57,-21.01l7.26,-0.76 -3.33,43.38Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M271.24,132.19a138.37,138.37 0,0 1,3.78 30.53c0.15,16.78 -1.66,19.05 -1.66,19.05l3.33,5.59 1.21,-28.42 -1.21,-27.06Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M210.48,167.59s-2.72,-22.07 -7.86,-27.97l-0.3,8.01 -6.35,-7.26 -1.66,0.76s2.27,22.07 2.12,34.62c3.78,1.66 5.29,2.42 5.29,2.42l1.36,10.88 9.22,1.97Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M282.58,159.58l0.45,7.41s18.9,-4.08 28.57,-12.7c-14.21,6.35 -24.49,4.69 -24.49,4.69Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M181.3,131.91s5.44,6.05 6.95,35.07 -3.02,37.34 -3.02,37.34l5.74,-0.45s2.57,-12.85 0.6,-37.19 -4.38,-35.07 -4.38,-35.07Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M112.37,184.45s-8.01,-12.09 -19.2,-19.8c0.3,-2.27 0.45,-3.17 0.45,-3.17s-7.56,-6.2 -15.57,-7.26c0,16.78 -0.6,31.44 2.42,39.15a82.74,82.74 0,0 0,14.66 4.38l0.6,8.77s10.73,2.57 23.43,4.69 21.01,2.72 21.01,2.72l-23.73,-7.1A127.91,127.91 0,0 1,112.37 184.45Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M355.21,98.85s1.47,5.55 3.97,5.9c3.51,-3.06 3.97,-4.99 5.67,-11s5.1,-20.86 6.46,-28.46c-5.55,18.82 -9.18,26.3 -9.18,26.3s-5.45,11.74 -1.13,-7.16C358.17,92.37 355.21,98.85 355.21,98.85Z"
android:strokeAlpha="0.5"
android:fillColor="#54565a"
android:fillAlpha="0.5"/>
<path
android:pathData="M80.33,254.38l12.24,37.94 6.5,32.05 -5.29,-0.45s-5.44,-19.05 -8.47,-37.19S80.33,254.38 80.33,254.38Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M94.99,242.91l2.87,1.06 1.97,6.8 -3.48,4.84Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M99.07,271.24l-2.72,-15.57 4.53,1.81 2.12,9.98Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M103.3,291.57l3.33,-4.99 -2.57,-12.4L99.07,271.31Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M108.6,311.6l2.87,-4.99 -3.33,-12.7 -4.84,-2.27Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M122.5,307.81l2.57,-4.53 -3.17,-12.09 -4.53,-2.42Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M117.36,288.69l-3.78,-19.5 5.14,3.78 3.17,10.88Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M110.26,253.39l4.38,2.72 2.87,8.01 -3.93,4.99Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M107.99,241.7l3.93,2.12 1.21,6.5 -2.87,3.02Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M124.01,240.18l4.23,2.42 0.91,5.9L126.59,251.82Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M129.76,267.75l3.02,-4.53 -2.12,-8.77 -4.08,-2.57Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M133.69,285.5l-3.93,-17.69 4.99,3.33 2.42,9.37Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M138.68,303.56l2.12,-4.23 -2.42,-10.58 -4.69,-3.17Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M137.62,260.94l0.76,2.57 -3.17,3.33 3.02,1.97 2.42,11.79 -3.02,4.53 4.53,2.27 1.97,11.34 -3.02,4.38 2.87,-0.6 0.45,8.62 8.77,-2.42a196.92,196.92 0,0 1,-6.2 -19.5c-3.87,-13.91 -6.8,-28.87 -6.8,-28.87Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M144.12,238.51l3.33,1.97 1.36,6.65 -3.78,1.36Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M161.95,236.26l4.84,2.42 1.21,5.44 -2.72,4.08 4.08,1.81 1.06,6.35 -3.33,1.51Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M170.42,272.66l3.17,13.45 2.12,-4.53 -0.91,-4.38 -4.38,-1.36 4.23,-3.48 -1.06,-2.42Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M174.2,234.82l4.23,2.57 0.6,5.59 -1.97,3.93 3.48,2.42 1.81,8.01 -2.42,3.48 3.63,2.27 1.51,7.1 -3.17,3.63 3.02,2.27 0.91,4.53 -2.57,2.87Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M186.9,233.49l4.38,2.42 0.3,4.23 -3.63,1.36Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M185.69,248.36l4.53,5.59s3.33,2.57 5.59,0.45C195.36,250.33 192.64,248.36 185.69,248.36Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M190.67,262.03l1.66,9.82 3.17,-3.33 -1.81,-6.35Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M193.24,281.11l-0.91,-9.22 2.72,2.12 1.06,3.93Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M200.8,286.1l-1.97,-6.05 1.06,-2.72 -1.21,-4.84 -3.48,-0.91 2.72,-2.72 -2.87,-6.65 3.63,-0.6 7.41,16.63Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M201.86,232.43l2.72,1.66 0.76,3.17 -2.87,0.91Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M215.46,231.09l3.78,1.81 1.21,5.59 -3.02,3.17 3.93,2.27 0.76,4.84 -2.57,2.57Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M248.27,229.43s2.87,13.45 14.51,21.31c13,1.06 16.48,1.06 16.48,1.06l-0.3,-3.33S262.63,252.26 248.27,229.43Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M280.77,201.49l3.63,13.45 -4.84,1.36 -0.76,-14.66Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M205.79,316.81l-0.6,20.41s7.1,-3.78 11.34,-15.72c-3.02,-2.12 2.72,-8.92 2.72,-8.92s1.06,-4.99 -0.45,-7.41C211.23,312.42 205.79,316.81 205.79,316.81Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M308.28,282.79a207.49,207.49 0,0 1,-10.88 49.2c2.04,8.16 -1.13,15.42 -6.8,19.27 -0.02,0.2 -0.05,0.4 -0.13,0.9 -1.25,7.88 -10.77,13.7 -10.77,13.7s22.15,-9.23 35.29,-21.24C316.56,311.07 313.94,299.57 308.28,282.79Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M234.8,39.6a313.45,313.45 0,0 0,-32.61 -5.34c-17.99,-1.97 -46.38,1.12 -72.8,9.56 -2.53,12.93 -5.06,62.96 -5.06,62.96s7.87,7.87 10.68,9.84c15.74,4.22 58.47,11.24 87.7,2.53C230.02,92.16 234.8,39.6 234.8,39.6Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M190.67,32.18h0a108.46,108.46 0,0 1,11.68 0.58,318.1 318.1,0 0,1 32.78,5.37 1.5,1.5 0,0 1,1.16 1.6c-0.01,0.13 -1.22,13.36 -3.31,29.71 -1.23,9.61 -2.51,18.4 -3.82,26.14 -1.64,9.69 -3.32,17.75 -5,23.96a1.5,1.5 0,0 1,-1.02 1.04c-9.4,2.8 -20.9,4.22 -34.17,4.22a232.67,232.67 0,0 1,-54.35 -6.74,1.5 1.5,0 0,1 -0.47,-0.22c-2.89,-2.02 -10.56,-9.68 -10.88,-10.01a1.5,1.5 0,0 1,-0.44 -1.14c0.1,-2.05 2.56,-50.29 5.09,-63.18a1.5,1.5 0,0 1,1.02 -1.14,222.75 222.75,0 0,1 32.34,-7.67A189.89,189.89 0,0 1,190.67 32.18ZM233.18,40.78c-3.94,-0.85 -16.48,-3.42 -31.15,-5.03a105.47,105.47 0,0 0,-11.35 -0.56c-18.09,0 -40.44,3.65 -59.97,9.79 -2.27,13.02 -4.53,55.37 -4.84,61.22 1.68,1.66 7.38,7.26 9.8,9.05a229.88,229.88 0,0 0,53.31 6.57c12.6,0 23.54,-1.3 32.51,-3.86 3.65,-13.85 6.65,-34.14 8.53,-48.87C231.71,55.75 232.83,44.51 233.18,40.78Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M234.8,39.6s-41.04,-8.43 -94.73,9.56c-8.71,32.33 -5.06,67.46 -5.06,67.46"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M135.01,118.11a1.5,1.5 0,0 1,-1.49 -1.35,207.89 207.89,0 0,1 -0.75,-21.78c0.1,-7.5 0.55,-14.84 1.34,-21.82A165.38,165.38 0,0 1,138.62 48.77a1.5,1.5 0,0 1,0.97 -1.03,226.62 226.62,0 0,1 37.7,-9.14 213.03,213.03 0,0 1,30.26 -2.46,175.44 175.44,0 0,1 20.15,0.94c4.7,0.51 7.28,1.04 7.39,1.06a1.5,1.5 0,1 1,-0.6 2.94c-0.13,-0.03 -10.4,-2.08 -27.02,-1.94a218.97,218.97 0,0 0,-66.17 11.19c-4.29,16.31 -5.38,33.27 -5.54,44.71a204.53,204.53 0,0 0,0.73 21.43,1.5 1.5,0 0,1 -1.34,1.65A1.52,1.52 0,0 1,135.01 118.11Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M140.64,112.4s43.01,11.24 77.86,3.93a482.57,482.57 0,0 0,8.99 -69.71s-50.31,-1.97 -81.8,8.15C138.95,79.23 140.64,112.4 140.64,112.4Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M192.14,120.3h0a224.03,224.03 0,0 1,-36.12 -3.22c-9.46,-1.59 -15.69,-3.21 -15.75,-3.23a1.5,1.5 0,0 1,-1.12 -1.38c0,-0.08 -0.42,-8.49 0,-19.77 0.25,-6.63 0.73,-12.95 1.43,-18.79a135.32,135.32 0,0 1,3.68 -19.54,1.5 1.5,0 0,1 0.99,-1.03c22.68,-7.29 54.81,-8.38 71.94,-8.38 6.33,0 10.34,0.15 10.38,0.16a1.5,1.5 0,0 1,1.44 1.56c0,0.08 -0.37,8.55 -1.66,21.34a478.14,478.14 0,0 1,-7.37 48.61,1.5 1.5,0 0,1 -1.16,1.16A131,131 0,0 1,192.14 120.3ZM142.09,111.21c2.15,0.52 7.39,1.72 14.46,2.91a220.96,220.96 0,0 0,35.59 3.17h0a129.6,129.6 0,0 0,25.09 -2.24,477.05 477.05,0 0,0 7.12,-47.31c0.97,-9.58 1.41,-16.71 1.57,-19.68 -1.7,-0.05 -4.76,-0.11 -8.74,-0.11 -16.76,0 -48,1.04 -70.25,7.99 -3.28,12.32 -4.42,26.77 -4.79,36.83C141.81,101.58 141.99,108.59 142.09,111.21Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M127.71,53.93l-11.24,0.56s-4.5,15.18 -4.78,28.67a97.6,97.6 0,0 0,13.21 9"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M124.89,93.66a1.49,1.49 0,0 1,-0.7 -0.17,98.3 98.3,0 0,1 -13.44,-9.14 1.5,1.5 0,0 1,-0.57 -1.21A111.41,111.41 0,0 1,112.71 63.46c1.16,-5.48 2.27,-9.23 2.31,-9.39a1.5,1.5 0,0 1,1.36 -1.07l11.24,-0.56a1.5,1.5 0,0 1,0.15 3L117.61,55.94c-0.41,1.48 -1.18,4.44 -1.97,8.17a110.5,110.5 0,0 0,-2.44 18.34,95.9 95.9,0 0,0 12.39,8.38 1.5,1.5 0,0 1,-0.7 2.83Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M291.58,72.2c-18.83,1.69 -51.72,7.59 -51.72,7.59s-4.22,16.58 -2.81,44.97c17.43,5.9 56.5,-0.28 56.5,-0.28s6.47,-39.07 2.25,-52.28c-28.11,-2.81 -64.37,2.53 -64.37,2.53"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M258.67,128.82q-2.88,0 -5.5,-0.11c-6.9,-0.28 -12.49,-1.13 -16.6,-2.52a1.5,1.5 0,0 1,-1.02 -1.35,207.33 207.33,0 0,1 0.89,-33.38 99.49,99.49 0,0 1,1.97 -12.04A1.5,1.5 0,0 1,239.59 78.32c0.24,-0.04 17.1,-3.06 33.52,-5.39 -7.32,0.13 -14.26,0.54 -19.92,0.98 -12.39,0.97 -21.45,2.29 -21.54,2.31a1.5,1.5 0,0 1,-0.44 -2.97c0.09,-0.01 9.26,-1.35 21.75,-2.33 7.34,-0.57 14.37,-0.91 20.91,-1.01a196.69,196.69 0,0 1,22.09 0.8,1.5 1.5,0 0,1 1.28,1.04c1.81,5.67 1.99,16.34 0.52,31.69 -1.08,11.34 -2.7,21.19 -2.72,21.29a1.5,1.5 0,0 1,-1.25 1.24c-0.1,0.02 -9.97,1.57 -21.85,2.37C267.18,128.66 262.74,128.82 258.67,128.82ZM238.5,123.65c7.05,2.1 18.5,2.69 33.24,1.69 9.48,-0.64 17.66,-1.76 20.51,-2.18 0.44,-2.84 1.66,-10.95 2.52,-20.03 1.33,-13.9 1.28,-24.06 -0.13,-29.54q-1.08,-0.1 -2.17,-0.18a1.49,1.49 0,0 1,-0.75 0.28c-16.74,1.5 -45.02,6.41 -50.61,7.4 -0.35,1.62 -1.07,5.31 -1.69,10.79A203.47,203.47 0,0 0,238.5 123.65Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M244.92,84.23s-4.5,18.83 -3.37,36.82a233.6,233.6 0,0 0,48.07 1.12l3.65,-44.13S264.6,80.01 244.92,84.23Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M293.27,76.55a1.5,1.5 0,0 1,1.5 1.62l-3.65,44.13a1.5,1.5 0,0 1,-1.34 1.37c-0.07,0.01 -7.45,0.74 -18.44,0.74a232.78,232.78 0,0 1,-29.97 -1.87,1.5 1.5,0 0,1 -1.3,-1.39 131.07,131.07 0,0 1,1.28 -25.46c0.98,-6.95 2.09,-11.61 2.13,-11.8a1.5,1.5 0,0 1,1.14 -1.12c10.23,-2.19 22.89,-3.77 31.71,-4.7 9.54,-1.01 16.78,-1.51 16.85,-1.52Q293.22,76.55 293.27,76.55ZM288.22,120.79 L291.62,79.67c-6.38,0.49 -28.95,2.4 -45.46,5.83 -0.37,1.69 -1.17,5.58 -1.88,10.64a130.47,130.47 0,0 0,-1.32 23.58,231.01 231.01,0 0,0 28.35,1.69C279.55,121.41 285.71,121 288.22,120.79Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M237.05,126.62q-0.07,0 -0.15,-0.01L211.32,124.08A1.5,1.5 0,0 1,209.98 122.44,1.5 1.5,0 0,1 211.62,121.09l25.58,2.53a1.5,1.5 0,0 1,-0.15 2.99Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M192.64,125.81s-38.51,-4.5 -97.54,7.87c-4.22,12.65 0.56,72.8 0.56,72.8s61.28,16.02 100.35,2.81C197.98,167.41 192.64,125.81 192.64,125.81Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M173.5,123.51h0a183.48,183.48 0,0 1,19.31 0.81,1.5 1.5,0 0,1 1.31,1.3c0.01,0.1 1.35,10.62 2.43,26.12 0.63,9.1 1.06,18.12 1.25,26.8 0.25,10.86 0.15,21.23 -0.3,30.82a1.5,1.5 0,0 1,-1.02 1.35c-10.4,3.52 -23.29,5.3 -38.3,5.3a230.68,230.68 0,0 1,-23.34 -1.26c-6.54,-0.67 -13.3,-1.6 -20.11,-2.78 -11.59,-2 -19.39,-4.02 -19.46,-4.04a1.5,1.5 0,0 1,-1.12 -1.33c-0.01,-0.15 -1.2,-15.26 -1.87,-31.72 -0.89,-22.24 -0.43,-36.26 1.38,-41.68a1.5,1.5 0,0 1,1.12 -0.99C129.11,125.02 156.53,123.51 173.5,123.51ZM191.3,127.18c-2.43,-0.22 -8.6,-0.67 -17.8,-0.67h0c-16.68,0 -43.56,1.47 -77.21,8.45 -1.47,5.6 -1.81,19.3 -0.99,39.8 0.56,13.88 1.5,26.8 1.78,30.53 2.47,0.61 9.17,2.18 18.21,3.74a262.08,262.08 0,0 0,42.9 3.99c14.22,0 26.44,-1.62 36.37,-4.82a513.21,513.21 0,0 0,-0.99 -56.22C192.7,139.54 191.67,130.33 191.29,127.18Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M111.68,130.32s-5.34,38.79 4.78,76.74c17.99,5.06 28.95,7.03 28.95,7.03"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M145.42,215.58a1.51,1.51 0,0 1,-0.27 -0.02c-0.11,-0.02 -11.24,-2.04 -29.09,-7.06a1.5,1.5 0,0 1,-1.04 -1.06,182.48 182.48,0 0,1 -5.06,-28.23 232.16,232.16 0,0 1,-1.18 -24.76,206.67 206.67,0 0,1 1.42,-24.34 1.5,1.5 0,1 1,2.97 0.41,203.81 203.81,0 0,0 -1.39,24c-0.06,12.89 0.93,32.17 5.92,51.33 17.22,4.81 27.88,6.74 27.99,6.76a1.5,1.5 0,0 1,-0.26 2.98Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M187.01,131.71s8.43,48.07 3.93,71.96c-30.92,6.75 -68.02,-2.81 -68.02,-2.81S115.89,154.48 120.68,137.33C152.72,130.87 187.01,131.71 187.01,131.71Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M182.93,130.18c2.6,0 4.06,0.04 4.12,0.04a1.5,1.5 0,0 1,1.44 1.24c0.02,0.12 2.13,12.24 3.67,27.13 0.9,8.75 1.43,16.74 1.57,23.74a109.5,109.5 0,0 1,-1.31 21.63,1.5 1.5,0 0,1 -1.15,1.19 118.19,118.19 0,0 1,-25.01 2.44,193.92 193.92,0 0,1 -30.56,-2.63c-7.93,-1.3 -12.94,-2.58 -13.15,-2.64a1.5,1.5 0,0 1,-1.11 -1.23c-0.02,-0.12 -1.78,-11.8 -2.93,-25.43 -0.68,-8.02 -1.01,-15.14 -1,-21.16 0.01,-7.61 0.59,-13.52 1.72,-17.56a1.5,1.5 0,0 1,1.15 -1.07C145.82,130.73 172.6,130.18 182.93,130.18ZM185.74,133.19c-0.68,-0.01 -1.63,-0.02 -2.81,-0.02 -10.12,0 -36.14,0.54 -61.04,5.45 -1.69,7.04 -1.83,19.71 -0.39,36.76 0.95,11.25 2.32,21.17 2.76,24.26 1.83,0.43 6.13,1.4 11.96,2.35a190.85,190.85 0,0 0,30.03 2.58,116.73 116.73,0 0,0 23.39,-2.17c1.63,-9.68 1.47,-24.69 -0.47,-43.53C187.93,146.83 186.31,136.61 185.74,133.19Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M92.85,148.32 L78.51,151.41s-1.69,29.23 1.97,42.16c10.12,3.65 14.62,4.22 14.62,4.22"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M95.1,199.29a1.51,1.51 0,0 1,-0.19 -0.01c-0.19,-0.02 -4.78,-0.63 -14.94,-4.29a1.5,1.5 0,0 1,-0.93 -1c-1.55,-5.49 -2.36,-14.35 -2.41,-26.33 -0.04,-8.87 0.38,-16.25 0.39,-16.33a1.5,1.5 0,0 1,1.18 -1.38l14.34,-3.09a1.5,1.5 0,1 1,0.63 2.93l-13.21,2.85c-0.11,2.39 -0.35,8.27 -0.33,15.02 0.04,11 0.77,19.53 2.1,24.77 9.27,3.3 13.52,3.87 13.56,3.88a1.5,1.5 0,0 1,-0.19 2.99Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M194.6,142.13A1.5,1.5 0,0 1,193.18 141.09,1.5 1.5,0 0,1 194.15,139.2l7.87,-2.53A1.5,1.5 0,0 1,203.9 137.64,1.5 1.5,0 0,1 202.93,139.53L195.06,142.06A1.5,1.5 0,0 1,194.6 142.13Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M202.19,179.93A1.5,1.5 0,0 1,201.58 179.79L195.96,177.26A1.5,1.5 0,0 1,195.21 175.28,1.5 1.5,0 0,1 197.19,174.53l5.62,2.53A1.5,1.5 0,0 1,202.19 179.93Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M204.45,123.23s-4.78,37.38 -1.41,66.06c9.56,1.97 43.45,3.75 43.45,3.75"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M246.49,194.54l-0.08,0c-1.39,-0.07 -34.12,-1.81 -43.68,-3.78a1.5,1.5 0,0 1,-1.19 -1.29,202.04 202.04,0 0,1 -1.21,-22.59c-0.02,-6.7 0.19,-13.92 0.64,-21.46 0.77,-12.83 1.97,-22.28 1.98,-22.38a1.5,1.5 0,0 1,2.98 0.38c-0.01,0.09 -1.2,9.46 -1.96,22.2 -0.68,11.44 -1.15,27.96 0.43,42.4 10.57,1.84 41.84,3.51 42.17,3.52a1.5,1.5 0,0 1,-0.08 3Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M277.89,193.06l4.97,-0.38s0,-45.54 -1.41,-65.21"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M277.89,194.56a1.5,1.5 0,0 1,-0.11 -3l3.59,-0.27c-0.01,-7.79 -0.15,-46.24 -1.4,-63.72A1.5,1.5 0,0 1,282.96 127.36c1.39,19.5 1.41,64.86 1.41,65.32a1.5,1.5 0,0 1,-1.39 1.5l-4.97,0.38C277.97,194.56 277.93,194.56 277.89,194.56Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M276.65,187.62s2.57,-28.1 0.04,-55.37c-22.21,-1.69 -60.72,1.69 -60.72,1.69s-2.53,34.85 0,52.28c13.49,3.93 32.11,3.1 32.11,3.1"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M243.78,190.89c-1.84,0 -4.15,-0.04 -6.76,-0.15a93.31,93.31 0,0 1,-21.47 -3.09,1.5 1.5,0 0,1 -1.06,-1.23c-1.06,-7.31 -1.39,-18.39 -0.96,-32.94 0.31,-10.8 0.95,-19.58 0.95,-19.67a1.5,1.5 0,0 1,1.37 -1.39c0.1,-0.01 9.8,-0.85 22.08,-1.48 11.36,-0.58 27.33,-1.09 38.88,-0.21a1.5,1.5 0,0 1,1.38 1.36,320.6 320.6,0 0,1 0.94,38.1c-0.32,10.36 -0.97,17.48 -0.97,17.55a1.5,1.5 0,0 1,-2.99 -0.27c0.01,-0.07 0.64,-7.12 0.96,-17.4a321.22,321.22 0,0 0,-0.81 -36.43c-11.27,-0.74 -26.36,-0.25 -37.22,0.3 -9.65,0.49 -17.69,1.12 -20.71,1.37 -0.18,2.81 -0.62,9.94 -0.86,18.27 -0.39,13.53 -0.12,24.36 0.8,31.44a97.03,97.03 0,0 0,19.8 2.7c6.21,0.28 10.85,0.08 10.89,0.08a1.5,1.5 0,0 1,0.13 3C248.03,190.82 246.39,190.89 243.78,190.89Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M212.03,190.7s-3.09,-31.2 -1.13,-61.84c12.93,-3.09 30.92,-1.97 30.92,-1.97"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M212.03,192.2A1.5,1.5 0,0 1,210.54 190.85c-0.01,-0.08 -0.78,-7.97 -1.31,-19.51a404.63,404.63 0,0 1,0.18 -42.57,1.5 1.5,0 0,1 1.15,-1.36 98.4,98.4 0,0 1,20.63 -2.18c6.1,-0.1 10.54,0.17 10.73,0.18a1.5,1.5 0,1 1,-0.19 2.99c-0.05,0 -4.53,-0.28 -10.52,-0.17a103.45,103.45 0,0 0,-18.88 1.86,405.2 405.2,0 0,0 -0.1,41.13c0.52,11.46 1.29,19.27 1.29,19.35a1.5,1.5 0,0 1,-1.35 1.64Q212.11,192.2 212.03,192.2Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M312.06,21.91"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M313.42,344.5s2.67,-36.56 -3.67,-59.6 -10.02,-26.42 -10.02,-26.42a107.31,107.31 0,0 0,-15.37 -1.54"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M313.42,346q-0.05,0 -0.11,0a1.5,1.5 0,0 1,-1.39 -1.61c0.01,-0.09 0.66,-9.24 0.54,-21.06 -0.11,-10.87 -0.93,-26.29 -4.16,-38.03a157.92,157.92 0,0 0,-7.03 -21.01,25.93 25.93,0 0,0 -2.35,-4.42 103.22,103.22 0,0 0,-14.56 -1.42,1.5 1.5,0 0,1 0,-3 107.43,107.43 0,0 1,15.63 1.56,1.5 1.5,0 0,1 0.75,0.37c0.41,0.38 4.17,4.33 10.45,27.13a115.67,115.67 0,0 1,3.3 19.29c0.57,5.94 0.9,12.51 0.97,19.54 0.13,11.94 -0.54,21.19 -0.55,21.28A1.5,1.5 0,0 1,313.42 346Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M203.75,369.33l-0.07,0A1.5,1.5 0,0 1,202.25 367.75L204.63,316.06A1.5,1.5 0,0 1,206.2 314.63,1.5 1.5,0 0,1 207.63,316.2L205.25,367.89A1.5,1.5 0,0 1,203.75 369.33Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M142.08,252.08s-0.17,-3.63 6.26,-4.62 7.09,3.46 8.74,11.54"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M157.08,260.51a1.5,1.5 0,0 1,-1.47 -1.2q-0.09,-0.43 -0.17,-0.85c-0.73,-3.58 -1.3,-6.41 -2.33,-8.03 -0.76,-1.19 -1.82,-1.9 -4.54,-1.48 -4.88,0.75 -4.99,3.02 -4.99,3.11a0.39,0.39 0,0 0,0 -0.05l-3,0.14a4.74,4.74 0,0 1,1.01 -2.9c1.26,-1.7 3.45,-2.8 6.52,-3.27a8.8,8.8 0,0 1,4.5 0.29,6.07 6.07,0 0,1 3.03,2.55c1.32,2.08 1.95,5.15 2.73,9.04q0.08,0.41 0.17,0.84a1.5,1.5 0,0 1,-1.47 1.8Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M283.84,251.76a98.1,98.1 0,0 1,1.98 10.39c-22.75,1.32 -37.42,0 -44.67,-0.82 0.33,-7.75 0.99,-10.39 0.99,-10.39Z"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M242.14,249.44h0.03l41.7,0.82a1.5,1.5 0,0 1,1.43 1.14,97.92 97.92,0 0,1 2.02,10.6 1.5,1.5 0,0 1,-1.41 1.63c-6.43,0.37 -12.72,0.56 -18.69,0.56a230.78,230.78 0,0 1,-26.24 -1.39,1.5 1.5,0 0,1 -1.33,-1.55c0.33,-7.81 1,-10.57 1.03,-10.69A1.5,1.5 0,0 1,242.14 249.44ZM282.65,253.24 L243.39,252.46c-0.19,1.26 -0.47,3.64 -0.67,7.52a230.12,230.12 0,0 0,24.51 1.22c5.41,0 11.1,-0.16 16.92,-0.47C283.76,258.19 283.04,254.93 282.65,253.24Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M145.87,285.64s14.67,-5.6 22.75,-6.43"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M145.87,287.14a1.5,1.5 0,0 1,-0.54 -2.9c0.61,-0.23 14.95,-5.68 23.13,-6.52a1.5,1.5 0,0 1,0.3 2.98c-7.79,0.8 -22.22,6.28 -22.36,6.34A1.5,1.5 0,0 1,145.87 287.14Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M205.38,277.01l-7.25,-15.82a20.36,20.36 0,0 1,-9.23 0.66c-5.11,-0.82 -7.09,-8.08 -3.79,-9.4s5.11,4.62 10.72,2.14c-2.47,-5.28 -3.79,-5.6 -8.24,-5.6s-4.78,-6.43 0.17,-7.25 7.09,-2.64 13.52,6.43"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M205.38,278.51a1.5,1.5 0,0 1,-1.37 -0.88l-6.72,-14.66a22.38,22.38 0,0 1,-8.64 0.35,7.6 7.6,0 0,1 -4.68,-2.75 8.8,8.8 0,0 1,-1.95 -4.5c-0.26,-2.37 0.7,-4.29 2.52,-5.02 2.15,-0.86 3.87,0.29 5.24,1.22 1.24,0.83 2.34,1.58 3.9,1.39 -1.7,-3.18 -2.73,-3.18 -6.11,-3.18a4.75,4.75 0,0 1,-4.92 -4.43,5.26 5.26,0 0,1 1.07,-3.64 5.83,5.83 0,0 1,3.77 -2.16c0.55,-0.09 1.08,-0.2 1.58,-0.3 2.03,-0.41 3.96,-0.81 6.17,0.17 2.16,0.95 4.4,3.16 7.24,7.17a1.5,1.5 0,0 1,-2.45 1.74c-2.48,-3.49 -4.38,-5.45 -6,-6.16 -1.34,-0.59 -2.54,-0.35 -4.36,0.02 -0.53,0.11 -1.08,0.22 -1.69,0.32a2.48,2.48 0,0 0,-2.35 2.59,1.76 1.76,0 0,0 1.93,1.68c2.32,0 4.08,0.08 5.65,1.05 1.65,1.02 2.77,2.9 3.95,5.42a1.5,1.5 0,0 1,-0.75 2.01,7.27 7.27,0 0,1 -4.99,0.5 11.03,11.03 0,0 1,-3.32 -1.7c-1.28,-0.87 -1.83,-1.17 -2.45,-0.92 -0.76,0.31 -0.69,1.53 -0.65,1.9a5.29,5.29 0,0 0,4.12 4.62,19.08 19.08,0 0,0 8.49,-0.59 1.5,1.5 0,0 1,1.87 0.79l7.25,15.82a1.5,1.5 0,0 1,-1.36 2.13Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M191.86,240.67a7.53,7.53 0,0 1,5.77 -2.97c4.12,-0.33 5.44,1.15 10.22,8.57"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M207.85,247.77a1.5,1.5 0,0 1,-1.26 -0.69c-4.91,-7.62 -5.76,-8.14 -8.84,-7.89a6.1,6.1 0,0 0,-4.63 2.28l0.01,-0.02 -2.54,-1.59a9.03,9.03 0,0 1,6.92 -3.67,7.28 7.28,0 0,1 5.97,1.75c1.54,1.34 3.04,3.49 5.63,7.51a1.5,1.5 0,0 1,-1.26 2.31Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M202.41,239.06s1.98,-2.47 6.26,-0.5 20.6,24.89 20.6,24.89"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M229.28,264.95a1.5,1.5 0,0 1,-1.22 -0.63c-0.04,-0.06 -4.12,-5.78 -8.67,-11.66 -2.66,-3.44 -4.95,-6.26 -6.82,-8.39 -3.02,-3.43 -4.17,-4.18 -4.53,-4.35a4.84,4.84 0,0 0,-3.6 -0.44,2.42 2.42,0 0,0 -0.86,0.51 1.5,1.5 0,1 1,-2.34 -1.87,5.06 5.06,0 0,1 2.19,-1.46 7.6,7.6 0,0 1,5.88 0.54c1.29,0.6 3.99,2.66 12.47,13.63 4.58,5.93 8.69,11.69 8.73,11.75a1.5,1.5 0,0 1,-1.22 2.37Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M200.6,266.78a29.74,29.74 0,0 1,20.77 -13.02"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M200.6,268.28a1.5,1.5 0,0 1,-1.29 -2.26,27.81 27.81,0 0,1 5.31,-6.14 31.7,31.7 0,0 1,6.79 -4.6,31.25 31.25,0 0,1 9.76,-3.01 1.5,1.5 0,1 1,0.41 2.97,28.41 28.41,0 0,0 -14.97,6.89 25.03,25.03 0,0 0,-4.7 5.4A1.5,1.5 0,0 1,200.6 268.28Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M213.62,269.76a51.68,51.68 0,0 1,13.02 -9.07"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M213.62,271.26a1.5,1.5 0,0 1,-1.06 -2.56,52.74 52.74,0 0,1 13.45,-9.36 1.5,1.5 0,1 1,1.27 2.72,50.4 50.4,0 0,0 -12.6,8.77A1.5,1.5 0,0 1,213.62 271.26Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M244.94,203.65s-3.93,-2.57 -8.01,1.51c-3.4,3.4 -2.27,14.06 7.56,10.58"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M240.92,217.93a7.89,7.89 0,0 1,-2.06 -0.26,6.54 6.54,0 0,1 -3.89,-2.88 9.1,9.1 0,0 1,-1.24 -5.64,8.32 8.32,0 0,1 8.86,-7.77 7.3,7.3 0,0 1,3.16 1.01l-1.64,2.51 0.01,0.01a4.51,4.51 0,0 0,-1.92 -0.55,5.46 5.46,0 0,0 -4.22,1.86 5.3,5.3 0,0 0,-1.27 3.19,6.18 6.18,0 0,0 0.79,3.78c1.46,2.32 4.33,1.9 6.48,1.14a1.5,1.5 0,1 1,1 2.83A12.27,12.27 0,0 1,240.92 217.93Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M279.1,201.82s6.35,-1.06 7.26,6.35 -4.38,8.31 -6.95,7.56"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M281.02,217.45a7.33,7.33 0,0 1,-2.04 -0.28,1.5 1.5,0 1,1 0.85,-2.88 4.27,4.27 0,0 0,3.76 -0.71c1.44,-1.22 1.5,-3.52 1.28,-5.23a5.86,5.86 0,0 0,-2.02 -4.19,5.14 5.14,0 0,0 -3.5,-0.87 1.5,1.5 0,1 1,-0.49 -2.96,8.19 8.19,0 0,1 5.79,1.42 8.7,8.7 0,0 1,3.2 6.22c0.54,4.43 -0.96,6.73 -2.32,7.88A6.91,6.91 0,0 1,281.02 217.45Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M250.53,185.97s4.53,-1.51 5.9,8.16 2.27,37.49 18.59,39.91"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M275.02,235.54a1.51,1.51 0,0 1,-0.22 -0.02,15.79 15.79,0 0,1 -9.61,-5.31 29.75,29.75 0,0 1,-5.54 -9.93c-2.62,-7.37 -3.55,-15.73 -4.22,-21.84 -0.18,-1.59 -0.33,-2.97 -0.49,-4.1 -0.66,-4.7 -2.04,-6.2 -2.8,-6.67a1.68,1.68 0,0 0,-1.13 -0.28,1.5 1.5,0 0,1 -0.95,-2.85 4.51,4.51 0,0 1,3.66 0.57c2.15,1.33 3.56,4.29 4.2,8.8 0.17,1.17 0.32,2.57 0.5,4.19 1.25,11.35 3.59,32.48 16.83,34.44a1.5,1.5 0,0 1,-0.22 2.98Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M257.79,179.42s4.23,-1.36 7.41,11.03 -0.45,16.48 4.23,25.85"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M269.43,217.8a1.5,1.5 0,0 1,-1.34 -0.83c-2.74,-5.48 -2.8,-9.26 -2.86,-13.62a48.47,48.47 0,0 0,-1.48 -12.52c-1.4,-5.48 -2.95,-7.93 -4.01,-9.02 -0.89,-0.92 -1.5,-0.94 -1.59,-0.93a1.5,1.5 0,0 1,-0.82 -2.88,3.84 3.84,0 0,1 2.95,0.47c2.62,1.45 4.76,5.36 6.36,11.62a51.04,51.04 0,0 1,1.58 13.22c0.06,4.17 0.11,7.46 2.54,12.33a1.5,1.5 0,0 1,-1.34 2.17Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M270.79,179.85s3.78,6.65 2.87,22.07"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M273.66,203.42l-0.09,0a1.5,1.5 0,0 1,-1.41 -1.59,58.52 58.52,0 0,0 -1.02,-16.2 21.14,21.14 0,0 0,-1.67 -5.05l0,0.01 2.61,-1.48c0.16,0.29 3.99,7.22 3.07,22.9A1.5,1.5 0,0 1,273.66 203.42Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M225.74,310.46s-10.88,4.53 -16.78,4.23"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M209.53,316.2q-0.33,0 -0.65,-0.02a1.5,1.5 0,0 1,0.15 -3c5.49,0.28 16.02,-4.07 16.13,-4.12a1.5,1.5 0,0 1,1.15 2.77C225.88,312.03 215.78,316.2 209.53,316.2Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M226.2,325.71a1.5,1.5 0,0 1,-0.46 -0.07L208.81,320.2A1.5,1.5 0,0 1,207.84 318.31,1.5 1.5,0 0,1 209.73,317.34l16.93,5.44a1.5,1.5 0,0 1,-0.46 2.93Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M263.84,360.34a193.36,193.36 0,0 0,29.78 -24.64c13.91,-14.36 17.84,-22.22 17.84,-22.22"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M263.84,361.84a1.5,1.5 0,0 1,-0.82 -2.76h0c0.04,-0.03 4,-2.6 9.6,-6.89a184.72,184.72 0,0 0,19.91 -17.54,153.38 153.38,0 0,0 13.92,-16.22 47.79,47.79 0,0 0,3.66 -5.63,1.5 1.5,0 0,1 2.68,1.34c-0.17,0.33 -4.19,8.23 -18.1,22.59a187.79,187.79 0,0 1,-20.27 17.85c-5.69,4.35 -9.61,6.9 -9.77,7A1.49,1.49 0,0 1,263.84 361.84Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M262.02,371.06a1.5,1.5 0,0 1,-1.26 -0.69A1.5,1.5 0,0 1,261.21 368.3L305.5,339.88a1.5,1.5 0,0 1,2.07 0.45A1.5,1.5 0,0 1,307.12 342.4L262.83,370.82A1.49,1.49 0,0 1,262.02 371.06Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M98.92,326.01A1.5,1.5 0,0 1,97.45 324.8L80.48,236.28A1.5,1.5 0,0 1,81.67 234.53,1.5 1.5,0 0,1 83.42,235.72L100.39,324.23a1.5,1.5 0,0 1,-1.48 1.78Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M233.91,261.37l-7.71,-31.44L94.39,243.08s3.63,24.03 7.71,42.48 6.35,26 6.35,26l41.57,-10.73"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M108.44,313.06a1.5,1.5 0,0 1,-1.44 -1.07c-0.02,-0.08 -2.33,-7.82 -6.38,-26.11s-7.69,-42.33 -7.73,-42.58a1.5,1.5 0,0 1,1.33 -1.72l131.81,-13.15a1.5,1.5 0,0 1,1.61 1.13l7.71,31.44a1.5,1.5 0,0 1,-2.91 0.71l-7.4,-30.18L96.11,244.42c0.88,5.62 4.02,25.32 7.45,40.82 3.06,13.82 5.11,21.57 5.93,24.5l40.15,-10.37a1.5,1.5 0,0 1,0.75 2.9l-41.57,10.73A1.5,1.5 0,0 1,108.44 313.06Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M173.9,295.82A1.5,1.5 0,0 1,172.44 294.68,1.5 1.5,0 0,1 173.53,292.87l26.15,-6.5A1.5,1.5 0,0 1,201.5 287.46a1.5,1.5 0,0 1,-1.09 1.82L174.26,295.78A1.5,1.5 0,0 1,173.9 295.82Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M170.87,287.78A1.5,1.5 0,0 1,169.41 286.61,1.5 1.5,0 0,1 170.55,284.82L203.5,277.56A1.5,1.5 0,0 1,205.29 278.7a1.5,1.5 0,0 1,-1.14 1.79L171.2,287.75A1.51,1.51 0,0 1,170.87 287.78Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M183.72,285.31A1.5,1.5 0,0 1,182.25 284.09L173.03,235.57A1.5,1.5 0,0 1,174.22 233.82,1.5 1.5,0 0,1 175.98,235.01l9.22,48.52a1.5,1.5 0,0 1,-1.48 1.78Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M167.24,260.01a1.5,1.5 0,0 1,-1.46 -1.16L160.79,237.23a1.5,1.5 0,0 1,1.12 -1.8,1.5 1.5,0 0,1 1.8,1.12L168.71,258.17a1.5,1.5 0,0 1,-1.46 1.84Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M173.14,287.32a1.5,1.5 0,0 1,-1.47 -1.19L168.95,273.44A1.5,1.5 0,0 1,170.1 271.66,1.5 1.5,0 0,1 171.89,272.81l2.72,12.7A1.5,1.5 0,0 1,173.14 287.32Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M193.24,282.92a1.5,1.5 0,0 1,-1.48 -1.29L189.04,262.43A1.5,1.5 0,0 1,190.31 260.73,1.5 1.5,0 0,1 192.01,262.01l2.72,19.2A1.5,1.5 0,0 1,193.24 282.92Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M189.46,255.17A1.5,1.5 0,0 1,187.98 253.88l-0.6,-4.23a1.5,1.5 0,0 1,1.27 -1.7,1.5 1.5,0 0,1 1.7,1.27l0.6,4.23A1.5,1.5 0,0 1,189.46 255.17Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M187.74,243.14A1.5,1.5 0,0 1,186.26 241.87L185.11,234.51A1.5,1.5 0,0 1,186.36 232.8,1.5 1.5,0 0,1 188.08,234.05L189.22,241.41A1.5,1.5 0,0 1,187.74 243.14Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M202.62,240.31A1.5,1.5 0,0 1,201.15 239.11L199.94,233.21A1.5,1.5 0,0 1,201.11 231.44,1.5 1.5,0 0,1 202.88,232.61l1.21,5.9A1.5,1.5 0,0 1,202.62 240.31Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M219.24,251.06a1.5,1.5 0,0 1,-1.46 -1.17L213.7,231.6A1.5,1.5 0,0 1,214.84 229.8,1.5 1.5,0 0,1 216.63,230.94l4.08,18.29A1.5,1.5 0,0 1,219.24 251.06Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M145.17,250.31A1.5,1.5 0,0 1,143.7 249.08L141.73,238.04A1.5,1.5 0,0 1,142.95 236.3,1.5 1.5,0 0,1 144.69,237.51L146.65,248.55a1.5,1.5 0,0 1,-1.48 1.76Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M124.17,240.8s4.99,25.24 8.47,41.12 5.9,22.22 5.9,22.22"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M138.52,305.64a1.5,1.5 0,0 1,-1.4 -0.97c-0.1,-0.26 -2.5,-6.64 -5.96,-22.43 -3.44,-15.7 -8.42,-40.89 -8.47,-41.15a1.5,1.5 0,1 1,2.94 -0.58c0.05,0.25 5.03,25.41 8.46,41.08 3.4,15.53 5.81,21.94 5.83,22.01a1.5,1.5 0,0 1,-1.4 2.03Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M107.99,241.72s8.47,48.83 14.66,66.21"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M122.65,309.43a1.5,1.5 0,0 1,-1.41 -1c-2.59,-7.28 -5.86,-20.68 -9.71,-39.83 -2.86,-14.23 -4.99,-26.5 -5.01,-26.63a1.5,1.5 0,1 1,2.96 -0.51c0.02,0.12 2.15,12.36 5,26.55 3.77,18.74 7.09,32.37 9.6,39.41a1.5,1.5 0,0 1,-1.41 2Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M96.2,256.69a1.5,1.5 0,0 1,-1.49 -1.34A1.5,1.5 0,0 1,96.04 253.7L142.6,248.71A1.5,1.5 0,0 1,144.25 250.04a1.5,1.5 0,0 1,-1.33 1.65L96.36,256.68A1.52,1.52 0,0 1,96.2 256.69Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M161.2,250.02A1.5,1.5 0,0 1,159.71 248.69,1.5 1.5,0 0,1 161.03,247.03L183.7,244.46A1.5,1.5 0,0 1,185.36 245.78,1.5 1.5,0 0,1 184.04,247.44L161.37,250.01A1.52,1.52 0,0 1,161.2 250.02Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M213.8,243.95A1.5,1.5 0,0 1,212.32 242.67,1.5 1.5,0 0,1 213.58,240.97L228.54,238.7A1.5,1.5 0,0 1,230.25 239.96,1.5 1.5,0 0,1 228.99,241.67L214.03,243.93A1.51,1.51 0,0 1,213.8 243.95Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M219.85,252.9A1.5,1.5 0,0 1,218.36 251.54,1.5 1.5,0 0,1 219.71,249.91L230.89,248.85A1.5,1.5 0,0 1,232.53 250.2a1.5,1.5 0,0 1,-1.35 1.63L219.99,252.89Q219.92,252.9 219.85,252.9Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M168.45,277.62A1.5,1.5 0,0 1,166.98 276.39a1.5,1.5 0,0 1,1.2 -1.75l33.26,-6.2a1.5,1.5 0,0 1,1.75 1.2,1.5 1.5,0 0,1 -1.2,1.75L168.73,277.59A1.51,1.51 0,0 1,168.45 277.62Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M175.56,263.06A1.5,1.5 0,0 1,174.08 261.82,1.5 1.5,0 0,1 175.31,260.08L184.98,258.42A1.5,1.5 0,0 1,186.71 259.65,1.5 1.5,0 0,1 185.49,261.38L175.81,263.04A1.51,1.51 0,0 1,175.56 263.06Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M99.22,272.77A1.5,1.5 0,0 1,97.73 271.45,1.5 1.5,0 0,1 99.04,269.78L140.61,264.79A1.5,1.5 0,0 1,142.28 266.1a1.5,1.5 0,0 1,-1.31 1.67L99.4,272.76A1.52,1.52 0,0 1,99.22 272.77Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M103.76,292.94A1.5,1.5 0,0 1,102.29 291.73,1.5 1.5,0 0,1 103.46,289.97L145.03,281.65A1.5,1.5 0,0 1,146.8 282.83a1.5,1.5 0,0 1,-1.18 1.76L104.05,292.91A1.51,1.51 0,0 1,103.76 292.94Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M209.21,63.23s-15.72,5.74 -23.43,-8.77c-5.74,13.91 -24.64,10.58 -24.64,10.58s-5.74,27.51 21.77,44.44C212.99,89.54 209.21,63.23 209.21,63.23Z"
android:strokeAlpha="0.94"
android:fillColor="#f7eed0"
android:fillAlpha="0.94"/>
<path
android:pathData="M255.42,91.12s7.69,2.83 13.62,-4.99c2.56,5.8 10.66,5.8 10.66,5.8s3.1,14.03 -12.68,24.01C252.06,105.96 255.42,91.12 255.42,91.12Z"
android:strokeAlpha="0.94"
android:fillColor="#f7eed0"
android:fillAlpha="0.94"/>
<path
android:pathData="M178.28,147.33s8.92,27.51 -20.41,48.52c-26,-18.29 -24.64,-37.49 -24.49,-45.2 11.34,5.29 23.13,-9.07 23.13,-9.07S165.88,153.83 178.28,147.33Z"
android:strokeAlpha="0.94"
android:fillColor="#f7eed0"
android:fillAlpha="0.94"/>
<path
android:pathData="M56.72,32.33A1.5,1.5 0,0 1,55.26 31.2,1.5 1.5,0 0,1 56.35,29.38L63.26,27.65A1.5,1.5 0,0 1,65.08 28.74,1.5 1.5,0 0,1 63.99,30.56L57.08,32.29A1.5,1.5 0,0 1,56.72 32.33Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M58.77,40.22A1.5,1.5 0,0 1,57.34 39.17,1.5 1.5,0 0,1 58.31,37.29L64.79,35.24A1.5,1.5 0,0 1,66.68 36.22,1.5 1.5,0 0,1 65.7,38.1L59.22,40.15A1.5,1.5 0,0 1,58.77 40.22Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M61.25,48.54a1.5,1.5 0,0 1,-1.37 -0.89A1.5,1.5 0,0 1,60.64 45.66L67.23,42.75A1.5,1.5 0,0 1,69.21 43.51,1.5 1.5,0 0,1 68.45,45.49L61.86,48.41A1.5,1.5 0,0 1,61.25 48.54Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M63.63,55.34a1.5,1.5 0,0 1,-1.34 -0.83A1.5,1.5 0,0 1,62.96 52.5l6.48,-3.24a1.5,1.5 0,0 1,2.01 0.67,1.5 1.5,0 0,1 -0.67,2.01L64.3,55.18A1.49,1.49 0,0 1,63.63 55.34Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M66.76,62.79A1.5,1.5 0,0 1,65.39 61.92,1.5 1.5,0 0,1 66.14,59.93l7.56,-3.46a1.5,1.5 0,0 1,1.99 0.74,1.5 1.5,0 0,1 -0.74,1.99L67.38,62.66A1.5,1.5 0,0 1,66.76 62.79Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M69.89,69.27A1.5,1.5 0,0 1,68.62 68.56,1.5 1.5,0 0,1 69.1,66.5L76.23,62.07A1.5,1.5 0,0 1,78.29 62.55,1.5 1.5,0 0,1 77.81,64.62L70.68,69.04A1.49,1.49 0,0 1,69.89 69.27Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M74.64,76.29a1.5,1.5 0,0 1,-1.21 -0.62,1.5 1.5,0 0,1 0.33,-2.1L80.89,68.4a1.5,1.5 0,0 1,2.1 0.33,1.5 1.5,0 0,1 -0.33,2.1L75.53,76.01A1.49,1.49 0,0 1,74.64 76.29Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M79.4,82.56a1.5,1.5 0,0 1,-1.16 -0.55,1.5 1.5,0 0,1 0.22,-2.11l7.02,-5.72a1.5,1.5 0,0 1,2.11 0.22,1.5 1.5,0 0,1 -0.22,2.11L80.34,82.22A1.49,1.49 0,0 1,79.4 82.56Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M84.47,87.42a1.5,1.5 0,0 1,-1.14 -0.53A1.5,1.5 0,0 1,83.5 84.77L89.87,79.37A1.5,1.5 0,0 1,91.99 79.55a1.5,1.5 0,0 1,-0.17 2.11L85.44,87.06A1.49,1.49 0,0 1,84.47 87.42Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M90.95,92.49a1.5,1.5 0,0 1,-1.02 -0.4A1.5,1.5 0,0 1,89.85 89.97L95.14,84.25A1.5,1.5 0,0 1,97.26 84.17a1.5,1.5 0,0 1,0.08 2.12L92.05,92.01A1.5,1.5 0,0 1,90.95 92.49Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M97.32,97.59a1.49,1.49 0,0 1,-0.88 -0.29,1.5 1.5,0 0,1 -0.32,-2.1L100.54,89.16a1.5,1.5 0,0 1,2.1 -0.32,1.5 1.5,0 0,1 0.32,2.1L98.53,96.98A1.5,1.5 0,0 1,97.32 97.59Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M104.02,101.17a1.49,1.49 0,0 1,-0.82 -0.25A1.5,1.5 0,0 1,102.76 98.85L106.44,93.23a1.5,1.5 0,0 1,2.08 -0.44A1.5,1.5 0,0 1,108.95 94.87L105.28,100.49A1.5,1.5 0,0 1,104.02 101.17Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M293.35,70.03a1.5,1.5 0,0 1,-0.5 -0.09L287.02,67.89A1.5,1.5 0,0 1,286.1 65.98,1.5 1.5,0 0,1 288.02,65.06L293.85,67.11a1.5,1.5 0,0 1,-0.5 2.91Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M296.91,64.09a1.5,1.5 0,0 1,-0.58 -0.12L290.18,61.38a1.5,1.5 0,0 1,-0.8 -1.97,1.5 1.5,0 0,1 1.97,-0.8L297.5,61.21a1.5,1.5 0,0 1,-0.58 2.88Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M300.15,58.36a1.5,1.5 0,0 1,-0.54 -0.1L294,56.1A1.5,1.5 0,0 1,293.14 54.17,1.5 1.5,0 0,1 295.08,53.3L300.69,55.46a1.5,1.5 0,0 1,-0.54 2.9Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M303.83,49.83a1.5,1.5 0,0 1,-0.5 -0.09L297.28,47.58A1.5,1.5 0,0 1,296.36 45.67,1.5 1.5,0 0,1 298.28,44.76L304.33,46.92a1.5,1.5 0,0 1,-0.5 2.91Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M306.85,41.95a1.5,1.5 0,0 1,-0.4 -0.05L300.62,40.27A1.5,1.5 0,0 1,299.57 38.43,1.5 1.5,0 0,1 301.42,37.38L307.25,39a1.5,1.5 0,0 1,-0.4 2.95Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M309.34,34.06A1.51,1.51 0,0 1,309.06 34.04L302.69,32.85a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L309.61,31.09a1.5,1.5 0,0 1,-0.27 2.97Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M310.85,28.01a1.51,1.51 0,0 1,-0.18 -0.01L304.4,27.25A1.5,1.5 0,0 1,303.09 25.58,1.5 1.5,0 0,1 304.76,24.27l6.26,0.76a1.5,1.5 0,0 1,-0.18 2.99Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M302.42,74.67a1.49,1.49 0,0 1,-0.89 -0.3L297.31,71.24A1.5,1.5 0,0 1,297.01 69.14,1.5 1.5,0 0,1 299.11,68.84L303.32,71.97a1.5,1.5 0,0 1,-0.9 2.7Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M306.42,67.76a1.49,1.49 0,0 1,-0.71 -0.18L301.07,65.1a1.5,1.5 0,0 1,-0.62 -2.03,1.5 1.5,0 0,1 2.03,-0.62L307.13,64.94a1.5,1.5 0,0 1,-0.71 2.82Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M310.2,61.82a1.49,1.49 0,0 1,-0.78 -0.22L304.45,58.58a1.5,1.5 0,0 1,-0.5 -2.06,1.5 1.5,0 0,1 2.06,-0.5L310.98,59.04a1.5,1.5 0,0 1,-0.78 2.78Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M313.76,54.04a1.49,1.49 0,0 1,-0.7 -0.18L308.2,51.28A1.5,1.5 0,0 1,307.58 49.25,1.5 1.5,0 0,1 309.61,48.63l4.86,2.59a1.5,1.5 0,0 1,-0.71 2.82Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M317.11,45.94a1.5,1.5 0,0 1,-0.48 -0.08L311.55,44.14a1.5,1.5 0,0 1,-0.94 -1.9,1.5 1.5,0 0,1 1.9,-0.94L317.6,43.02a1.5,1.5 0,0 1,-0.48 2.92Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M319.81,37.42a1.5,1.5 0,0 1,-0.38 -0.05l-4.97,-1.3A1.5,1.5 0,0 1,313.39 34.24,1.5 1.5,0 0,1 315.22,33.17l4.97,1.3A1.5,1.5 0,0 1,319.81 37.42Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M322.08,28.77h-0.06L316.51,28.56A1.5,1.5 0,0 1,315.07 27,1.5 1.5,0 0,1 316.63,25.56l5.51,0.22a1.5,1.5 0,0 1,-0.06 3Z"
android:strokeAlpha="0.94"
android:fillColor="#54565a"
android:fillAlpha="0.94"/>
<path
android:pathData="M244.79,250.99s-0.91,-35.98 0.15,-48.52 6.95,-23.28 18.14,-24.94 14.81,11.64 15.57,22.67 0.6,23.73 0.6,23.73 3.78,-3.78 7.41,-3.63 3.63,4.38 0.45,7.26c7.26,-1.97 9.07,3.63 0.91,9.07 9.98,-0.6 7.86,5.9 0.76,9.37s-20.25,4.38 -30.84,-5.29 -13.15,-19.8 -13.15,-19.8"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M244.79,252.49a1.5,1.5 0,0 1,-1.5 -1.46c-0.04,-1.47 -0.9,-36.2 0.16,-48.69 0.57,-6.78 2.48,-12.75 5.52,-17.26a21.67,21.67 0,0 1,5.87 -5.96,19.4 19.4,0 0,1 8.02,-3.07 11.5,11.5 0,0 1,9.26 2.35c2.52,2.03 4.5,5.27 5.9,9.63a51.67,51.67 0,0 1,2.13 12.07c0.53,7.68 0.61,16.23 0.62,20.72l0,0a10.21,10.21 0,0 1,5.95 -2.01,4.12 4.12,0 0,1 3.95,2.67 5.63,5.63 0,0 1,-0.33 4.2,7.03 7.03,0 0,1 1.1,0.15 4.28,4.28 0,0 1,3.1 2.33,5.22 5.22,0 0,1 -0.67,4.87 12.31,12.31 0,0 1,-1.86 2.31,8.31 8.31,0 0,1 1.34,0.38 4.22,4.22 0,0 1,2.83 2.85c0.39,1.5 -0.16,3.24 -1.55,4.9a15.87,15.87 0,0 1,-5.2 3.88,28.46 28.46,0 0,1 -14.92,2.43 29.89,29.89 0,0 1,-8.88 -2.3,31.22 31.22,0 0,1 -8.7,-5.67 53.38,53.38 0,0 1,-6.71 -7.38,49.06 49.06,0 0,1 -4.15,-6.55l-0.13,-0.24c0.06,11.97 0.34,23.11 0.35,23.31a1.5,1.5 0,0 1,-1.46 1.54ZM245.94,219.94a1.49,1.49 0,0 1,0.31 0.6,31.32 31.32,0 0,0 2.53,6.04 48.7,48.7 0,0 0,10.18 13.02c9.46,8.65 21.75,8.68 29.17,5.05a13.07,13.07 0,0 0,4.22 -3.11c0.86,-1.03 1.05,-1.82 0.95,-2.21s-0.6,-0.66 -1,-0.81a10.23,10.23 0,0 0,-4.18 -0.39,1.5 1.5,0 0,1 -0.92,-2.74 13.29,13.29 0,0 0,4.13 -3.91,2.53 2.53,0 0,0 0.5,-2.08c-0.31,-0.69 -1.89,-1.04 -4.31,-0.38a1.5,1.5 0,0 1,-1.4 -2.56c1.55,-1.41 2.06,-3.09 1.75,-3.95 -0.06,-0.18 -0.23,-0.65 -1.25,-0.69 -2.42,-0.1 -5.36,2.27 -6.28,3.19a1.5,1.5 0,0 1,-2.56 -1.08c0,-0.13 0.14,-12.77 -0.6,-23.61 -0.38,-5.54 -1.78,-15.44 -6.91,-19.57a8.5,8.5 0,0 0,-6.94 -1.72c-9.43,1.4 -15.74,10.22 -16.86,23.58C246.1,206.59 245.96,213.04 245.94,219.94Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M219.39,304.22S204.43,319.53 190.49,327.69s-28.91,2.38 -36.73,-17.69 -13.6,-49.32 -13.6,-49.32 -6.15,1.18 -6.97,-1.95 2.14,-4.95 5.6,-5.77 6.76,-1.65 8.24,2.97 1.81,6.26 1.81,6.26"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M178.22,332.77a21.56,21.56 0,0 1,-7.11 -1.2,25.83 25.83,0 0,1 -10.64,-7.32 44.29,44.29 0,0 1,-8.11 -13.7c-4.07,-10.44 -7.57,-23.36 -9.79,-32.37 -1.8,-7.28 -3.07,-13.25 -3.6,-15.83a14.86,14.86 0,0 1,-2.07 0.03,7.87 7.87,0 0,1 -2.91,-0.67 3.97,3.97 0,0 1,-2.24 -2.6,4.95 4.95,0 0,1 0.5,-3.89c1.29,-2.16 4.09,-3.21 6.21,-3.72l0.08,-0.02a13.28,13.28 0,0 1,5.45 -0.54c2.15,0.41 3.66,1.94 4.49,4.53 1.49,4.64 1.84,6.36 1.86,6.43a1.5,1.5 0,0 1,-2.94 0.59c0,-0.01 -0.35,-1.67 -1.77,-6.1 -0.63,-1.96 -1.51,-2.37 -2.2,-2.5a11.2,11.2 0,0 0,-4.18 0.52l-0.08,0.02c-2.17,0.52 -3.74,1.37 -4.33,2.34a1.95,1.95 0,0 0,-0.17 1.59c0.21,0.79 1.61,0.99 2.43,1.03a13.23,13.23 0,0 0,2.81 -0.17,1.5 1.5,0 0,1 1.75,1.18c0.01,0.07 1.47,7.4 3.86,17.08a278.48,278.48 0,0 0,9.67 31.98c3.95,10.12 9.81,16.79 16.94,19.27 5.6,1.95 11.7,1.14 17.63,-2.33 7.1,-4.16 14.49,-10.25 19.45,-14.62 5.38,-4.76 9.11,-8.56 9.15,-8.6a1.5,1.5 0,1 1,2.14 2.1c-0.04,0.04 -3.84,3.92 -9.3,8.75 -5.05,4.47 -12.61,10.69 -19.92,14.97a26.91,26.91 0,0 1,-10.14 3.59A22.5,22.5 0,0 1,178.22 332.77Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M152.47,247.91s1.81,-2.97 5.93,-1.32 4.29,5.77 6.43,16.98c5.44,-0.5 -0.99,-5.6 4.95,-6.76s9.4,13.52 -1.98,17.47c2.47,12.36 5.93,28.19 14.67,27.86s18.63,-13.52 25.06,-30c16.48,-6.92 33.46,-13.68 33.46,-13.68"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M182.2,303.65a8.83,8.83 0,0 1,-6.43 -2.93,22.43 22.43,0 0,1 -4.37,-7.17c-2.28,-5.48 -3.75,-12.38 -5.07,-18.97a1.5,1.5 0,0 1,0.98 -1.71,9.05 9.05,0 0,0 6.17,-11.13 6.02,6.02 0,0 0,-1.55 -2.83,2.09 2.09,0 0,0 -1.87,-0.63c-0.8,0.16 -1.33,0.4 -1.46,0.67a3.39,3.39 0,0 0,0.01 1.41,4.16 4.16,0 0,1 -0.57,3.35 4.22,4.22 0,0 1,-3.08 1.35,1.5 1.5,0 0,1 -1.61,-1.21c-0.29,-1.5 -0.54,-2.9 -0.77,-4.14 -1.51,-8.23 -2.06,-10.66 -4.74,-11.73a3.75,3.75 0,0 0,-3.13 -0.09,2.73 2.73,0 0,0 -0.98,0.82l0.01,-0.02 -2.56,-1.56a5.59,5.59 0,0 1,1.98 -1.81,6.53 6.53,0 0,1 5.8,-0.12 7.62,7.62 0,0 1,4.45 4.76,56.12 56.12,0 0,1 2.13,9.22l0,0.02a3.93,3.93 0,0 1,0.33 -1.48c0.56,-1.23 1.74,-2.01 3.61,-2.37a5.06,5.06 0,0 1,4.48 1.38,8.9 8.9,0 0,1 2.4,4.24 12.45,12.45 0,0 1,-0.65 8.22,11.95 11.95,0 0,1 -6.21,6.04c1.23,6.07 2.62,12.28 4.65,17.18a19.87,19.87 0,0 0,3.74 6.22,5.83 5.83,0 0,0 4.5,2.02c3.71,-0.14 7.96,-3.04 12.28,-8.39a80.05,80.05 0,0 0,11.43 -20.66,1.5 1.5,0 0,1 0.82,-0.84c16.31,-6.85 33.32,-13.63 33.49,-13.69a1.5,1.5 0,0 1,1.11 2.79c-0.17,0.07 -16.75,6.67 -32.85,13.43a97.58,97.58 0,0 1,-5.25 11.18,66.89 66.89,0 0,1 -6.41,9.68 33.91,33.91 0,0 1,-7.02 6.73,14.37 14.37,0 0,1 -7.49,2.77C182.41,303.65 182.3,303.65 182.2,303.65Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M151.15,303.17a48.92,48.92 0,0 1,20.44 -11.54"
android:strokeAlpha="0.94"
android:fillColor="#00000000"
android:fillAlpha="0.94"/>
<path
android:pathData="M151.15,304.67a1.5,1.5 0,0 1,-1.08 -2.54,39.83 39.83,0 0,1 5.63,-4.6 52.61,52.61 0,0 1,15.49 -7.34,1.5 1.5,0 1,1 0.81,2.89 49.58,49.58 0,0 0,-14.52 6.87,37.89 37.89,0 0,0 -5.24,4.27A1.5,1.5 0,0 1,151.15 304.67Z"
android:strokeAlpha="0.94"
android:fillColor="#222"
android:fillAlpha="0.94"/>
<path
android:pathData="M246.68,139.41l0.86,1.4a12.14,12.14 0,0 0,10.76 6.27,13.23 13.23,0 0,0 3.88,-0.55l1.09,-0.37 0.22,1.13a28.97,28.97 0,0 1,-0.57 11.25,31.66 31.66,0 0,1 -4.53,10.36 36.77,36.77 0,0 1,-10.69 10.29l-0.42,0.27 -0.47,-0.17a25.93,25.93 0,0 1,-11.4 -8.06,32.68 32.68,0 0,1 -5.65,-10.61 43.16,43.16 0,0 1,-2.14 -13.18l0.04,-1.5 1.37,0.61a15.17,15.17 0,0 0,5.52 1.05c4.76,0 8.56,-2.29 11.29,-6.8ZM258.3,149.08a14.21,14.21 0,0 1,-6.24 -1.38,14.43 14.43,0 0,1 -5.36,-4.56 14.44,14.44 0,0 1,-12.15 6.47,17.6 17.6,0 0,1 -4.9,-0.71 43.1,43.1 0,0 0,2.03 11.17c2.82,8.58 7.98,14.35 15.34,17.18 7.38,-4.9 12.06,-11.31 13.93,-19.08a29.13,29.13 0,0 0,0.72 -9.43A16.21,16.21 0,0 1,258.3 149.08Z"
android:strokeAlpha="0.94"
android:fillColor="#f7eed0"
android:fillAlpha="0.94"/>
</group>
</vector>

View File

@ -1,729 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M43.98,197.55a170.29,169.84 0,1 0,340.59 0a170.29,169.84 0,1 0,-340.59 0z"
android:strokeAlpha="0.5"
android:fillColor="#9bb9d4"
android:fillAlpha="0.5"/>
<path
android:pathData="M149.63,175.28s-19.06,3.61 -30.72,17.03c3.89,20.91 14.16,29.8 22.49,30.07 15.55,-10.83 46.36,-30.54 46.36,-30.54l32.76,17.49 18.18,-11.66a174.23,174.23 0,0 1,-5.14 -28.04c-1.11,-13.6 1.76,-40.81 1.76,-40.81a75.41,75.41 0,0 1,-14.53 6.66c-7.77,2.5 -24.89,7.4 -24.89,7.4s-33.13,20.64 -37.01,23.69A112.79,112.79 0,0 0,149.63 175.28Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M27,108.52 L166.24,76.85s-4.04,-19.99 -29.67,-11.26c-10.7,-37.92 -40.53,-24.8 -44.52,-19.43 -13.99,-21.53 -60.17,6.06 -44.79,42.03C34.56,78.07 20.85,100.63 27,108.52Z"
android:fillColor="#fff"/>
<path
android:pathData="M27.01,108.52s0.88,-4.73 16.66,-7.92c-0.7,-3.45 7.94,-6.51 17.88,-7.76 0.25,-3.45 9.5,-7.2 34.53,-12.26s27.69,-0.31 27.19,0.93c19.84,-4.57 22.17,-4.29 22.53,-3.42 12.66,-3.69 18.56,-4.58 20.44,-1.24C157.45,78.76 27.01,108.52 27.01,108.52Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M26.71,168.38l92.8,-26.47s-13.79,-23.77 -30.07,-6.5c-13.38,-26.24 -57.33,-11.32 -56.16,19.3C21.24,155.95 26.71,168.38 26.71,168.38Z"
android:fillColor="#fff"/>
<path
android:pathData="M26.71,168.38s2.8,-4.3 12.9,-5.77c0.13,-3.2 15.33,-10.25 26.62,-12.62s15.61,-0.82 15.61,-0.82a39.53,39.53 0,0 1,19.93 -6.04c3.95,-2.38 14.62,-4.47 17.74,-1.21C104.57,146.01 26.71,168.38 26.71,168.38Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M135,330.56s6.07,-2.67 3.11,-12.69 -15.29,-14.76 -22.35,-8.29c-0.37,-14.94 -10.54,-15.53 -12.1,-14.96 -4.98,-7.08 -27.46,-2.53 -26.04,12.9 -13.16,-3.9 -15.29,16.72 -8.31,20.85 -12.06,-0.43 -13.79,9.99 -10.24,13.19 -9.22,0.82 -12.7,8.63 -6.95,12.07C68.67,347.31 135,330.56 135,330.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M237.73,176.99s17.95,2.78 23.32,5.74c7.77,14.44 22.95,52.93 27.02,81.25 -3.89,8.51 -21.47,9.44 -21.47,9.44s-8.7,-12.95 -13.14,-23.87a69.79,69.79 0,0 1,-4.9 -20.64l6.66,-1.39 -8.24,-4.44s3.79,0.19 8.93,-3.61 9.95,-10.83 5.32,-13.97 -10.04,-1.3 -10.04,-1.3Z"
android:strokeAlpha="0.68"
android:fillColor="#ff8772"
android:fillAlpha="0.68"/>
<path
android:pathData="M220.52,209.23l6.66,-3.89s10.18,3.33 18.14,0.74 12.77,-2.96 15.92,-0.56 1.94,8.7 -5.32,13.97c-13.74,1.02 -26.33,-5.28 -26.33,-5.28Z"
android:fillColor="#fff"/>
<path
android:pathData="M314.79,170.72l76.18,11.85s-0.19,-15.62 -16.96,-11.07C375.04,140.97 324.99,136.03 314.79,170.72Z"
android:fillColor="#fff"/>
<path
android:pathData="M314.79,170.72s1.71,-2.98 8.97,-1.76c3.1,-2.91 12.07,-6.62 19.23,-4.71s11.75,4.98 14.73,8.51c7.9,-2.19 15.07,1.54 15.21,3.39 9.13,-0.04 16.31,1.49 18.04,6.43C385.42,181.74 314.79,170.72 314.79,170.72Z"
android:fillColor="#9bb9d4"/>
<path
android:pathData="M196.75,323.08c91.63,-4.4 141.23,9.16 231.25,45.82l-124,59.1L0,408.79L0,385.61S50.67,330.09 196.75,323.08Z"
android:fillColor="#99bcab"/>
<path
android:pathData="M270.21,317.55l4.16,29.15L119.75,358.64l-2.78,-7.5 6.11,-3.33 -0.56,-6.39 5,-1.11 -1.94,-5.55 7.22,-15.27L142.51,316.44s-9.72,-21.38 -12.77,-34.7 -0.83,-28.32 -0.83,-28.32 -5.55,-1.39 -6.11,-3.89c-12.22,2.22 -20.82,3.33 -20.82,3.33s27.76,-22.21 39.42,-30.81 46.36,-30.54 46.36,-30.54 53.58,28.04 67.46,35.81l-6.66,1.39a10.06,10.06 0,0 1,-3.05 6.11c3.05,10.83 3.61,37.76 -2.22,64.4 9.72,-1.39 14.44,-2.22 14.44,-2.22l1.94,10.83 3.89,-0.28 1.94,9.16Z"
android:fillColor="#fff"/>
<path
android:pathData="M134.46,253.17l13.7,15.18 -7.03,-19.43Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M159.63,249.02s7.59,10.18 10.73,28.13a383.86,383.86 0,0 1,4.26 39.24L179.25,306.58l-7.96,-49.97 -6.11,-11.66Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M215.52,241.26s-11.1,32.2 -10.55,48.86 2.41,25.54 2.41,25.54L201.27,296.41l3.33,-42.75 5,-16.1Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M257.72,296.96l-2.04,26.74 1.2,5.32 4.3,3.61 1.25,5.55 6.11,3.61 1.94,4.86h3.89l-4.16,-29.15 -4.72,-0.83 -1.94,-9.16 -3.89,0.28Z"
android:fillColor="#222"/>
<path
android:pathData="M205.16,316.76 L177.21,318.8s-0.19,-3.33 -2.59,-2.41c2.59,-13.88 -4.44,-57.56 -11.29,-69.77a11.74,11.74 0,0 0,2.22 -4.07l41.64,-7.59s0.56,2.41 4.07,4.44c-6.48,11.47 -10.55,49.97 -5,73.66C204.97,313.99 205.16,316.76 205.16,316.76Z"
android:fillColor="#222"/>
<path
android:pathData="M220.52,115.62s-4.07,12.77 3.89,18.51c-10.92,5.92 -28.5,8.88 -28.5,8.88l-3.01,2.87S175.92,139.12 169.07,127.09c-1.85,2.78 -8.33,37.57 -8.33,37.57l-11.1,10.73S133.16,177.24 118.92,192.42c-2.96,-27.76 7.4,-48.67 15.55,-63.67S151.67,105.62 151.67,105.62s0.93,-14.62 11.66,-18.69 15.55,3.52 16.66,4.26 11.66,15.18 15.36,19.06 14.62,7.22 17.4,7.68C218.67,116.36 220.52,115.62 220.52,115.62Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M237.73,236.92l-10.18,15.73 -0.56,-8.51 4.07,-9.62 2.04,0.74Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M141.49,246.51a20.39,20.39 0,0 1,-2.41 3.33c5,6.11 9.07,18.51 9.07,18.51l2.96,-18.32 -4.44,-4.44Z"
android:fillColor="#222"/>
<path
android:pathData="M230.51,231.92l-2.96,0.19a8.88,8.88 0,0 1,-2.59 7.03c2.41,4.44 2.59,13.51 2.59,13.51s0.19,-13.7 5.55,-17.4A19.82,19.82 0,0 1,230.51 231.92Z"
android:fillColor="#222"/>
<path
android:pathData="M249.53,223.74s3.89,0.56 6.66,-0.97c3.89,9.99 2.22,29.29 0.69,34.15 -4.03,-9.72 -8.05,-20.13 -8.33,-28.04 4.86,-1.11 5.55,-1.25 5.55,-1.25Z"
android:fillColor="#222"/>
<path
android:pathData="M245.36,222.55s6.8,0.83 10.55,-3.05 2.22,-9.16 -9.3,-9.85 -17.91,2.78 -18.6,3.33C235.51,217.13 245.36,222.55 245.36,222.55Z"
android:fillColor="#222"/>
<path
android:pathData="M193.4,107.7s-11.2,-14.9 -13.42,-16.29c4.72,-3.33 4.16,-9.72 4.16,-9.72s-7.77,-8.88 -4.44,-19.71 14.71,-23.6 18.04,-26.37 8.61,-7.77 10.27,-11.66 9.72,-12.22 7.5,0.28c11.38,-10.27 17.77,-11.66 12.77,6.11 8.61,-7.22 9.72,-3.89 6.11,3.61s-10.83,10.83 -16.1,11.66c4.44,6.66 3.61,14.71 3.61,14.71s5,-4.72 3.33,1.67 -4.16,6.66 -4.16,6.66 3.89,9.99 0.28,19.16C208.86,90.58 200.44,97.33 193.4,107.7Z"
android:fillColor="#d27440"/>
<path
android:pathData="M227.18,205.39l11.52,-7.77s-3.61,-12.22 -4.03,-20.54h3.05A122.39,122.39 0,0 1,251.19 204.27C243,207.89 230.93,207.89 227.18,205.39Z"
android:fillColor="#222"/>
<path
android:pathData="M209.41,202.88l-8.19,-16.38 -7.63,7.08Z"
android:fillColor="#222"/>
<path
android:pathData="M156.53,169s29.01,-18.46 36.37,-23.18c-10.97,-4.16 -20.96,-13.88 -24.99,-21.1 1.11,4.3 -2.5,3.75 -2.5,3.75s1.67,6.25 -4.72,8.19c-3.89,9.72 -2.78,11.1 -1.53,14.85S160.69,165.53 156.53,169Z"
android:fillColor="#222"/>
<path
android:pathData="M212.46,55.6c0.16,3.35 3.05,4.63 2.87,1.2S212.28,51.71 212.46,55.6Z"
android:fillColor="#222"/>
<path
android:pathData="M196.64,103.69s9.16,3.98 15.18,7.03 14.9,2.04 14.9,2.04l-13.97,5.18a37.69,37.69 0,0 1,-11.75 -3.98c-5.64,-3.15 -7.59,-6.48 -7.59,-6.48Z"
android:fillColor="#222"/>
<path
android:pathData="M235.32,128.9a118.74,118.74 0,0 0,-2.22 24.89c12.49,-1.11 29.8,-3.61 38.59,-8.33 -0.19,-6.57 -6.11,-16.1 -8.61,-17.86 0.19,9.35 -1.11,16.75 -4.44,17.58s-2.87,-4.07 -2.41,-7.77 0.74,-7.22 0.74,-7.22 0,0.37 -2.22,-0.37 -6.48,-7.87 -6.48,-7.87Z"
android:fillColor="#222"/>
<path
android:pathData="M310.04,10.35s-3.75,-1.39 -6.39,1.39S298.94,24.37 299.21,29.64s2.5,4.58 4.72,4.58c7.08,-5.97 8.05,-12.22 8.33,-13.88S311.71,12.71 310.04,10.35Z"
android:fillColor="#ffb34b"/>
<path
android:pathData="M220.52,115.61s-5,12.95 3.89,18.51c14.81,-7.22 23.87,-12.12 23.87,-12.12s3.52,8.05 8.14,8.61c-0.93,9.81 -1.3,14.99 2.22,14.62 3.73,-0.39 4.63,-8.7 4.07,-15.73s-2.22,-18.69 -13.69,-25.17C242.54,105.43 227.55,114.13 220.52,115.61Z"
android:fillColor="#d27440"/>
<path
android:pathData="M261.97,120.64l0.74,8.88a25.15,25.15 0,0 1,8.98 16.01c16.93,-6.39 27.3,-12.68 31.56,-16.19 9.62,3.33 21.28,-0.19 28.32,-5.74s8.7,-12.77 6.85,-20.54 -6.29,-9.99 -12.95,-9.25a12.15,12.15 0,0 0,-9.25 5.55s0.19,-12.77 -8.51,-12.95 -7.03,4.44 -1.3,9.44c2.78,3.89 1.48,11.1 -4.44,14.62S274.93,121.01 261.97,120.64Z"
android:fillColor="#d27440"/>
<path
android:pathData="M280.48,141.86l-7.77,-21.84 -10.73,0.56 1.67,10.92s6.29,4.26 8.05,13.97C278.26,143.34 280.48,141.86 280.48,141.86Z"
android:fillColor="#f7eed0"/>
<path
android:pathData="M288.07,263.87s-4.26,7.59 -21.47,9.44c4.44,13.51 27.39,12.95 39.42,9.25s17.21,-10.55 12.95,-14.99 -11.29,-4.07 -17.4,-2.78S288.07,263.87 288.07,263.87Z"
android:fillColor="#fff"/>
<path
android:pathData="M129.09,248.75l7.4,3.15 5,-5.37Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M156.11,244.5l5.74,3.33 5.37,-5.74Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M173.88,213.49l14.44,-8.33 12.59,4.44 2.22,0.19 -14.62,-8.51 -19.8,12.77Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M218.48,233.97l-5.37,6.48 -5.92,-5.37Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M230.51,231.94l4.44,4.07 6.66,-5.92Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M174.62,319.66l1.11,3.89s2.59,-6.48 -0.37,-9.25A33.95,33.95 0,0 0,174.62 319.66Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M205.16,312.63l3.33,5 1.48,4.63s-3.52,-1.11 -4.26,-3.33A10.42,10.42 0,0 1,205.16 312.63Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M225.14,315.04l1.85,3.7s-2.96,-0.93 -4.26,-2.78 -0.74,-5 -0.74,-5Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M228.11,315.61s-3.33,-13.51 -2.59,-21.28c-2.41,10.73 -3.52,16.66 -3.52,16.66A6.97,6.97 0,0 0,228.11 315.61Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M155.93,311.52l1.67,12.03 5.18,-2.41Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M159.26,326.5l0.74,-3.89 2.78,-1.48A7.65,7.65 0,0 1,159.26 326.5Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M193.5,107.88s8.33,-14.62 27.76,-20.36c4.44,-7.77 -0.37,-19.25 -0.37,-19.25s4.07,-1.85 4.81,-6.11 0.56,-5.37 -7.03,0.19"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M179.99,91.22s4.44,-2.78 4.26,-9.81c-8.51,-8.88 -5.37,-21.84 2.41,-33.13s14.06,-12.59 20.91,-23.69 9.81,-7.22 8.7,0.37c8.33,-10.36 13.14,-10.92 13.32,-3.89S228.11,30.34 228.11,30.34s9.62,-9.62 7.96,-0.74 -10.55,13.88 -17.95,16.1a20.82,20.82 0,0 1,3.15 15.18"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M222.18,71.97a49.09,49.09 0,0 1,-7.96 2.04c-3.15,0.37 -5,-2.41 -5.18,-5.18"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M196.83,61.43c-2.04,-5.74 -7.4,-3.52 -9.44,-0.74s-3.33,12.03 0.74,14.99 9.25,0 9.25,0"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M140.94,222.53c-14.81,-2.59 -21.47,-17.21 -22.39,-38.13s9.99,-54.23 32.76,-78.65c2.78,-20.91 17.58,-21.1 22.76,-19.43s16.66,19.62 23.5,25.17 15.92,6.29 15.92,6.29 12.4,-4.07 23.32,-8.88 11.48,-5.74 14.44,-3.33 8.7,7.03 10.92,17.77 1.11,12.95 1.11,12.95"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M261.6,120.64s6.66,1.11 25.91,-4.63 20.36,-10.36 20.36,-16.1 -9.99,-9.44 -4.07,-12.77 12.22,1.11 12.59,11.1"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M232.18,153.66s20.73,-0.37 40.35,-8.33S303.43,129.42 303.43,129.42"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M301.02,128.02s3.15,3.33 10.36,2.78A36.08,36.08 0,0 0,334.34 120.8c7.22,-7.03 5.37,-16.47 1.85,-22.95s-15.92,-5.55 -21.84,3.7 -2.78,23.13 9.99,25.91"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M314.77,120.74s7.28,-7.9 18.19,-6.52"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M311.69,110.75s2.88,-4.89 12.01,-7.31 10.98,-1.09 10.98,-1.09"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M193.31,126.5s9.99,-6.85 20.17,-8.7"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M208.67,121.67s-4.26,7.03 -3.52,10.92"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M196.83,142.21s18.51,-3.7 30.54,-9.25a157.27,157.27 0,0 0,20.91 -11.66s2.78,8.33 7.59,9.25"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M141.31,185.59s8.33,-12.59 18.51,-19.25"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M119.28,192.05a45.81,45.81 0,0 1,30.72 -16.29"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M193.13,194.06 L200.9,186.28l8.7,17.03"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M200.9,186.34s-1.3,-13.88 11.29,-25.91"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M194.98,166.71s-0.93,10.36 3.89,17.21"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M235.51,129.16a142.57,142.57 0,0 0,-1.67 41.64c2.59,21.84 4.81,26.65 4.81,26.65l-11.85,8.14a44.5,44.5 0,0 0,15.92 1.11c7.96,-1.11 13.32,-4.81 18.51,-1.11s0.56,16.29 -14.99,17.21"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M234.39,176.73a104.42,104.42 0,0 1,27.21 6.11c11.85,25.91 21.84,59.78 26.47,81.43 12.95,3.52 15.92,-3.15 26.65,0.74s5.55,12.95 -6.29,16.84 -26.1,4.63 -35.9,-1.67 -23.69,-38.31 -24.06,-51.63"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M192.57,145.55s-17.21,-3.52 -29.98,-30.17"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M156.11,122.23L169.25,130.56"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M162.96,136.45L149.26,136.27"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M206.08,39.5s6.11,-3.05 8.19,-8.05"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M213.44,42.69s7.22,-4.16 11.1,-8.61"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M305.26,29.79a28.34,28.34 0,0 0,3.22 -15.27c-0.27,-4.15 -1.34,-4.02 -1.34,-4.02s-2.29,-1.51 -4.84,4.22a40.81,40.81 0,0 0,-2.9 16.42C299.6,34.18 302.29,35.14 305.26,29.79Z"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M306.87,26.84L309.01,27.38"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M307.8,23.09L310.35,23.49"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M308.34,18.67L311.29,19.07"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M308.47,14.52L311.29,14.25"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M322.86,86.34s7.91,-13.3 -1.26,-23 -17.79,-3.59 -18.15,1.26 5.03,7.19 9.88,3.23 8.09,-20.12 0,-37.37"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M301.53,33.69l2.55,0.34s4.35,-1.59 6.83,-8.9a19.6,19.6 0,0 0,0 -13.66c-0.41,-1.03 -0.62,-1.24 -4.62,-1.31"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M305.88,29.41L308.09,29.97"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M304.77,31.28L306.77,31.62"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M303.67,32.59L305.67,32.79"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M188.13,191.57s-66.44,41.27 -86.24,61.63C162.96,243.21 255.13,227.48 255.13,227.48Z"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M148.71,321.83s0.19,5.74 6.66,5.18 7.4,-4.26 7.4,-4.26"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M128.72,253.57s-2.96,21.84 5.92,44.05 13.07,26.1 21.47,26.1a8.93,8.93 0,0 0,6.29 -2.78"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M151.49,249.31a99.58,99.58 0,0 0,-2.04 41.27c3.7,22.76 13.51,31.46 16.66,32.76s8.51,0.56 8.51,-6.85"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M177.03,317.92s0.37,6.66 -5.74,8.88c-6.77,2.46 -8.7,-2.59 -8.7,-5.18"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M146.85,246.31s2.41,4.44 9.07,3.7 9.62,-7.03 9.62,-7.03"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M122.98,250.18a8.53,8.53 0,0 0,9.07 3.33,18.39 18.39,0 0,0 9.44,-6.29"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M207.93,235.6s3.7,7.03 11.85,5.37 8.14,-8.51 8.14,-8.51"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M230.51,231.53s1.85,5.74 8.7,4.81 9.81,-4.63 9.25,-7.77"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M245.32,234.35s4.44,12.59 2.04,40.16 -8.14,38.49 -15.73,40.72 -9.25,-3.89 -9.25,-3.89"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M225.14,238.78s3.52,10.18 2.41,28.87 -3.89,39.05 -6.11,44.79a9.23,9.23 0,0 1,-9.25 6.29c-2.41,0 -5.55,0.37 -7.96,-12.95"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M205.34,315.72a6.89,6.89 0,0 0,7.4 6.85c7.4,0 9.25,-4.81 7.4,-7.03"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M221.44,312.4s-0.74,5.92 7.59,6.66 12.59,-5.92 9.99,-9.07"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M142.97,315.72 L132.61,318.5l-7.03,16.1 1.85,5.74 -5,0.93 0.93,6.66 -6.66,2.41 3.15,7.96s42.75,-2.96 83.47,-6.29 71.07,-5.74 71.07,-5.74l-4.44,-29.8 -4.63,-0.37 -1.48,-8.88 -4.07,0.19 -1.85,-11.1L243.84,298.51"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M257.9,296.45s-1.85,20.36 -2.59,27.39c-11.1,1.85 -36.64,4.81 -68.66,6.48s-61.07,4.44 -61.07,4.44"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M127.43,340.34s47.75,-2.78 74.77,-5 55.52,-7.03 55.52,-7.03"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M122.43,341.26s28.87,1.48 54.97,-0.37 53.3,-2.59 83.1,-8.14"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M123.35,347.93s38.31,-0.37 83.65,-4.44 56.26,-5.74 56.26,-5.74"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M116.69,350.33s24.98,0.37 43.49,-0.74 79.21,-3.7 108.27,-7.96"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M167.63,215.17s11.94,-8.88 20.82,-13.6c10.27,4.16 15.82,8.74 15.82,8.74s-4.44,-1.8 -5.97,1.39c-2.78,-5.14 -6.39,-2.08 -7.36,0.83 -1.53,-7.36 -7.91,-6.39 -7.36,0.56 -2.64,-4.72 -8.19,-2.5 -7.08,1.94C173.6,212.53 167.63,215.17 167.63,215.17Z"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M312.13,117.39s-2.78,-1.94 -8.19,1.39"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M288.07,264.2a100.8,100.8 0,0 0,1.71 11.48"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M293.8,265.68s-8.19,5.55 -11.52,7.22"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M297.51,265.68s-3.01,5.55 -2.59,9.02"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M242.03,126.65a9.03,9.03 0,0 0,-0.56 4.86c0.56,2.22 3.33,-0.28 4.44,-1.67 -2.22,7.08 -2.64,10.97 -0.83,11.38s4.58,-4.44 4.58,-4.44 -4.03,10.79 0,11.52c3.05,0.56 4.3,-3.47 4.3,-3.47"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#d27440"
android:strokeLineCap="round"/>
<path
android:pathData="M341.18,344.96s2.96,-15.55 7.59,-25.35"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M349.33,347.93s2.96,-13.51 6.85,-19.8"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M359.32,350.33s4.26,-12.03 8.33,-16.66"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M293.43,385.68s1.67,-18.51 6.11,-27.02"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M301.21,386.79s7.03,-17.21 10.36,-22.21"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M165.36,394.01s0.37,-16.1 -1.3,-24.24"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M154.82,396.23s-3.7,-19.62 -6.11,-25.91"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M142.6,396.05s-7.96,-15.36 -10.36,-18.69"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#54565a"
android:strokeLineCap="round"/>
<path
android:pathData="M158.89,223.87s7.03,-1.3 10.92,-1.76 4.53,3.89 0.83,4.72c3.89,0.74 4.81,4.07 0.74,4.9a103.77,103.77 0,0 1,-10.46 1.3"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M161.57,223.49L162.4,233.02"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M162.03,228.22L170.64,226.83"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M176.74,230.07l2.32,-10.74 6.39,9.79"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M175.19,230.58L179.07,230.15"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M183.73,229.46L189.51,228.6"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M177.95,227.22L183.47,226.02"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M182.85,218.6l2.87,-0.46 1.54,10.65"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M185.72,218.23l9.72,9.35 -1.79,-10.78"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M191.75,216.98l3.62,-0.6 3.97,-0.69"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M197.44,216.19L199.17,226.72"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M198.56,221.55l8.45,-7.16 2.67,-0.34"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M201.5,219.3l8.28,4.66 2.5,-0.34"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
<path
android:pathData="M197.36,227.14L201.5,226.45"
android:strokeLineJoin="round"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#222"
android:strokeLineCap="round"/>
</group>
</vector>

View File

@ -1,333 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="428dp"
android:height="418dp"
android:viewportWidth="428"
android:viewportHeight="418">
<group>
<clip-path
android:pathData="M0,0h428v418h-428z"/>
<path
android:pathData="M216.51,69.79A150.41,150.41 0,1 1,66.1 220.21,150.41 150.41,0 0,1 216.51,69.79Z"
android:strokeAlpha="0.3"
android:fillColor="#9bb9d4"
android:fillAlpha="0.3"/>
<path
android:pathData="M24.85,406.98L394.83,406.98A243.55,243.55 0,0 0,24.85 366.2Z"
android:fillColor="#99bcab"/>
<path
android:pathData="M76.43,406.98s45.06,-5.97 48.32,-26.06 -30.4,-21.72 -15.2,-40.72 42.35,-23.89 68.95,-21.17c-25.52,3.26 -53.21,20.63 -39.09,33.66s32.58,34.75 10.86,53.21C109.55,405.89 74.26,406.98 76.43,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M131.13,307.62s-50.09,13.85 -54.57,34.61 15.47,10.18 29.73,22.8 3.66,24.84 3.66,24.84 7.74,-19.14 -13.44,-22.8 -45.2,-0.81 -39.91,-17.51S99.78,315.36 131.13,307.62Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M166.97,305.99s-54.97,3.26 -70.04,30.54c13.44,-12.22 31.76,-22.4 81.03,-24.84C168.6,306.4 166.97,305.99 166.97,305.99Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M217.05,329.61s-19.95,14.66 15.88,30.95 47.64,38.68 48.05,47.24c25.25,0 36.24,-0.41 36.24,-0.41s-5.29,-21.58 -29.73,-35.02 -51.31,-17.92 -57.01,-25.65 -6.51,-14.25 3.26,-17.92S217.05,329.61 217.05,329.61Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M242.71,406.98s15.07,-12.22 1.63,-35.83c11.4,10.99 16.7,20.77 13.85,36.65C250.44,407.79 243.32,407.59 242.71,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M337.59,408.2s-7.74,-23.21 -49.68,-41.13c39.91,6.51 75.33,40.72 75.33,40.72Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M394.83,406.98s-40.96,-42.35 -100.68,-65.15C330.53,348.34 361.95,366.26 394.83,406.98Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M24.85,381.46s13.03,15.74 41.26,14.12S95.98,379.83 83.49,379.29s-15.2,8.69 -15.2,8.69 1.63,-11.94 16.83,-14.12S110.64,385.8 99.24,393.95 50.91,411.32 24.85,406.98C24.85,387.97 23.22,381.46 24.85,381.46Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M16.3,42.94S34.22,27.87 41.96,22.58s14.25,-7.33 21.17,-5.29S74.94,27.06 69.65,36.01 42.36,60.04 43.18,74.7 54.99,94.24 69.65,95.06l0.81,2.04s-7.33,3.66 -17.51,13.85 -21.99,24.02 -27.28,37.87 3.66,11.4 7.74,1.22c-4.48,13.03 0.81,14.25 7.74,2.04 -2.04,13.44 3.26,9.77 9.77,-3.26 8.96,7.74 15.07,2.04 6.92,-6.92 9.77,-19.14 13.03,-17.92 13.03,-17.92l2.04,25.25 10.99,0.81s-4.07,16.7 -9.36,24.84c-10.99,-5.7 -10.99,-7.33 -19.14,0.41s-10.18,26.06 -3.26,28.5 11.4,-4.07 12.22,-8.55c14.25,2.04 25.65,0.81 40.72,-30.95 23.62,-6.92 26.47,-6.11 26.47,-6.11a56.69,56.69 0,0 1,-6.11 26.88c-6.92,13.03 -10.59,15.07 -4.48,22.4s17.51,13.44 24.43,8.96 -6.52,-15.47 -6.52,-15.47a53.49,53.49 0,0 0,16.29 -34.21c1.63,-21.58 1.22,-61.49 1.22,-61.49s19.55,-10.18 31.35,-23.62 17.92,-24.84 19.95,-31.35 -0.41,-7.33 -6.92,-0.41c5.29,-12.22 4.48,-17.1 -7.33,-5.29C202.8,30.31 197.92,29.09 188.14,40.9l-4.89,7.33s-4.07,-11.4 -6.92,-10.18 -3.26,8.14 0.41,18.73c-6.52,13.44 -20.36,21.99 -20.36,21.99L156.38,73.48l-4.89,-1.22S151.9,35.61 116.47,34.79s-32.98,40.72 -32.98,40.72L70.05,80.4l0.41,6.92s-6.92,0.41 -12.62,-2.04S46.03,73.07 57.43,61.26s24.84,-22.8 21.17,-37.46S62.72,6.69 47.66,13.21 13.45,38.87 13.45,38.87Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M243.3,93.88l-4.34,7.6 -38.73,-7.24S173.98,217.49 169.09,238.49 157.87,267.8 152.62,272.87c2.71,-14.12 10.86,-48.32 10.86,-48.32l32.21,-138.81Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M312.34,108.09l56.19,14.66 -61.9,231.84L142.4,314.41l5.16,-22.26s27.15,12.22 52.67,20.63 63.8,20.63 63.8,20.63 9.77,-5.97 15.74,-8.14 23.08,-18.73 29.59,-31.22 11.13,-28.23 14.93,-44.25 30.4,-122.43 30.4,-122.43l-41.81,-10.32Z"
android:fillColor="#ff8772"/>
<path
android:pathData="M238.95,101.48l-38.73,-7.24s-27.69,133.29 -31.76,148.22 -10.05,33.12 -35.29,39.91c11.67,9.77 26.88,16.56 59.45,27.42s71.4,23.62 71.4,23.62 19,-7.87 31.49,-20.63A98.52,98.52 0,0 0,314.24 284.82l40.45,-157.45 -41.81,-10.32 -1.36,7.6 -74.93,-15.2Z"
android:fillColor="#fff"/>
<path
android:pathData="M308.68,102.8c-5.7,-7.74 -11.81,-6.92 -11.81,-6.92s6.51,-22.4 -9.37,-25.25 -20.36,19.95 -20.36,19.95 -24.43,-10.99 -30.54,18.73l74.52,15.47S314.38,110.53 308.68,102.8ZM280.99,92.21c-11.4,-3.66 -2.39,-14.77 4.07,-13.85C296.46,79.99 292.39,95.87 280.99,92.21Z"
android:fillColor="#d8e8f5"/>
<path
android:pathData="M306.23,355.54a1.5,1.5 0,0 1,-0.35 -0.04l-163.7,-39.5a1.5,1.5 0,0 1,-1.11 -1.8l5.14,-22.24a1.5,1.5 0,1 1,2.92 0.68l-4.81,20.8 160.83,38.81 61.53,-228.42L310.74,109.13a1.5,1.5 0,1 1,0.76 -2.9l57.42,15.07a1.5,1.5 0,0 1,1.07 1.84L307.68,354.43A1.5,1.5 0,0 1,306.23 355.54Z"
android:fillColor="#222"/>
<path
android:pathData="M152.31,274.1a1.5,1.5 0,0 1,-1.46 -1.84l43.16,-186.91a1.5,1.5 0,0 1,1.71 -1.14l48.46,8.14a1.5,1.5 0,0 1,-0.5 2.96l-47.06,-7.91L153.77,272.94A1.5,1.5 0,0 1,152.31 274.1Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,126.29a1.5,1.5 0,0 1,-0.31 -0.03L236.29,110.78a1.5,1.5 0,0 1,-1.16 -1.77c1.65,-8.04 4.79,-13.97 9.32,-17.63A19.7,19.7 0,0 1,257.17 87.09a28.75,28.75 0,0 1,8.9 1.49,42.29 42.29,0 0,1 3.44,-8.81 24.34,24.34 0,0 1,5.8 -7.39,14.63 14.63,0 0,1 9.5,-3.5 16.76,16.76 0,0 1,2.95 0.27,13.15 13.15,0 0,1 9.31,6.04 17.72,17.72 0,0 1,2.35 6.86,31.1 31.1,0 0,1 0.16,6.82 42.78,42.78 0,0 1,-0.82 5.58,13.28 13.28,0 0,1 3.73,1.12 19.47,19.47 0,0 1,7.39 6.34,18.4 18.4,0 0,1 3.05,7.29 33.98,33.98 0,0 1,0.6 7.53,46.08 46.08,0 0,1 -0.95,8.39A1.5,1.5 0,0 1,311.12 126.29ZM238.39,108.15 L309.93,123.01c0.61,-3.7 1.75,-13.61 -2.46,-19.32 -4.33,-5.88 -8.81,-6.34 -10.08,-6.34 -0.19,0 -0.3,0.01 -0.33,0.01a1.47,1.47 0,0 1,-1.33 -0.5,1.5 1.5,0 0,1 -0.3,-1.41c0.03,-0.12 3.35,-11.83 -0.91,-18.68a10.14,10.14 0,0 0,-7.28 -4.67,13.76 13.76,0 0,0 -2.42,-0.22c-5.07,0 -9.32,3.11 -12.62,9.25a39.47,39.47 0,0 0,-3.58 9.74,1.5 1.5,0 0,1 -2.09,1.08A25.64,25.64 0,0 0,257.17 90.09C247.68,90.09 241.21,96.33 238.39,108.15Z"
android:fillColor="#222"/>
<path
android:pathData="M284.28,76.81h0a7.04,7.04 0,0 1,0.99 0.07,9.6 9.6,0 0,1 6.29,3.29 8.19,8.19 0,0 1,1.76 5.76,9.03 9.03,0 0,1 -2.61,5.74 8.89,8.89 0,0 1,-6.44 2.59,12.24 12.24,0 0,1 -3.74,-0.62 10.21,10.21 0,0 1,-5.26 -3.38,6.26 6.26,0 0,1 -1.16,-4.8C274.81,81.01 279.75,76.81 284.28,76.81ZM284.27,91.26a5.91,5.91 0,0 0,6.06 -5.54c0.17,-2.43 -1.18,-5.25 -5.48,-5.86a4.03,4.03 0,0 0,-0.57 -0.04h0a7.51,7.51 0,0 0,-4.57 1.94,7.4 7.4,0 0,0 -2.63,4.17 3.28,3.28 0,0 0,0.6 2.55,7.37 7.37,0 0,0 3.76,2.31A9.26,9.26 0,0 0,284.27 91.26Z"
android:fillColor="#222"/>
<path
android:pathData="M264.29,335.18a1.5,1.5 0,0 1,-0.48 -0.08c-13.27,-4.48 -26.13,-8.64 -38.56,-12.66 -21.43,-6.93 -41.68,-13.47 -57.8,-19.76 -17.97,-7.01 -29.32,-13.12 -35.72,-19.23a1.5,1.5 0,0 1,0.68 -2.54c16.02,-3.9 25.33,-12.5 31.11,-28.77 6.41,-18.02 34.68,-157.2 34.96,-158.61a1.5,1.5 0,0 1,1.75 -1.18l38.68,7.33a1.5,1.5 0,0 1,-0.56 2.95l-37.23,-7.05c-1.43,7.01 -7.82,38.35 -14.77,71.1 -10.55,49.71 -17.28,78.81 -20.01,86.47 -3.24,9.12 -7.59,15.98 -13.3,20.99a39.28,39.28 0,0 1,-9.17 5.98,52.06 52.06,0 0,1 -8.01,2.99c6.41,5.25 16.92,10.64 32.68,16.79 16.04,6.26 36.24,12.78 57.63,19.7 12.26,3.96 24.92,8.06 38.01,12.47 40.29,-20.31 48.38,-42.06 56.07,-72.85 7.14,-28.57 29.49,-118.33 32.62,-130.88l-41.3,-10.23a1.5,1.5 0,1 1,0.72 -2.91l42.76,10.59a1.5,1.5 0,0 1,1.1 1.82c-0.25,1.01 -25.33,101.75 -32.98,132.34a212.03,212.03 0,0 1,-6.44 21.87,89.09 89.09,0 0,1 -9.81,19.48c-8.96,13.18 -22.29,23.9 -41.95,33.74A1.5,1.5 0,0 1,264.29 335.18Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,124.78s6.92,-8.14 5.29,-15.88a19.27,19.27 0,0 0,-4.89 -1.22S313.15,117.46 311.12,124.78Z"
android:fillColor="#222"/>
<path
android:pathData="M311.12,290.52l-10.18,41.13 -24.84,-4.89S300.12,312.51 311.12,290.52Z"
android:fillColor="#222"/>
<path
android:pathData="M197.92,312.91l-46.83,-7.33 6.51,-8.14"
android:fillColor="#222"/>
<path
android:pathData="M92.18,95.74a1.49,1.49 0,0 1,-0.81 -0.24c-4.3,-2.79 -7.48,-8.31 -8.94,-15.53a44.49,44.49 0,0 1,-0.8 -10.73,46.28 46.28,0 0,1 1.84,-11.14A35.35,35.35 0,0 1,94 41.13a29.28,29.28 0,0 1,9.15 -5.33,34.74 34.74,0 0,1 11.84,-1.96c7.56,0 14.18,1.64 19.66,4.88a31.6,31.6 0,0 1,11.73 12.31,40.65 40.65,0 0,1 4.07,11.36 49.5,49.5 0,0 1,0.93 11.91c-0.32,7.8 -2.44,15.27 -5.8,20.49a1.5,1.5 0,1 1,-2.52 -1.63c5.96,-9.24 7.93,-27.43 0.7,-40.69 -3.89,-7.13 -12.03,-15.63 -28.76,-15.63 -14.04,0 -24.49,8.06 -28.65,22.12a43.1,43.1 0,0 0,-0.97 20.42c1.28,6.33 4.07,11.29 7.64,13.61a1.5,1.5 0,0 1,-0.82 2.76Z"
android:fillColor="#54565a"/>
<path
android:pathData="M42.78,162.46a2.86,2.86 0,0 1,-1.19 -0.25c-0.9,-0.41 -2,-1.48 -2.24,-4.23 -1.84,2.48 -3.61,3.74 -5.27,3.74A3.95,3.95 0,0 1,30.64 160.34a3.9,3.9 0,0 1,-0.66 -2.08,5.15 5.15,0 0,1 -3.95,1.45 3.68,3.68 0,0 1,-2.55 -1.59,5.74 5.74,0 0,1 -0.94,-2.98c-0.32,-5.85 8,-21.53 24.54,-40.17A114.96,114.96 0,0 1,60.44 102.21a131.14,131.14 0,0 1,12.5 -9,104.75 104.75,0 0,1 12.93,-7.13 1.5,1.5 0,0 1,1.2 2.75h0A104.11,104.11 0,0 0,74.5 95.79a120.94,120.94 0,0 0,-25.18 21.17,157.85 157.85,0 0,0 -18.42,24.7c-4.11,7.05 -5.46,11.5 -5.36,13.31 0.05,0.99 0.41,1.7 0.88,1.76s1.32,-0.3 2.35,-1.49a18.84,18.84 0,0 0,3.21 -5.97q0.2,-0.59 0.42,-1.22a1.5,1.5 0,0 1,2.84 0.96q-0.21,0.65 -0.44,1.27A41.7,41.7 0,0 0,33.09 156.49c-0.26,1.62 -0.04,2.06 -0.01,2.11a2.38,2.38 0,0 0,1 0.11c0.39,0 1.56,-0.63 3.21,-3.02a25.85,25.85 0,0 0,3.23 -6.51,1.5 1.5,0 0,1 2.88,0.85 25.88,25.88 0,0 0,-1.1 7.04,4.17 4.17,0 0,0 0.52,2.4c0.28,-0.05 1.2,-0.57 2.5,-2.53 3.86,-5.78 4.34,-8.61 4.37,-8.82a1.47,1.47 0,0 1,1.07 -1.31,1.51 1.51,0 0,1 1.63,0.57c0.72,0.98 3.06,3.56 5.16,3.74a2.34,2.34 0,0 0,2.29 -1.19c0.82,-1.64 -0.4,-4.53 -3.26,-7.71a1.5,1.5 0,0 1,-0.25 -1.63A48.23,48.23 0,0 1,72.47 121.29a59.14,59.14 0,0 1,9.6 -5.53,66.96 66.96,0 0,1 9.13,-3.41 1.5,1.5 0,0 1,0.84 2.88C83.24,117.81 67.44,124.56 59.48,140.96a16.58,16.58 0,0 1,3.23 5.44,6.34 6.34,0 0,1 -0.17,4.86 5.06,5.06 0,0 1,-2.29 2.28,5.61 5.61,0 0,1 -2.94,0.57 9.13,9.13 0,0 1,-5.23 -2.66q-0.11,-0.1 -0.22,-0.2a40.77,40.77 0,0 1,-4.04 7.36,11.31 11.31,0 0,1 -2.84,3.1A3.89,3.89 0,0 1,42.78 162.46Z"
android:fillColor="#54565a"/>
<path
android:pathData="M55.53,206.42a8.7,8.7 0,0 1,-6.57 -3.44,10.19 10.19,0 0,1 -2.15,-6.3 25.51,25.51 0,0 1,0.92 -7.44,39.97 39.97,0 0,1 6.06,-13.12c2.14,-2.81 3.83,-5.03 5.5,-6.32a6.08,6.08 0,0 1,6.24 -0.97,53.45 53.45,0 0,1 7.71,3.74 54.88,54.88 0,0 0,2.93 -5.54,98.52 98.52,0 0,0 6.66,-20.45 70.45,70.45 0,0 0,1.51 -21.49,36.56 36.56,0 0,0 -1.46,-7.82 1.5,1.5 0,1 1,2.83 -1.01,38.28 38.28,0 0,1 1.61,8.4 65.39,65.39 0,0 1,0.2 9.7,80.18 80.18,0 0,1 -1.75,12.85 101.35,101.35 0,0 1,-6.93 21.18,46.35 46.35,0 0,1 -3.91,7.07 1.5,1.5 0,0 1,-2 0.4,57.46 57.46,0 0,0 -8.41,-4.21 3.1,3.1 0,0 0,-3.4 0.52,34.76 34.76,0 0,0 -4.95,5.76 37.31,37.31 0,0 0,-5.54 12.06,22.56 22.56,0 0,0 -0.83,6.55 7.33,7.33 0,0 0,1.44 4.49c1.1,1.29 2.87,2.73 5.08,2.3a6.53,6.53 0,0 0,3.53 -2.29A17.65,17.65 0,0 0,63.07 195.02a1.5,1.5 0,0 1,1.52 -1.02c16.59,1.05 19.62,-1.94 28.58,-13.54 8.82,-11.42 10.86,-16.57 10.91,-16.71a1.48,1.48 0,0 1,0.89 -0.89c0.21,-0.08 5.31,-1.95 12.02,-3.68a101.42,101.42 0,0 1,10.96 -2.24,44.69 44.69,0 0,1 10.81,-0.41 1.5,1.5 0,1 1,-0.32 2.98c-4.92,-0.54 -12.07,0.35 -20.68,2.57 -5.27,1.36 -9.61,2.83 -11.16,3.38 -0.81,1.77 -3.54,7.09 -11.06,16.83 -4.58,5.93 -7.92,9.99 -12.47,12.36 -4.16,2.16 -9.14,2.86 -17.54,2.4a19.55,19.55 0,0 1,-3.4 5.97,9.46 9.46,0 0,1 -5.22,3.26A7.2,7.2 0,0 1,55.53 206.42Z"
android:fillColor="#54565a"/>
<path
android:pathData="M141.47,219.73a23.29,23.29 0,0 1,-4.52 -0.5,25.35 25.35,0 0,1 -12.15,-6.3 44.27,44.27 0,0 1,-6.99 -8.46,7.1 7.1,0 0,1 -0.76,-6.31 38,38 0,0 1,3.21 -6.88,86.4 86.4,0 0,0 5,-10.45 55.85,55.85 0,0 0,3.43 -22.66,1.5 1.5,0 0,1 2.99,-0.28 49.37,49.37 0,0 1,-0.03 7.44,58.25 58.25,0 0,1 -3.59,16.59 90.16,90.16 0,0 1,-5.16 10.79c-2.82,5.21 -4.11,7.82 -2.59,10.1 3.82,5.72 8.85,11.8 17.24,13.48a16.73,16.73 0,0 0,5.38 0.35,3.13 3.13,0 0,0 2.39,-1.19c0.48,-0.82 0.31,-2.23 -0.49,-4.09a39.7,39.7 0,0 0,-6.28 -9.18,1.5 1.5,0 0,1 -0.03,-1.91c12.19,-15.17 13.86,-24.42 15.97,-40.79 2.14,-16.57 1.05,-47.97 -0.55,-64.27a1.5,1.5 0,1 1,2.99 -0.29c0.87,8.88 1.51,20.97 1.7,32.33 0.16,9.51 0.09,22.89 -1.17,32.62 -1.02,7.89 -2.06,14.96 -4.45,21.69 -2.32,6.5 -5.85,12.59 -11.39,19.63 6.12,7.38 8.18,12.55 6.28,15.79C146.82,218.8 144.63,219.73 141.47,219.73Z"
android:fillColor="#54565a"/>
<path
android:pathData="M156.24,107.15a1.5,1.5 0,0 1,-1.24 -2.34l8.42,-12.49A1.5,1.5 0,0 1,165.91 94l-5.22,7.75q0.53,-0.32 1.12,-0.69a121.84,121.84 0,0 0,18.11 -14.68c17.48,-16.62 23.68,-30.72 25.72,-35.35a13.35,13.35 0,0 0,1.07 -3.5,3.53 3.53,0 0,0 -0.01,-1.32c-0.48,0.14 -2.12,0.88 -5.28,4.98a1.5,1.5 0,0 1,-2.47 -1.69,29.14 29.14,0 0,0 3.18,-7.06c0.52,-1.94 0.36,-2.88 0.24,-3.13A4.87,4.87 0,0 0,199.91 40.53a39.99,39.99 0,0 0,-6.15 6.1,1.5 1.5,0 0,1 -2.31,-1.92 35.41,35.41 0,0 0,4.88 -7.5,7.94 7.94,0 0,0 0.87,-2.97 6.06,6.06 0,0 0,-1.48 0.92c-4.91,3.88 -10.75,12.6 -10.81,12.69a1.5,1.5 0,0 1,-2.24 0.29,17.51 17.51,0 0,1 -4.2,-6.28 2.03,2.03 0,0 0,-2.17 -1.43c-0.97,0.24 -1.44,1.8 -1.19,3.97a40.04,40.04 0,0 0,2.85 11.21,1.5 1.5,0 0,1 -0.01,1.29 62.64,62.64 0,0 1,-7.1 10.81,57.2 57.2,0 0,1 -8.65,8.72 40.1,40.1 0,0 1,-11.98 6.76,1.5 1.5,0 1,1 -0.98,-2.84c8.64,-2.97 15.25,-9.54 19.27,-14.52a63.13,63.13 0,0 0,6.43 -9.63,44.51 44.51,0 0,1 -2.82,-11.44 8.72,8.72 0,0 1,0.58 -4.82,4.34 4.34,0 0,1 2.87,-2.41 4.56,4.56 0,0 1,3.38 0.53,5.39 5.39,0 0,1 2.31,2.73 14.62,14.62 0,0 0,2.23 3.85c1.99,-2.8 6.36,-8.65 10.37,-11.81a8.01,8.01 0,0 1,2.71 -1.51,2.72 2.72,0 0,1 2.81,0.61 3.34,3.34 0,0 1,0.81 2.71,9.78 9.78,0 0,1 -0.6,2.55 6.97,6.97 0,0 1,1.86 -0.75,3.18 3.18,0 0,1 2.65,0.44 3.49,3.49 0,0 1,1.34 2.66,10.17 10.17,0 0,1 -0.32,3.26q-0.11,0.47 -0.26,0.96a3.34,3.34 0,0 1,3.39 -0.17c0.76,0.45 1.63,1.47 1.48,3.76a15.13,15.13 0,0 1,-1.35 4.91,96.09 96.09,0 0,1 -8.06,14.78 126.49,126.49 0,0 1,-18.34 21.53c-16.63,15.81 -24.96,18.43 -25.31,18.54A1.5,1.5 0,0 1,156.24 107.15Z"
android:fillColor="#54565a"/>
<path
android:pathData="M156.25,80.54a1.5,1.5 0,0 1,-1.5 -1.44l-0.21,-5.15 -4.06,-0.2a1.5,1.5 0,0 1,0.15 -3l5.43,0.27a1.5,1.5 0,0 1,1.42 1.44l0.27,6.51a1.5,1.5 0,0 1,-1.44 1.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M70.19,97.92a1.5,1.5 0,0 1,-1.5 -1.44c0,-0.06 -0.27,-6.65 -0.27,-15.81a1.5,1.5 0,0 1,0.65 -1.23c3.72,-2.58 13.15,-4.75 13.55,-4.84a1.5,1.5 0,0 1,0.67 2.92c-2.38,0.55 -8.8,2.25 -11.86,3.98 0.01,8.65 0.27,14.79 0.27,14.85a1.5,1.5 0,0 1,-1.44 1.56Z"
android:fillColor="#54565a"/>
<path
android:pathData="M79.83,151.44a24.42,24.42 0,0 1,-7.1 -1.2,1.5 1.5,0 0,1 -1.06,-1.43c0,-4.77 -1.61,-24.92 -1.62,-25.13a1.5,1.5 0,1 1,2.99 -0.24c0.06,0.78 1.44,18 1.62,24.23a18.96,18.96 0,0 0,5.97 0.74,6.9 6.9,0 0,0 2.21,-0.42l-0.02,0.01 1.34,2.68a8.71,8.71 0,0 1,-3.06 0.7Q80.48,151.44 79.83,151.44Z"
android:fillColor="#54565a"/>
<path
android:pathData="M119.46,44.15A27.42,27.42 0,0 1,138.85 90.97,27.42 27.42,0 1,1 108.79,46.31 27.25,27.25 0,0 1,119.46 44.15ZM119.46,96A24.42,24.42 0,1 0,95.04 71.58,24.45 24.45,0 0,0 119.46,96Z"
android:fillColor="#54565a"/>
<path
android:pathData="M141.04,107.68a1.5,1.5 0,0 1,1.49 1.32l3.53,28.5a1.5,1.5 0,0 1,-1.23 1.66l-33.66,5.97a1.5,1.5 0,0 1,-1.76 -1.38l-1.9,-30.13a1.5,1.5 0,0 1,1.3 -1.58l32.03,-4.34A1.5,1.5 0,0 1,141.04 107.68ZM142.91,136.45l-3.17,-25.59 -29.15,3.95 1.71,27.06Z"
android:fillColor="#222"/>
<path
android:pathData="M118.01,115.6h0c1.95,0 3.43,1.87 3.51,4.44a5.8,5.8 0,0 1,-0.88 3.35,4.28 4.28,0 0,1 -3.39,1.94c-0.14,0.01 -0.28,0.01 -0.42,0.01a3.75,3.75 0,0 1,-3.99 -2.82,5.21 5.21,0 0,1 0.67,-3.71 7.1,7.1 0,0 1,2.98 -2.84A3.4,3.4 0,0 1,118.01 115.6ZM116.82,122.34c0.08,0 0.15,0 0.23,-0.01 0.76,-0.05 1.23,-0.54 1.4,-1.46a3.43,3.43 0,0 0,-0.09 -1.63,1.27 1.27,0 0,0 -0.37,-0.64 0.59,0.59 0,0 0,-0.17 0.06,3.48 3.48,0 0,0 -2.07,3.18C115.79,121.98 115.87,122.35 116.82,122.35Z"
android:fillColor="#373a40"/>
<path
android:pathData="M125.03,120.99a1.5,1.5 0,0 1,-1.49 -1.3A1.5,1.5 0,0 1,124.83 118L137.04,116.38A1.5,1.5 0,0 1,138.73 117.66a1.5,1.5 0,0 1,-1.29 1.68L125.23,120.98A1.51,1.51 0,0 1,125.03 120.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M117.87,126.85h0a3.73,3.73 0,0 1,1.07 0.16,6.24 6.24,0 0,1 3.08,1.84 3.66,3.66 0,0 1,0.84 2.91c-0.35,2.4 -2.97,4.43 -5.71,4.43a3.32,3.32 0,0 1,-2.95 -1.67,5.78 5.78,0 0,1 0.27,-5.49A3.96,3.96 0,0 1,117.87 126.85ZM117.15,133.19a2.9,2.9 0,0 0,2.74 -1.87c0.12,-0.79 -1.36,-1.3 -1.81,-1.44a0.74,0.74 0,0 0,-0.21 -0.03c-0.37,0 -0.68,0.47 -0.8,0.68a2.94,2.94 0,0 0,-0.27 2.49C116.85,133.11 116.9,133.19 117.15,133.19Z"
android:fillColor="#373a40"/>
<path
android:pathData="M125.3,132.93A1.5,1.5 0,0 1,123.82 131.69,1.5 1.5,0 0,1 125.04,129.96L135.9,128.06A1.5,1.5 0,0 1,137.63 129.28a1.5,1.5 0,0 1,-1.22 1.74L125.56,132.91A1.51,1.51 0,0 1,125.3 132.93Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.29,205.13a13.44,13.44 0,0 1,-1.03 -4.35,37.91 37.91,0 0,1 1.19,-12.69A34.61,34.61 0,0 1,55.46 180.21a40.7,40.7 0,0 1,3.84 -5.95,35.92 35.92,0 0,1 4.77,-5.15 1.5,1.5 0,0 1,1.93 2.3,33.78 33.78,0 0,0 -4.38,4.76 34.67,34.67 0,0 0,-6.26 12.64,35.2 35.2,0 0,0 -1.14,11.44 11.78,11.78 0,0 0,0.76 3.57l-0.01,-0.01Z"
android:fillColor="#54565a"/>
<path
android:pathData="M142.06,215.86a25.17,25.17 0,0 1,-12.35 -3.03c-6.55,-3.7 -12.02,-13.74 -12.26,-14.17a1.5,1.5 0,0 1,2.64 -1.43h0c0.05,0.1 5.3,9.71 11.09,12.98 6.28,3.55 13.28,2.64 15.28,2.27a1.5,1.5 0,0 1,0.54 2.95A28.31,28.31 0,0 1,142.06 215.86Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.89,124.75a6.41,6.41 0,0 1,-4.32 -1.69A22.09,22.09 0,0 1,44.76 118.66a1.5,1.5 0,0 1,2.54 -1.59,19.35 19.35,0 0,0 3.24,3.74c0.94,0.82 3.12,2.73 9.97,-3.26 3.59,-3.14 5.36,-5.51 5.42,-7.23 0.02,-0.57 -0.11,-1.48 -1.42,-2.79L61.26,104.26a1.5,1.5 0,1 1,2.12 -2.12l3.26,3.26a6.68,6.68 0,0 1,2.3 5.01,8.27 8.27,0 0,1 -1.77,4.5 30.06,30.06 0,0 1,-4.67 4.89c-3.23,2.82 -5.95,4.4 -8.32,4.83A7.26,7.26 0,0 1,52.89 124.75Z"
android:fillColor="#54565a"/>
<path
android:pathData="M56.89,122.35A1.5,1.5 0,0 1,55.76 121.84L49.52,114.78a1.5,1.5 0,0 1,0.13 -2.12,1.5 1.5,0 0,1 2.12,0.13L58.01,119.85A1.5,1.5 0,0 1,56.89 122.35Z"
android:fillColor="#54565a"/>
<path
android:pathData="M63.94,116.65a1.5,1.5 0,0 1,-1.04 -0.42l-7.6,-7.33A1.5,1.5 0,0 1,55.26 106.78,1.5 1.5,0 0,1 57.39,106.74l7.6,7.33A1.5,1.5 0,0 1,63.94 116.65Z"
android:fillColor="#54565a"/>
<path
android:pathData="M73.99,197a1.49,1.49 0,0 1,-1.02 -0.4,6.74 6.74,0 0,1 -2.35,-4.55 7.36,7.36 0,0 1,1.32 -4.47,21 21,0 0,1 7.96,-6.59 22.23,22.23 0,0 1,4.32 -1.72,5.84 5.84,0 0,1 3.66,-0.09 21.27,21.27 0,0 1,5.33 3.54,1.5 1.5,0 0,1 -2.04,2.2h0a18.48,18.48 0,0 0,-4.44 -2.97,4.74 4.74,0 0,0 -1.99,0.29 20.64,20.64 0,0 0,-3.81 1.6c-3.05,1.63 -5.54,3.75 -6.65,5.66a3.5,3.5 0,0 0,0.73 4.89,1.5 1.5,0 0,1 -1.02,2.6Z"
android:fillColor="#54565a"/>
<path
android:pathData="M87.02,190.49a1.5,1.5 0,0 1,-1.11 -0.49l-5.7,-6.24a1.5,1.5 0,0 1,0.1 -2.12,1.5 1.5,0 0,1 2.12,0.1l5.7,6.24A1.5,1.5 0,0 1,87.02 190.49Z"
android:fillColor="#54565a"/>
<path
android:pathData="M80.5,195.1a1.5,1.5 0,0 1,-1.15 -0.54L73.65,187.78A1.5,1.5 0,0 1,73.84 185.67a1.5,1.5 0,0 1,2.11 0.18l5.7,6.79A1.5,1.5 0,0 1,80.5 195.1Z"
android:fillColor="#54565a"/>
<path
android:pathData="M147.29,190.22q-0.07,0 -0.14,-0.01a6.51,6.51 0,0 1,-4.83 -2.32c-1.88,-2.46 -1.22,-6.14 -0.65,-9.38l0.07,-0.38c0.43,-2.46 2.18,-10.53 6.47,-11a32.77,32.77 0,0 1,6.62 0.28,1.5 1.5,0 0,1 -0.42,2.97 30.31,30.31 0,0 0,-5.87 -0.27c-0.41,0.05 -1.18,0.71 -2,2.42a24.46,24.46 0,0 0,-1.84 6.13l-0.07,0.38c-0.47,2.64 -1,5.62 0.08,7.03a3.66,3.66 0,0 0,2.72 1.15,1.5 1.5,0 0,1 -0.13,2.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M151.09,184.79a1.5,1.5 0,0 1,-0.38 -0.05L142.3,182.57A1.5,1.5 0,0 1,141.22 180.74,1.5 1.5,0 0,1 143.05,179.66L151.46,181.83a1.5,1.5 0,0 1,-0.37 2.95Z"
android:fillColor="#54565a"/>
<path
android:pathData="M152.99,177.46a1.51,1.51 0,0 1,-0.23 -0.02L144.07,176.08A1.5,1.5 0,0 1,142.82 174.37,1.5 1.5,0 0,1 144.53,173.12L153.22,174.47a1.5,1.5 0,0 1,-0.23 2.98Z"
android:fillColor="#54565a"/>
<path
android:pathData="M69.92,89.23A29.91,29.91 0,0 1,57.96 87a14.31,14.31 0,0 1,-7.32 -6.58,12.53 12.53,0 0,1 -0.81,-8.43 25.66,25.66 0,0 1,5.07 -9.89c2.58,-3.32 5.65,-6.56 8.61,-9.7C68.53,47.09 73.73,41.59 76.29,35.92c2.79,-6.18 2.18,-11.87 -1.91,-17.93a14.01,14.01 0,0 0,-11.37 -6.22c-8.65,-0.52 -18.61,4.3 -25.45,8.44A97.89,97.89 0,0 0,15.4 38.49a1.5,1.5 0,0 1,-2.12 0.15A1.5,1.5 0,0 1,13.13 36.52,101.05 101.05,0 0,1 36.01,17.64 73.43,73.43 0,0 1,49.85 10.98a35.04,35.04 0,0 1,13.34 -2.21,18.57 18.57,0 0,1 7.64,2.03 16.7,16.7 0,0 1,6.04 5.5c4.67,6.91 5.38,13.73 2.16,20.85C76.26,43.28 70.88,48.97 65.68,54.46c-2.92,3.09 -5.93,6.28 -8.43,9.48 -4.49,5.78 -5.89,11.16 -3.93,15.16 2.18,4.46 8.38,7.12 16.59,7.12a1.5,1.5 0,0 1,0 3Z"
android:fillColor="#54565a"/>
<path
android:pathData="M68.06,96.08a34.17,34.17 0,0 1,-11.58 -1.86,22.54 22.54,0 0,1 -9.56,-6.36A20.17,20.17 0,0 1,42.48 79.15a24,24 0,0 1,-0.1 -10.17c1.56,-7.97 8.47,-15.07 15.14,-21.93C62.88,41.54 67.95,36.33 69.58,31.34c1.26,-3.87 0.76,-7.05 -1.45,-9.19a11.61,11.61 0,0 0,-7.4 -2.81A29.63,29.63 0,0 0,48.98 21.27C41.36,24 33.91,29.69 29,33.99a104.12,104.12 0,0 0,-8.98 8.84,1.5 1.5,0 0,1 -2.12,0.15 1.5,1.5 0,0 1,-0.15 -2.12A104.99,104.99 0,0 1,26.98 31.76,91.8 91.8,0 0,1 36.6,24.34 53.28,53.28 0,0 1,47.97 18.45a32.62,32.62 0,0 1,12.98 -2.1,14.52 14.52,0 0,1 9.28,3.65C73.26,22.95 74.04,27.31 72.43,32.27c-1.84,5.65 -7.14,11.1 -12.75,16.87 -6.37,6.55 -12.96,13.32 -14.35,20.41 -1.23,6.26 0.14,12.06 3.85,16.34 4.43,5.09 11.95,7.62 21.2,7.12a1.5,1.5 0,0 1,0.16 3Q69.28,96.08 68.06,96.08Z"
android:fillColor="#54565a"/>
<path
android:pathData="M90.28,92.62L77.25,92.62l9.23,-4.89Z"
android:fillColor="#54565a"/>
<path
android:fillColor="#FF000000"
android:pathData="M86.21,132.79s10.86,-8.69 5.7,-19.27c-4.89,1.9 -7.33,2.71 -7.33,2.71S86.75,125.46 86.21,132.79Z"/>
<path
android:fillColor="#FF000000"
android:pathData="M138.6,157.77h-8.69v14.39S139.96,168.36 138.6,157.77Z"/>
<path
android:pathData="M123.94,47.01c-19.27,-1.63 -30.4,15.2 -27.69,27.42s18.46,14.93 28.23,6.51c0.26,4.66 1.94,7.47 4.13,8.96 5.18,-4.25 7.32,-8.54 9.44,-14.39 2.17,-5.97 -0.27,-16.02 -5.16,-20.09s-3.53,-6.51 2.17,-1.63 7.87,14.12 6.51,21.45c-1.28,6.91 -4.62,12.31 -9.66,15.93a9.51,9.51 0,0 0,4.5 -0.45c4.07,-3.26 7.34,-7.6 8.96,-16.02C146.74,67.64 143.21,48.64 123.94,47.01Z"
android:fillColor="#222"/>
<path
android:pathData="M66.93,87.46s-6.79,0.54 -7.06,5.97c7.33,1.63 10.32,1.63 10.32,1.63v-7.33Z"
android:fillColor="#54565a"/>
<path
android:pathData="M55.53,93.57a1.5,1.5 0,0 1,-0.39 -0.05A1.5,1.5 0,0 1,54.08 91.69L55.17,87.61A1.5,1.5 0,0 1,57 86.55,1.5 1.5,0 0,1 58.06,88.39L56.98,92.46A1.5,1.5 0,0 1,55.53 93.57Z"
android:fillColor="#54565a"/>
<path
android:pathData="M49.56,90.04a1.49,1.49 0,0 1,-0.85 -0.27,1.5 1.5,0 0,1 -0.38,-2.09L50.77,84.16A1.5,1.5 0,0 1,52.86 83.78,1.5 1.5,0 0,1 53.23,85.87L50.79,89.4A1.5,1.5 0,0 1,49.56 90.04Z"
android:fillColor="#54565a"/>
<path
android:pathData="M44.94,83.26a1.5,1.5 0,0 1,-1.2 -0.6A1.5,1.5 0,0 1,44.04 80.56L46.21,78.93a1.5,1.5 0,0 1,2.1 0.3,1.5 1.5,0 0,1 -0.3,2.1L45.84,82.96A1.49,1.49 0,0 1,44.94 83.26Z"
android:fillColor="#54565a"/>
<path
android:pathData="M50.1,75.93q-0.08,0 -0.15,-0.01L47.24,75.65A1.5,1.5 0,0 1,45.89 74.01,1.5 1.5,0 0,1 47.53,72.66l2.71,0.27a1.5,1.5 0,0 1,-0.15 2.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.81,67.78A1.49,1.49 0,0 1,51.93 67.5L48.95,65.32a1.5,1.5 0,0 1,-0.33 -2.1,1.5 1.5,0 0,1 2.1,-0.33L53.7,65.07a1.5,1.5 0,0 1,-0.88 2.71Z"
android:fillColor="#54565a"/>
<path
android:pathData="M59.33,59.64a1.49,1.49 0,0 1,-0.93 -0.32l-3.8,-2.99A1.5,1.5 0,0 1,54.35 54.23,1.5 1.5,0 0,1 56.46,53.97l3.8,2.99A1.5,1.5 0,0 1,59.33 59.64Z"
android:fillColor="#54565a"/>
<path
android:pathData="M66.39,52.58A1.5,1.5 0,0 1,65.33 52.14L62.07,48.88a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L67.45,50.02A1.5,1.5 0,0 1,66.39 52.58Z"
android:fillColor="#54565a"/>
<path
android:pathData="M73.45,43.89a1.5,1.5 0,0 1,-1.06 -0.44L69.4,40.47a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L74.51,41.33A1.5,1.5 0,0 1,73.45 43.89Z"
android:fillColor="#54565a"/>
<path
android:pathData="M74.26,34.66a1.5,1.5 0,0 1,-0.58 -0.12L70.43,33.19A1.5,1.5 0,0 1,69.62 31.23,1.5 1.5,0 0,1 71.58,30.42L74.84,31.78a1.5,1.5 0,0 1,-0.58 2.88Z"
android:fillColor="#54565a"/>
<path
android:pathData="M71.82,26.25A1.5,1.5 0,0 1,70.36 25.11,1.5 1.5,0 0,1 71.45,23.29l3.26,-0.81A1.5,1.5 0,0 1,76.53 23.57,1.5 1.5,0 0,1 75.44,25.39L72.18,26.2A1.5,1.5 0,0 1,71.82 26.25Z"
android:fillColor="#54565a"/>
<path
android:pathData="M68.83,21.63a1.49,1.49 0,0 1,-0.79 -0.22,1.5 1.5,0 0,1 -0.49,-2.06L69.72,15.82a1.5,1.5 0,0 1,2.06 -0.49A1.5,1.5 0,0 1,72.28 17.39L70.11,20.92A1.5,1.5 0,0 1,68.83 21.63Z"
android:fillColor="#54565a"/>
<path
android:pathData="M62.59,18.92A1.51,1.51 0,0 1,62.41 18.9,1.5 1.5,0 0,1 61.1,17.24L61.64,12.63A1.5,1.5 0,0 1,63.31 11.31,1.5 1.5,0 0,1 64.62,12.98L64.08,17.59A1.5,1.5 0,0 1,62.59 18.92Z"
android:fillColor="#54565a"/>
<path
android:pathData="M52.54,19.46a1.5,1.5 0,0 1,-1.4 -0.96L49.79,14.97A1.5,1.5 0,0 1,50.65 13.03,1.5 1.5,0 0,1 52.59,13.89L53.94,17.42a1.5,1.5 0,0 1,-1.4 2.04Z"
android:fillColor="#54565a"/>
<path
android:pathData="M42.5,22.99A1.5,1.5 0,0 1,41.32 22.41L39.42,19.97a1.5,1.5 0,0 1,0.26 -2.1,1.5 1.5,0 0,1 2.1,0.26l1.9,2.44A1.5,1.5 0,0 1,42.5 22.99Z"
android:fillColor="#54565a"/>
<path
android:pathData="M36.53,27.06A1.5,1.5 0,0 1,35.47 26.62L33.02,24.18a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L37.58,24.5A1.5,1.5 0,0 1,36.53 27.06Z"
android:fillColor="#54565a"/>
<path
android:pathData="M28.92,33.03a1.49,1.49 0,0 1,-0.9 -0.3L24.77,30.29A1.5,1.5 0,0 1,24.47 28.19,1.5 1.5,0 0,1 26.57,27.89L29.83,30.33a1.5,1.5 0,0 1,-0.9 2.7Z"
android:fillColor="#54565a"/>
<path
android:pathData="M22.95,38.74a1.5,1.5 0,0 1,-1.06 -0.44L18.91,35.31a1.5,1.5 0,0 1,0 -2.12,1.5 1.5,0 0,1 2.12,0L24.01,36.17A1.5,1.5 0,0 1,22.95 38.74Z"
android:fillColor="#54565a"/>
<path
android:pathData="M208.64,120.43a1.5,1.5 0,0 1,0.28 0.03l26.88,5.16a1.5,1.5 0,0 1,1.18 1.8l-6.24,27.69a1.5,1.5 0,0 1,-1.72 1.15l-25.52,-4.34a1.5,1.5 0,0 1,-1.23 -1.73l4.89,-28.5a1.5,1.5 0,0 1,1.48 -1.25ZM233.71,128.27L209.86,123.7l-4.37,25.52 22.64,3.85Z"
android:fillColor="#222"/>
<path
android:pathData="M323.47,150.31a1.51,1.51 0,0 1,-0.28 -0.03L251.25,136.71a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L323.75,147.34a1.5,1.5 0,0 1,-0.28 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M318.05,163.88a1.51,1.51 0,0 1,-0.31 -0.03L248.24,149.19A1.5,1.5 0,0 1,247.08 147.41,1.5 1.5,0 0,1 248.86,146.26l69.5,14.66A1.5,1.5 0,0 1,318.05 163.88Z"
android:fillColor="#222"/>
<path
android:pathData="M220.04,146.24a1.5,1.5 0,0 1,-1.33 -0.81l-4.89,-9.5a1.5,1.5 0,1 1,2.67 -1.37l4.14,8.06 26.31,-16.25a1.5,1.5 0,0 1,1.58 2.55l-27.69,17.1A1.5,1.5 0,0 1,220.04 146.24Z"
android:fillColor="#ff4438"/>
<path
android:pathData="M195.34,184.23a1.5,1.5 0,0 1,0.28 0.03l26.88,5.16a1.5,1.5 0,0 1,1.18 1.8l-6.24,27.69a1.5,1.5 0,0 1,-1.72 1.15L190.2,215.71a1.5,1.5 0,0 1,-1.23 -1.73l4.89,-28.5a1.5,1.5 0,0 1,1.48 -1.25ZM220.41,192.07 L196.56,187.49L192.18,213.01l22.64,3.85Z"
android:fillColor="#222"/>
<path
android:pathData="M310.17,214.11a1.51,1.51 0,0 1,-0.28 -0.03L237.95,200.51a1.5,1.5 0,0 1,-1.2 -1.75,1.5 1.5,0 0,1 1.75,-1.2L310.45,211.13a1.5,1.5 0,0 1,-0.28 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M304.74,227.68a1.51,1.51 0,0 1,-0.31 -0.03L234.93,212.99A1.5,1.5 0,0 1,233.78 211.21,1.5 1.5,0 0,1 235.55,210.05l69.5,14.66A1.5,1.5 0,0 1,304.74 227.68Z"
android:fillColor="#222"/>
<path
android:pathData="M206.74,210.03a1.5,1.5 0,0 1,-1.33 -0.81l-4.89,-9.5a1.5,1.5 0,1 1,2.67 -1.37l4.14,8.06 26.31,-16.25a1.5,1.5 0,0 1,1.58 2.55l-27.69,17.1A1.5,1.5 0,0 1,206.74 210.03Z"
android:fillColor="#ff4438"/>
<path
android:pathData="M180.41,249.65a1.5,1.5 0,0 1,0.31 0.03c0.14,0.03 14.27,3.03 24.24,5.72a1.5,1.5 0,0 1,1.11 1.5,40.23 40.23,0 0,1 -2.13,11.25 55.51,55.51 0,0 1,-4.1 9.24,56.62 56.62,0 0,1 -5.8,8.66 1.5,1.5 0,0 1,-1.57 0.46c-0.79,-0.23 -19.44,-5.76 -24.1,-7.95a1.5,1.5 0,0 1,-0.56 -2.26,65.1 65.1,0 0,0 8.52,-16.66 79.01,79.01 0,0 0,2.61 -8.82A1.5,1.5 0,0 1,180.41 249.65ZM203.01,257.99c-7.88,-2.08 -17.83,-4.27 -21.48,-5.06 -0.4,1.59 -1.17,4.35 -2.35,7.69a81.36,81.36 0,0 1,-3.6 8.61,58.76 58.76,0 0,1 -4.25,7.34c5.38,2.09 17.53,5.75 21.04,6.8a58.26,58.26 0,0 0,4.89 -7.48C199.62,271.58 202.48,265.07 203,257.99Z"
android:fillColor="#222"/>
<path
android:pathData="M287.37,284.96a1.5,1.5 0,0 1,-0.32 -0.04L218.91,269.99A1.5,1.5 0,0 1,217.76 268.21,1.5 1.5,0 0,1 219.55,267.06L287.69,281.99a1.5,1.5 0,0 1,-0.32 2.97Z"
android:fillColor="#222"/>
<path
android:pathData="M277.59,301.79a1.5,1.5 0,0 1,-0.42 -0.06L212.56,283A1.5,1.5 0,0 1,211.54 281.14,1.5 1.5,0 0,1 213.4,280.12l64.61,18.73a1.5,1.5 0,0 1,-0.42 2.94Z"
android:fillColor="#222"/>
<path
android:pathData="M158.96,30.44A4.96,4.96 0,1 1,154 35.4,4.97 4.97,0 0,1 158.96,30.44ZM158.96,37.36A1.96,1.96 0,1 0,157 35.4,1.96 1.96,0 0,0 158.96,37.36Z"
android:fillColor="#54565a"/>
<path
android:pathData="M253.64,50.06A4.55,4.55 0,1 1,249.08 54.61,4.56 4.56,0 0,1 253.64,50.06ZM253.64,56.16A1.55,1.55 0,1 0,252.08 54.61,1.56 1.56,0 0,0 253.64,56.16Z"
android:fillColor="#54565a"/>
<path
android:pathData="M269.18,28.81A3.13,3.13 0,1 1,266.05 31.94,3.13 3.13,0 0,1 269.18,28.81Z"
android:fillColor="#54565a"/>
<path
android:pathData="M115.25,13.34A2.72,2.72 0,1 1,112.53 16.06,2.72 2.72,0 0,1 115.25,13.34Z"
android:fillColor="#54565a"/>
<path
android:pathData="M18.95,78.09A4.15,4.15 0,1 1,14.8 82.23,4.15 4.15,0 0,1 18.95,78.09ZM18.95,83.38A1.15,1.15 0,1 0,17.8 82.23,1.15 1.15,0 0,0 18.95,83.38Z"
android:fillColor="#54565a"/>
<path
android:pathData="M24.24,59.76A2.92,2.92 0,1 1,21.32 62.69,2.93 2.93,0 0,1 24.24,59.76Z"
android:fillColor="#54565a"/>
<path
android:pathData="M38.5,242.19A4.15,4.15 0,1 1,34.35 246.34,4.15 4.15,0 0,1 38.5,242.19ZM38.5,247.48A1.15,1.15 0,1 0,37.35 246.34,1.15 1.15,0 0,0 38.5,247.48Z"
android:fillColor="#54565a"/>
<path
android:pathData="M53.77,321.19A2.72,2.72 0,1 1,51.04 323.91,2.72 2.72,0 0,1 53.77,321.19Z"
android:fillColor="#54565a"/>
<path
android:pathData="M379.8,222.37A4.35,4.35 0,1 1,375.45 226.72,4.36 4.36,0 0,1 379.8,222.37ZM379.8,228.07A1.35,1.35 0,1 0,378.45 226.72,1.35 1.35,0 0,0 379.8,228.07Z"
android:fillColor="#54565a"/>
<path
android:pathData="M402.13,175.41A2.52,2.52 0,1 1,399.61 177.92,2.52 2.52,0 0,1 402.13,175.41Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M381.02,309.38A2.52,2.52 0,1 1,378.5 311.89,2.52 2.52,0 0,1 381.02,309.38Z"
android:fillColor="#54565a"/>
<path
android:pathData="M386.25,126.13A2.92,2.92 0,1 1,383.32 129.06,2.93 2.93,0 0,1 386.25,126.13Z"
android:fillColor="#54565a"/>
<path
android:pathData="M405.79,113.51A2.52,2.52 0,1 1,403.28 116.03,2.52 2.52,0 0,1 405.79,113.51Z"
android:fillColor="#54565a"/>
<path
android:pathData="M412.51,280.87A3.54,3.54 0,1 1,408.98 284.41,3.54 3.54,0 0,1 412.51,280.87ZM412.51,284.95A0.54,0.54 0,1 0,411.98 284.41,0.54 0.54,0 0,0 412.51,284.95Z"
android:fillColor="#54565a"/>
<path
android:pathData="M344.1,258.88A5.57,5.57 0,1 1,338.53 264.46,5.58 5.58,0 0,1 344.1,258.88ZM344.1,267.03A2.57,2.57 0,1 0,341.53 264.46,2.58 2.58,0 0,0 344.1,267.03Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M118.1,264.73m-2.85,0a2.85,2.85 0,1 1,5.7 0a2.85,2.85 0,1 1,-5.7 0"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M174.7,112.15A4.35,4.35 0,1 1,170.35 116.5,4.36 4.36,0 0,1 174.7,112.15ZM174.7,117.85A1.35,1.35 0,1 0,173.35 116.5,1.35 1.35,0 0,0 174.7,117.85Z"
android:fillColor="#54565a"/>
<path
android:pathData="M78.6,219.79A2.31,2.31 0,1 1,76.29 222.11,2.32 2.32,0 0,1 78.6,219.79Z"
android:fillColor="#54565a"/>
<path
android:pathData="M104.46,188.84A2.52,2.52 0,1 1,101.94 191.36,2.52 2.52,0 0,1 104.46,188.84Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M399.96,296.41A2.52,2.52 0,1 1,397.44 298.93,2.52 2.52,0 0,1 399.96,296.41Z"
android:fillColor="#54565a"/>
<path
android:pathData="M322.93,65.87A2.31,2.31 0,1 1,320.61 68.18,2.32 2.32,0 0,1 322.93,65.87Z"
android:fillColor="#54565a"/>
<path
android:pathData="M323.47,38.31A4.35,4.35 0,1 1,319.12 42.66,4.36 4.36,0 0,1 323.47,38.31ZM323.47,44.01A1.35,1.35 0,1 0,322.12 42.66,1.35 1.35,0 0,0 323.47,44.01Z"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M393.85,45.38m-3.05,0a3.05,3.05 0,1 1,6.11 0a3.05,3.05 0,1 1,-6.11 0"
android:fillColor="#f1e4b2"/>
<path
android:pathData="M349.53,28.75A2.52,2.52 0,1 1,347.01 31.26,2.52 2.52,0 0,1 349.53,28.75Z"
android:fillColor="#54565a"/>
</group>
</vector>

View File

@ -1,29 +1,10 @@
<resources>
<string name="app_name">zcash-ui</string>
<string name="onboarding_back">Back</string>
<string name="onboarding_skip">Skip</string>
<string name="onboarding_next">Next</string>
<string name="onboarding_1_header">Welcome!</string>
<string name="onboarding_1_body">As a privacy focused wallet, we shield by default. Your wallet uses the shielded address for sending and moves transparent funds to that address automatically.\n\nIn other words, the privacy-please sign is on the door.</string>
<string name="onboarding_1_image_content_description"></string>
<string name="onboarding_2_header">Unified Addresses</string>
<string name="onboarding_2_body">You now have a unified address that includes an up-to-date shielded address and a transparency address for legacy systems.\n\nThis makes your wallet friendlier, and gives you an address that you wont have to update again.</string>
<string name="onboarding_2_image_content_description"></string>
<string name="onboarding_3_header">And so much more…</string>
<string name="onboarding_3_body">Due to Zcashs increased popularity, we are optimizing our syncing schemes to be faster and more efficient!\n\nThe future is fast!</string>
<string name="onboarding_3_image_content_description"></string>
<string name="onboarding_4_header">Lets get started!</string>
<string name="onboarding_4_body">Choose between creating a new wallet and importing an existing Secret Recovery Phrase.</string>
<string name="onboarding_4_image_content_description"></string>
<string name="onboarding_4_create_new_wallet">Create New Wallet</string>
<string name="onboarding_4_import_existing_wallet">Import an Existing Wallet</string>
<string name="onboarding_header">A no-frills wallet for sending and receiving Zcash (ZEC)</string>
<string name="onboarding_information">We need to create a new wallet or restore an existing one. Select your path:</string>
<string name="onboarding_create_new_wallet">Create New Wallet</string>
<string name="onboarding_import_existing_wallet">Restore Existing Wallet</string>
<string name="onboarding_short_header">A no-frills wallet for sending and receiving Zcash (ZEC)</string>
<string name="onboarding_short_information">We need to create a new wallet or restore an existing one. Select your path:</string>
<string name="onboarding_short_create_new_wallet">Create New Wallet</string>
<string name="onboarding_short_import_existing_wallet">Restore Existing Wallet</string>
<string name="zcash_logo_onboarding_content_description">Zcash logo in onboarding screen</string>
<string name="zcash_logo_with_hi_text_content_description">Zcash logo with text Hi</string>
</resources>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/onboarding_1_shielded">
</bitmap>

View File

@ -33,20 +33,17 @@ import cash.z.ecc.android.sdk.model.MonetarySeparators
import cash.z.ecc.android.sdk.model.SeedPhrase
import cash.z.ecc.sdk.fixture.MemoFixture
import cash.z.ecc.sdk.fixture.SeedPhraseFixture
import co.electriccoin.zcash.configuration.model.map.StringConfiguration
import co.electriccoin.zcash.spackle.FirebaseTestLabUtil
import co.electriccoin.zcash.test.UiTestPrerequisites
import co.electriccoin.zcash.ui.MainActivity
import co.electriccoin.zcash.ui.NavigationTargets
import co.electriccoin.zcash.ui.R
import co.electriccoin.zcash.ui.configuration.ConfigurationEntries
import co.electriccoin.zcash.ui.design.component.ConfigurationOverride
import co.electriccoin.zcash.ui.design.component.UiMode
import co.electriccoin.zcash.ui.screen.home.viewmodel.SecretState
import co.electriccoin.zcash.ui.screen.restore.RestoreTag
import co.electriccoin.zcash.ui.screen.restore.viewmodel.RestoreViewModel
import co.electriccoin.zcash.ui.screen.settings.SettingsTag
import kotlinx.collections.immutable.persistentMapOf
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.withContext
@ -153,30 +150,14 @@ class ScreenshotTest : UiTestPrerequisites() {
composeTestRule.activity.walletViewModel.secretState.value is SecretState.None
}
if (ConfigurationEntries.IS_SHORT_ONBOARDING_UX.getValue(emptyConfiguration)) {
composeTestRule.onNodeWithText(
text = resContext.getString(
R.string.onboarding_short_import_existing_wallet
),
ignoreCase = true
).also {
it.assertExists()
it.performClick()
}
} else {
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_1_header)).also {
it.assertExists()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_skip)).also {
it.assertExists()
it.performClick()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_4_import_existing_wallet)).also {
it.assertExists()
it.performClick()
}
composeTestRule.onNodeWithText(
text = resContext.getString(
R.string.onboarding_import_existing_wallet
),
ignoreCase = true
).also {
it.assertExists()
it.performClick()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.restore_title)).also {
@ -271,7 +252,7 @@ class ScreenshotTest : UiTestPrerequisites() {
}
onboardingScreenshots(resContext, tag, composeTestRule)
backupScreenshots(resContext, tag, composeTestRule)
recoveryScreenshots(resContext, tag, composeTestRule)
homeScreenshots(resContext, tag, composeTestRule)
// These are the buttons on the home screen
@ -303,8 +284,6 @@ class ScreenshotTest : UiTestPrerequisites() {
}
}
private val emptyConfiguration = StringConfiguration(persistentMapOf(), null)
private fun onboardingScreenshots(
resContext: Context,
tag: String,
@ -313,71 +292,36 @@ private fun onboardingScreenshots(
composeTestRule.waitUntil(DEFAULT_TIMEOUT_MILLISECONDS) {
composeTestRule.activity.walletViewModel.secretState.value is SecretState.None
}
if (ConfigurationEntries.IS_SHORT_ONBOARDING_UX.getValue(emptyConfiguration)) {
// Welcome screen
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_short_header)).also {
it.assertExists()
ScreenshotTest.takeScreenshot(tag, "Onboarding 1")
}
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.onboarding_short_create_new_wallet),
ignoreCase = true
).also {
it.performClick()
}
// Security Warning screen
composeTestRule.onNodeWithText(text = resContext.getString(R.string.security_warning_acknowledge)).also {
it.assertExists()
it.performClick()
ScreenshotTest.takeScreenshot(tag, "Security Warning")
}
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.security_warning_confirm),
ignoreCase = true
).also {
it.performClick()
}
} else {
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_1_header)).also {
it.assertExists()
}
// Welcome screen
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_header)).also {
it.assertExists()
ScreenshotTest.takeScreenshot(tag, "Onboarding 1")
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_next)).also {
it.performClick()
}
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.onboarding_create_new_wallet),
ignoreCase = true
).also {
it.performClick()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_2_header)).also {
it.assertExists()
ScreenshotTest.takeScreenshot(tag, "Onboarding 2")
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_next)).also {
it.performClick()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_3_header)).also {
it.assertExists()
ScreenshotTest.takeScreenshot(tag, "Onboarding 3")
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_next)).also {
it.performClick()
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_4_header)).also {
it.assertExists()
ScreenshotTest.takeScreenshot(tag, "Onboarding 4")
}
composeTestRule.onNodeWithText(resContext.getString(R.string.onboarding_4_create_new_wallet)).also {
it.performClick()
}
// Security Warning screen
composeTestRule.onNodeWithText(text = resContext.getString(R.string.security_warning_acknowledge)).also {
it.assertExists()
it.performClick()
ScreenshotTest.takeScreenshot(tag, "Security Warning")
}
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.security_warning_confirm),
ignoreCase = true
).also {
it.performClick()
}
}
@Suppress("LongMethod", "CyclomaticComplexMethod")
private fun backupScreenshots(
private fun recoveryScreenshots(
resContext: Context,
tag: String,
composeTestRule: AndroidComposeTestRule<ActivityScenarioRule<MainActivity>, MainActivity>
@ -386,20 +330,18 @@ private fun backupScreenshots(
composeTestRule.activity.walletViewModel.secretState.value is SecretState.NeedsBackup
}
if (ConfigurationEntries.IS_SHORT_ONBOARDING_UX.getValue(emptyConfiguration)) {
composeTestRule.onNodeWithText(resContext.getString(R.string.new_wallet_recovery_header)).also {
it.assertExists()
}
ScreenshotTest.takeScreenshot(tag, "Backup 1")
composeTestRule.onNodeWithText(resContext.getString(R.string.new_wallet_recovery_header)).also {
it.assertExists()
}
ScreenshotTest.takeScreenshot(tag, "Recovery 1")
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.new_wallet_recovery_button_finished),
ignoreCase = true
).also {
it.assertExists()
it.performScrollTo()
it.performClick()
}
composeTestRule.onNodeWithText(
text = resContext.getString(R.string.new_wallet_recovery_button_finished),
ignoreCase = true
).also {
it.assertExists()
it.performScrollTo()
it.performClick()
}
}