diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/StatsItem.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/StatsItem.kt
index 5a8cd74e476f77263d71a8a3fd743b84ccfd43fa..92c85139d403a62adb0f427e3ef30c2a52280b62 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/StatsItem.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/StatsItem.kt
@@ -22,7 +22,10 @@ sealed class StatsItem(val cardType: Type) {
         INFECTION(1),
         INCIDENCE(2),
         KEYSUBMISSION(3),
-        SEVEN_DAY_RVALUE(4)
+        SEVEN_DAY_RVALUE(4),
+        PERSONS_VACCINATED_ONCE(5),
+        PERSONS_VACCINATED_COMPLETELY(6),
+        APPLIED_VACCINATION_RATES(7)
     }
 
     abstract fun requireValidity()
@@ -51,7 +54,7 @@ data class InfectionStats(
             Timber.w("InfectionStats is missing secondary value")
         }
         requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.TERTIARY }) {
-            Timber.w("InfectionStats is missing secondary value")
+            Timber.w("InfectionStats is missing tertiary value")
         }
     }
 }
@@ -95,7 +98,7 @@ data class KeySubmissionsStats(
             Timber.w("KeySubmissionsStats is missing secondary value")
         }
         requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.TERTIARY }) {
-            Timber.w("KeySubmissionsStats is missing secondary value")
+            Timber.w("KeySubmissionsStats is missing tertiary value")
         }
     }
 }
@@ -115,3 +118,75 @@ data class SevenDayRValue(
         }
     }
 }
+
+data class PersonsVaccinatedOnceStats(
+    override val updatedAt: Instant,
+    override val keyFigures: List<KeyFigure>
+) : StatsItem(cardType = Type.PERSONS_VACCINATED_ONCE) {
+
+    val firstDose: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.PRIMARY }
+
+    val total: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.TERTIARY }
+
+    override fun requireValidity() {
+        require(keyFigures.size == 2)
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.PRIMARY }) {
+            Timber.w("PersonsVaccinatedOnceStats is missing primary value")
+        }
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.TERTIARY }) {
+            Timber.w("PersonsVaccinatedOnceStats is missing tertiary value")
+        }
+    }
+}
+
+data class PersonsVaccinatedCompletelyStats(
+    override val updatedAt: Instant,
+    override val keyFigures: List<KeyFigure>
+) : StatsItem(cardType = Type.PERSONS_VACCINATED_COMPLETELY) {
+
+    val allDoses: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.PRIMARY }
+
+    val total: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.TERTIARY }
+
+    override fun requireValidity() {
+        require(keyFigures.size == 2)
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.PRIMARY }) {
+            Timber.w("PersonsVaccinatedCompletelyStats is missing primary value")
+        }
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.TERTIARY }) {
+            Timber.w("PersonsVaccinatedCompletelyStats is missing tertiary value")
+        }
+    }
+}
+
+data class AppliedVaccinationRatesStats(
+    override val updatedAt: Instant,
+    override val keyFigures: List<KeyFigure>
+) : StatsItem(cardType = Type.APPLIED_VACCINATION_RATES) {
+
+    val administeredDoses: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.PRIMARY }
+
+    val sevenDayAverage: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.SECONDARY }
+
+    val total: KeyFigure
+        get() = keyFigures.single { it.rank == KeyFigure.Rank.TERTIARY }
+
+    override fun requireValidity() {
+        require(keyFigures.size == 3)
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.PRIMARY }) {
+            Timber.w("AppliedVaccinationRatesStats is missing primary value")
+        }
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.SECONDARY }) {
+            Timber.w("AppliedVaccinationRatesStats is missing secondary value")
+        }
+        requireNotNull(keyFigures.singleOrNull { it.rank == KeyFigure.Rank.TERTIARY }) {
+            Timber.w("AppliedVaccinationRatesStats is missing tertiary value")
+        }
+    }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/source/StatisticsParser.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/source/StatisticsParser.kt
index 6cf9d5357580ca535d8704a1a71421dcf17de282..348f56a59684c4d4fab2d0ca593f7182dcd52742 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/source/StatisticsParser.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/source/StatisticsParser.kt
@@ -2,9 +2,12 @@ package de.rki.coronawarnapp.statistics.source
 
 import dagger.Reusable
 import de.rki.coronawarnapp.server.protocols.internal.stats.StatisticsOuterClass
+import de.rki.coronawarnapp.statistics.AppliedVaccinationRatesStats
 import de.rki.coronawarnapp.statistics.IncidenceStats
 import de.rki.coronawarnapp.statistics.InfectionStats
 import de.rki.coronawarnapp.statistics.KeySubmissionsStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedCompletelyStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedOnceStats
 import de.rki.coronawarnapp.statistics.SevenDayRValue
 import de.rki.coronawarnapp.statistics.StatisticsData
 import de.rki.coronawarnapp.statistics.StatsItem
@@ -35,6 +38,18 @@ class StatisticsParser @Inject constructor() {
                     StatsItem.Type.INCIDENCE -> IncidenceStats(updatedAt = updatedAt, keyFigures = keyFigures)
                     StatsItem.Type.KEYSUBMISSION -> KeySubmissionsStats(updatedAt = updatedAt, keyFigures = keyFigures)
                     StatsItem.Type.SEVEN_DAY_RVALUE -> SevenDayRValue(updatedAt = updatedAt, keyFigures = keyFigures)
+                    StatsItem.Type.PERSONS_VACCINATED_ONCE -> PersonsVaccinatedOnceStats(
+                        updatedAt = updatedAt,
+                        keyFigures = keyFigures
+                    )
+                    StatsItem.Type.PERSONS_VACCINATED_COMPLETELY -> PersonsVaccinatedCompletelyStats(
+                        updatedAt = updatedAt,
+                        keyFigures = keyFigures
+                    )
+                    StatsItem.Type.APPLIED_VACCINATION_RATES -> AppliedVaccinationRatesStats(
+                        updatedAt = updatedAt,
+                        keyFigures = keyFigures
+                    )
                     null -> null.also { Timber.tag(TAG).e("Unknown statistics type: %s", rawCard) }
                 }.also {
                     Timber.tag(TAG).v("Parsed %s", it.toString().replace("\n", ", "))
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/TrendArrowView.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/TrendArrowView.kt
index 1f1d2000ad1eb9b40270f5a6e893d24dec321761..6f7a2ed75fd4959257940258dcade73ddf249ddc 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/TrendArrowView.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/TrendArrowView.kt
@@ -29,7 +29,8 @@ class TrendArrowView @JvmOverloads constructor(
 
     fun setTrend(
         trend: KeyFigureCardOuterClass.KeyFigure.Trend,
-        trendSemantic: KeyFigureCardOuterClass.KeyFigure.TrendSemantic
+        trendSemantic: KeyFigureCardOuterClass.KeyFigure.TrendSemantic,
+        appliedVaccinationRates: Boolean = false
     ) {
         with(imageView) {
             rotation = when (trend) {
@@ -41,8 +42,14 @@ class TrendArrowView @JvmOverloads constructor(
             background = ContextCompat.getDrawable(
                 context,
                 when (trendSemantic) {
-                    POSITIVE -> R.drawable.bg_statistics_trend_positive
-                    NEGATIVE -> R.drawable.bg_statistics_trend_negative
+                    POSITIVE -> {
+                        if (appliedVaccinationRates) R.drawable.bg_statistics_trend_negative
+                        else R.drawable.bg_statistics_trend_positive
+                    }
+                    NEGATIVE -> {
+                        if (appliedVaccinationRates) R.drawable.bg_statistics_trend_positive
+                        else R.drawable.bg_statistics_trend_negative
+                    }
                     else -> R.drawable.bg_statistics_trend_neutral
                 }
             )
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/StatisticsCardAdapter.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/StatisticsCardAdapter.kt
index 8ff7a267bd2fc1965ac059904337ddb6c0865eaa..273a54f20fd3f7ec2b09b28dd64fa504a0d0d6b5 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/StatisticsCardAdapter.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/StatisticsCardAdapter.kt
@@ -3,14 +3,20 @@ package de.rki.coronawarnapp.statistics.ui.homecards
 import android.view.ViewGroup
 import androidx.annotation.LayoutRes
 import androidx.viewbinding.ViewBinding
+import de.rki.coronawarnapp.statistics.AppliedVaccinationRatesStats
 import de.rki.coronawarnapp.statistics.IncidenceStats
 import de.rki.coronawarnapp.statistics.InfectionStats
 import de.rki.coronawarnapp.statistics.KeySubmissionsStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedCompletelyStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedOnceStats
 import de.rki.coronawarnapp.statistics.SevenDayRValue
 import de.rki.coronawarnapp.statistics.ui.homecards.StatisticsCardAdapter.ItemVH
+import de.rki.coronawarnapp.statistics.ui.homecards.cards.AppliedVaccinationRatesCard
 import de.rki.coronawarnapp.statistics.ui.homecards.cards.IncidenceCard
 import de.rki.coronawarnapp.statistics.ui.homecards.cards.InfectionsCard
 import de.rki.coronawarnapp.statistics.ui.homecards.cards.KeySubmissionsCard
+import de.rki.coronawarnapp.statistics.ui.homecards.cards.PersonsVaccinatedCompletelyCard
+import de.rki.coronawarnapp.statistics.ui.homecards.cards.PersonsVaccinatedOnceCard
 import de.rki.coronawarnapp.statistics.ui.homecards.cards.SevenDayRValueCard
 import de.rki.coronawarnapp.statistics.ui.homecards.cards.StatisticsCardItem
 import de.rki.coronawarnapp.util.lists.BindableVH
@@ -34,7 +40,14 @@ class StatisticsCardAdapter :
             TypedVHCreatorMod({ data[it].stats is InfectionStats }) { InfectionsCard(it) },
             TypedVHCreatorMod({ data[it].stats is IncidenceStats }) { IncidenceCard(it) },
             TypedVHCreatorMod({ data[it].stats is KeySubmissionsStats }) { KeySubmissionsCard(it) },
-            TypedVHCreatorMod({ data[it].stats is SevenDayRValue }) { SevenDayRValueCard(it) }
+            TypedVHCreatorMod({ data[it].stats is SevenDayRValue }) { SevenDayRValueCard(it) },
+            TypedVHCreatorMod({ data[it].stats is PersonsVaccinatedOnceStats }) { PersonsVaccinatedOnceCard(it) },
+            TypedVHCreatorMod({ data[it].stats is PersonsVaccinatedCompletelyStats }) {
+                PersonsVaccinatedCompletelyCard(
+                    it
+                )
+            },
+            TypedVHCreatorMod({ data[it].stats is AppliedVaccinationRatesStats }) { AppliedVaccinationRatesCard(it) }
         ).let { modules.addAll(it) }
     }
 
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/AppliedVaccinationRatesCard.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/AppliedVaccinationRatesCard.kt
new file mode 100644
index 0000000000000000000000000000000000000000..7b5f6dc3f22c1841dafb263dced1608ad9ddd723
--- /dev/null
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/AppliedVaccinationRatesCard.kt
@@ -0,0 +1,103 @@
+package de.rki.coronawarnapp.statistics.ui.homecards.cards
+
+import android.view.ViewGroup
+import de.rki.coronawarnapp.R
+import de.rki.coronawarnapp.databinding.HomeStatisticsCardsAppliedVaccinationRatesLayoutBinding
+import de.rki.coronawarnapp.server.protocols.internal.stats.KeyFigureCardOuterClass
+import de.rki.coronawarnapp.statistics.AppliedVaccinationRatesStats
+import de.rki.coronawarnapp.statistics.StatsItem
+import de.rki.coronawarnapp.statistics.ui.homecards.StatisticsCardAdapter
+import de.rki.coronawarnapp.statistics.util.formatStatisticalValue
+import de.rki.coronawarnapp.statistics.util.getContentDescriptionForTrends
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithLineBreak
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithTrailingSpace
+import de.rki.coronawarnapp.util.formatter.getPrimaryLabel
+
+class AppliedVaccinationRatesCard(parent: ViewGroup) :
+    StatisticsCardAdapter.ItemVH<StatisticsCardItem, HomeStatisticsCardsAppliedVaccinationRatesLayoutBinding>(
+        R.layout.home_statistics_cards_basecard_layout,
+        parent
+    ) {
+
+    override val viewBinding = lazy {
+        HomeStatisticsCardsAppliedVaccinationRatesLayoutBinding.inflate(
+            layoutInflater,
+            itemView.findViewById(R.id.card_container),
+            true
+        )
+    }
+
+    override val onBindData: HomeStatisticsCardsAppliedVaccinationRatesLayoutBinding.(
+        item: StatisticsCardItem,
+        payloads: List<Any>
+    ) -> Unit = { item, _ ->
+
+        infoStatistics.setOnClickListener {
+            item.onHelpAction.invoke(item.stats)
+        }
+
+        with(item.stats as AppliedVaccinationRatesStats) {
+            appliedVaccinationRatesContainer.contentDescription =
+                buildAccessibilityStringForPersonsVaccinatedOnceCard(
+                    item.stats,
+                    administeredDoses,
+                    sevenDayAverage,
+                    total
+                )
+
+            primaryLabel.text = getPrimaryLabel(context)
+            primaryValue.text = formatStatisticalValue(context, administeredDoses.value, administeredDoses.decimals)
+            primaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(getPrimaryLabel(context))
+                .appendWithTrailingSpace(
+                    formatStatisticalValue(
+                        context,
+                        administeredDoses.value,
+                        administeredDoses.decimals
+                    )
+                )
+                .append(context.getString(R.string.statistics_vaccinated_once_card_title))
+
+            secondaryValue.text = formatStatisticalValue(context, sevenDayAverage.value, sevenDayAverage.decimals)
+            secondaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_secondary_label))
+                .appendWithTrailingSpace(
+                    formatStatisticalValue(
+                        context,
+                        sevenDayAverage.value,
+                        sevenDayAverage.decimals
+                    )
+                )
+                .appendWithTrailingSpace(context.getString(R.string.statistics_card_submission_title))
+                .append(getContentDescriptionForTrends(context, sevenDayAverage.trend))
+
+            tertiaryValue.text = formatStatisticalValue(context, total.value, total.decimals)
+            tertiaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+                .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+                .append(context.getString(R.string.statistics_vaccinated_once_card_title))
+
+            trendArrow.setTrend(sevenDayAverage.trend, sevenDayAverage.trendSemantic, true)
+        }
+    }
+
+    private fun buildAccessibilityStringForPersonsVaccinatedOnceCard(
+        item: StatsItem,
+        administeredDoses: KeyFigureCardOuterClass.KeyFigure,
+        sevenDayAverage: KeyFigureCardOuterClass.KeyFigure,
+        total: KeyFigureCardOuterClass.KeyFigure
+    ): StringBuilder {
+
+        return StringBuilder()
+            .appendWithTrailingSpace(context.getString(R.string.accessibility_statistics_card_announcement))
+            .appendWithLineBreak(context.getString(R.string.statistics_vaccinated_once_card_title))
+            .appendWithTrailingSpace(item.getPrimaryLabel(context))
+            .appendWithLineBreak(formatStatisticalValue(context, administeredDoses.value, administeredDoses.decimals))
+            .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_secondary_label))
+            .appendWithTrailingSpace(formatStatisticalValue(context, sevenDayAverage.value, sevenDayAverage.decimals))
+            .appendWithLineBreak(getContentDescriptionForTrends(context, sevenDayAverage.trend))
+            .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+            .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+            .append(context.getString(R.string.accessibility_statistics_card_navigation_information))
+    }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedCompletelyCard.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedCompletelyCard.kt
new file mode 100644
index 0000000000000000000000000000000000000000..9dc61cff3fdefbb85a9bbe7cb43f9a77e2417b1f
--- /dev/null
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedCompletelyCard.kt
@@ -0,0 +1,72 @@
+package de.rki.coronawarnapp.statistics.ui.homecards.cards
+
+import android.view.ViewGroup
+import de.rki.coronawarnapp.R
+import de.rki.coronawarnapp.databinding.HomeStatisticsCardsVaccinatedCompletelyLayoutBinding
+import de.rki.coronawarnapp.server.protocols.internal.stats.KeyFigureCardOuterClass
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedCompletelyStats
+import de.rki.coronawarnapp.statistics.StatsItem
+import de.rki.coronawarnapp.statistics.ui.homecards.StatisticsCardAdapter
+import de.rki.coronawarnapp.statistics.util.formatPercentageValue
+import de.rki.coronawarnapp.statistics.util.formatStatisticalValue
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithLineBreak
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithTrailingSpace
+import de.rki.coronawarnapp.util.formatter.getPrimaryLabel
+
+class PersonsVaccinatedCompletelyCard(parent: ViewGroup) :
+    StatisticsCardAdapter.ItemVH<StatisticsCardItem, HomeStatisticsCardsVaccinatedCompletelyLayoutBinding>(
+        R.layout.home_statistics_cards_basecard_layout,
+        parent
+    ) {
+    override val viewBinding = lazy {
+        HomeStatisticsCardsVaccinatedCompletelyLayoutBinding.inflate(
+            layoutInflater,
+            itemView.findViewById(R.id.card_container),
+            true
+        )
+    }
+
+    override val onBindData: HomeStatisticsCardsVaccinatedCompletelyLayoutBinding.(
+        item: StatisticsCardItem,
+        payloads: List<Any>
+    ) -> Unit = { item, _ ->
+
+        infoStatistics.setOnClickListener {
+            item.onHelpAction.invoke(item.stats)
+        }
+
+        with(item.stats as PersonsVaccinatedCompletelyStats) {
+            personsVaccinatedCompletelyContainer.contentDescription =
+                buildAccessibilityStringForPersonsVaccinatedCompletelyCard(item.stats, allDoses, total)
+
+            primaryLabel.text = getPrimaryLabel(context)
+            primaryValue.text = formatPercentageValue(allDoses.value)
+            primaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(getPrimaryLabel(context))
+                .appendWithTrailingSpace(formatStatisticalValue(context, allDoses.value, allDoses.decimals))
+                .append(context.getString(R.string.statistics_vaccinated_completely_card_title))
+
+            secondaryValue.text = formatStatisticalValue(context, total.value, total.decimals)
+            secondaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+                .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+                .append(context.getString(R.string.statistics_vaccinated_completely_card_title))
+        }
+    }
+
+    private fun buildAccessibilityStringForPersonsVaccinatedCompletelyCard(
+        item: StatsItem,
+        firstDose: KeyFigureCardOuterClass.KeyFigure,
+        total: KeyFigureCardOuterClass.KeyFigure
+    ): StringBuilder {
+
+        return StringBuilder()
+            .appendWithTrailingSpace(context.getString(R.string.accessibility_statistics_card_announcement))
+            .appendWithLineBreak(context.getString(R.string.statistics_vaccinated_completely_card_title))
+            .appendWithTrailingSpace(item.getPrimaryLabel(context))
+            .appendWithLineBreak(formatStatisticalValue(context, firstDose.value, firstDose.decimals))
+            .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+            .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+            .append(context.getString(R.string.accessibility_statistics_card_navigation_information))
+    }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedOnceCard.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedOnceCard.kt
new file mode 100644
index 0000000000000000000000000000000000000000..c3b57505bcb93ba4a2019d25fac6f947c25da93b
--- /dev/null
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/ui/homecards/cards/PersonsVaccinatedOnceCard.kt
@@ -0,0 +1,73 @@
+package de.rki.coronawarnapp.statistics.ui.homecards.cards
+
+import android.view.ViewGroup
+import de.rki.coronawarnapp.R
+import de.rki.coronawarnapp.databinding.HomeStatisticsCardsVaccinatedOnceLayoutBinding
+import de.rki.coronawarnapp.server.protocols.internal.stats.KeyFigureCardOuterClass
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedOnceStats
+import de.rki.coronawarnapp.statistics.StatsItem
+import de.rki.coronawarnapp.statistics.ui.homecards.StatisticsCardAdapter
+import de.rki.coronawarnapp.statistics.util.formatPercentageValue
+import de.rki.coronawarnapp.statistics.util.formatStatisticalValue
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithLineBreak
+import de.rki.coronawarnapp.util.StringBuilderExtension.appendWithTrailingSpace
+import de.rki.coronawarnapp.util.formatter.getPrimaryLabel
+
+class PersonsVaccinatedOnceCard(parent: ViewGroup) :
+    StatisticsCardAdapter.ItemVH<StatisticsCardItem, HomeStatisticsCardsVaccinatedOnceLayoutBinding>(
+        R.layout.home_statistics_cards_basecard_layout,
+        parent
+    ) {
+
+    override val viewBinding = lazy {
+        HomeStatisticsCardsVaccinatedOnceLayoutBinding.inflate(
+            layoutInflater,
+            itemView.findViewById(R.id.card_container),
+            true
+        )
+    }
+
+    override val onBindData: HomeStatisticsCardsVaccinatedOnceLayoutBinding.(
+        item: StatisticsCardItem,
+        payloads: List<Any>
+    ) -> Unit = { item, _ ->
+
+        infoStatistics.setOnClickListener {
+            item.onHelpAction.invoke(item.stats)
+        }
+
+        with(item.stats as PersonsVaccinatedOnceStats) {
+            personsVaccinatedOnceContainer.contentDescription =
+                buildAccessibilityStringForPersonsVaccinatedOnceCard(item.stats, firstDose, total)
+
+            primaryLabel.text = getPrimaryLabel(context)
+            primaryValue.text = formatPercentageValue(firstDose.value)
+            primaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(getPrimaryLabel(context))
+                .appendWithTrailingSpace(formatStatisticalValue(context, firstDose.value, firstDose.decimals))
+                .append(context.getString(R.string.statistics_vaccinated_once_card_title))
+
+            secondaryValue.text = formatStatisticalValue(context, total.value, total.decimals)
+            secondaryValue.contentDescription = StringBuilder()
+                .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+                .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+                .append(context.getString(R.string.statistics_vaccinated_once_card_title))
+        }
+    }
+
+    private fun buildAccessibilityStringForPersonsVaccinatedOnceCard(
+        item: StatsItem,
+        firstDose: KeyFigureCardOuterClass.KeyFigure,
+        total: KeyFigureCardOuterClass.KeyFigure
+    ): StringBuilder {
+
+        return StringBuilder()
+            .appendWithTrailingSpace(context.getString(R.string.accessibility_statistics_card_announcement))
+            .appendWithLineBreak(context.getString(R.string.statistics_vaccinated_once_card_title))
+            .appendWithTrailingSpace(item.getPrimaryLabel(context))
+            .appendWithLineBreak(formatStatisticalValue(context, firstDose.value, firstDose.decimals))
+            .appendWithTrailingSpace(context.getString(R.string.statistics_card_infections_tertiary_label))
+            .appendWithTrailingSpace(formatStatisticalValue(context, total.value, total.decimals))
+            .append(context.getString(R.string.accessibility_statistics_card_navigation_information))
+    }
+}
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/util/StatisticsNumberValueFormatter.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/util/StatisticsNumberValueFormatter.kt
index 7d568c3acbacc761c22d0789d331b31387c87041..c5a0c73cb436f66009d18fc063858559e00bcef4 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/util/StatisticsNumberValueFormatter.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/statistics/util/StatisticsNumberValueFormatter.kt
@@ -27,3 +27,5 @@ fun formatStatisticalValue(
         else -> DecimalFormat("#,##0.000", DecimalFormatSymbols(locale))
     }.format(value)
 }
+
+fun formatPercentageValue(value: Double) = "$value%"
diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterStatistics.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterStatistics.kt
index 377c7491c7a41b32f2d8990c86451b58d844b215..29843b8e41b5027bfbc107bb07b9727a43a9bbfd 100644
--- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterStatistics.kt
+++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterStatistics.kt
@@ -3,9 +3,12 @@ package de.rki.coronawarnapp.util.formatter
 import android.content.Context
 import de.rki.coronawarnapp.R
 import de.rki.coronawarnapp.contactdiary.util.getLocale
+import de.rki.coronawarnapp.statistics.AppliedVaccinationRatesStats
 import de.rki.coronawarnapp.statistics.IncidenceStats
 import de.rki.coronawarnapp.statistics.InfectionStats
 import de.rki.coronawarnapp.statistics.KeySubmissionsStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedCompletelyStats
+import de.rki.coronawarnapp.statistics.PersonsVaccinatedOnceStats
 import de.rki.coronawarnapp.statistics.SevenDayRValue
 import de.rki.coronawarnapp.statistics.StatsItem
 import de.rki.coronawarnapp.util.TimeAndDateExtensions.toUserTimeZone
@@ -25,7 +28,10 @@ fun StatsItem.getPrimaryLabel(context: Context): String {
             yesterday -> context.getString(R.string.statistics_primary_value_yesterday)
             else -> dateTimeFormatter.print(updatedAtDate)
         }
-        is IncidenceStats -> when (updatedAtDate) {
+        is IncidenceStats,
+        is PersonsVaccinatedOnceStats,
+        is PersonsVaccinatedCompletelyStats,
+        is AppliedVaccinationRatesStats -> when (updatedAtDate) {
             today -> context.getString(R.string.statistics_primary_value_until_today)
             yesterday -> context.getString(R.string.statistics_primary_value_until_yesterday)
             else -> context.getString(R.string.statistics_primary_value_until, dateTimeFormatter.print(updatedAtDate))
diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_completely.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_completely.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6727c8dce86d38973f40c920ddd150a4a36cb5d3
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_completely.xml
@@ -0,0 +1,365 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="90dp"
+    android:height="137dp"
+    android:viewportWidth="90"
+    android:viewportHeight="137">
+  <group>
+    <clip-path
+        android:pathData="M0,11h90v86h-90z"/>
+    <path
+        android:pathData="M36.539,63.56C36.485,65.353 33.287,64.891 34.044,62.945C34.616,60.512 33.942,61.249 36.114,61.153C36.218,61.358 36.555,62.975 36.539,63.56Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M27.592,62.45C28.184,62.104 30.109,61.366 29.799,60.569L31.467,60.309C31.483,60.615 32.331,62.832 31.307,63.037C30.478,63.204 25.242,64.635 27.592,62.45Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M37.259,35.466C37.259,35.466 37.444,37.574 37.477,37.975C37.781,41.734 36.765,57.966 36.493,60.389C36.474,60.556 36.385,61.067 36.097,61.177C35.508,61.402 34.597,61.177 34.597,61.177C34.433,61.177 34.298,61.044 34.29,60.875C34.168,58.156 32.936,42.433 32.75,40.98C32.026,43.686 31.897,57.264 31.596,60.686C31.58,60.879 31.422,61.026 31.234,61.026C31.234,61.026 30.477,61.176 30.116,61.026C29.735,60.867 29.69,60.376 29.673,60.228C28.891,53.274 27.554,41.868 28.338,34.887L31.1,36.116L37.259,35.466Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M35.076,16.895C35.076,16.895 30.816,16.596 30.814,16.601L30.733,16.875C30.483,16.043 29.513,13.721 30.764,12.986C31.54,11.096 35.866,11.952 35.728,14.464C35.777,14.759 35.076,16.895 35.076,16.895Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M26.578,33.83L26.01,33.875C25.585,34.825 25.489,36.355 26.178,37.277C26.87,37.925 27.613,36.862 27.649,36.263C27.757,35.319 27.439,34.493 27.171,33.778L26.578,33.83Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M26.147,26.389C26.266,25.714 26.417,25.057 26.604,24.427C27.011,22.856 27.175,21.806 28.4,20.968C28.908,20.621 29.571,20.378 30.478,20.066C30.807,19.954 31.036,19.749 31.105,19.468C31.191,19.126 33.749,19.271 34.384,19.34C34.477,19.35 34.478,19.265 34.518,19.352C34.635,19.616 34.854,19.954 35.4,20.179C36.14,20.483 37.931,21.083 38.611,22.316C39.666,24.234 41.416,31.893 40.22,32.728C39.682,33.103 37.7,33.413 37.378,33.47C37.376,34.458 37.369,35.835 37.282,36.042C36.599,37.659 30.736,38.017 28.284,36.188C28.018,35.989 28.357,29.159 28.788,26.114C28.74,26.316 28.69,26.537 28.639,26.77C28.372,27.979 28.181,29.415 27.963,30.879C27.747,32.321 27.635,34.033 27.445,34.214C26.831,34.801 26.401,34.77 25.98,34.653C25.736,34.586 25.534,34.375 25.526,34.115C25.447,31.217 25.703,28.904 26.147,26.389Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M32.68,29.152H34.185C34.381,29.152 34.54,29.316 34.54,29.518V33.293C34.54,33.494 34.382,33.659 34.185,33.659H32.707C32.511,33.659 32.352,33.495 32.352,33.293V29.523C32.352,29.319 32.509,29.153 32.704,29.153"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M32.839,20.417C32.17,20.28 31.432,19.859 31.119,19.436C31.222,19.039 31.388,18.449 31.376,18.37C31.545,18.556 34.13,18.56 34.301,18.37C34.289,18.449 34.455,19.039 34.558,19.436C34.243,19.859 33.507,20.279 32.839,20.417Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M35.087,16.988V16.938C35.423,16.697 35.634,16.261 35.623,15.928C35.624,15.751 35.555,15.331 35.364,15.516C35.313,15.741 35.148,16.526 34.984,16.651C35.122,11.74 32.045,16.279 31.176,14.207C30.529,14.43 31.089,16.333 30.877,16.644C30.702,16.515 30.587,15.748 30.542,15.516C30.503,15.485 30.467,15.461 30.436,15.473C30.081,15.865 30.372,16.615 30.821,16.941C30.788,18.142 32.132,19.536 32.954,19.353C33.772,19.533 35.1,18.168 35.087,16.965"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M34.963,16.476C34.964,16.43 34.965,16.387 34.965,16.343C34.966,16.391 34.966,16.441 34.966,16.492C34.965,16.486 34.964,16.482 34.963,16.476Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M36.071,32.419L36.077,31.876C35.234,31.381 33.828,31.159 32.919,31.759C32.262,32.384 33.183,33.2 33.735,33.285C34.599,33.47 35.388,33.226 36.072,33.022"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M17.332,24.011C17.332,24.011 21.019,25.488 24.638,23.582L23.853,20.618L18.409,20.679L17.332,24.011Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M19.78,22.782L19.682,25.522H22.212L21.839,22.782H19.78Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M23.065,20.973C22.849,25.186 18.637,24.432 18.74,20.2C18.955,15.987 23.169,16.74 23.065,20.973Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M17.645,37.138C15.87,44.222 17.574,54.402 18.123,62.572L19.411,62.613C19.411,62.613 20.15,49.327 20.463,46.306C20.558,45.388 20.869,43.426 21.028,42.573C21.041,42.508 21.177,42.226 21.194,42.555C21.298,44.639 22.238,46.931 22.447,49.223C22.934,54.579 22.827,58.307 23.039,62.728C23.039,62.728 24.532,63.609 24.535,63.6C24.847,62.366 25.683,52.204 25.683,50.681C25.683,50.369 25.787,43.493 24.43,37.242L17.645,37.138Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M26.518,37.774C25.735,41.407 30.996,42.109 27.186,37.022L26.518,37.774Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M27.579,36.846C27.384,35.471 27.041,33.368 26.727,31.928C26.205,29.532 25.579,25.886 22.134,24.948C21.207,25.565 20.371,25.059 19.724,24.942C17.62,24.561 15.743,28.05 15.244,29.845C14.722,31.72 13.827,34.515 14.23,35.158C15.013,36.408 15.695,35.739 17.571,34.429C17.66,34.366 17.751,34.301 17.843,34.235C17.814,35.495 17.756,36.628 17.646,37.138C17.393,38.316 24.745,38.284 24.536,37.45C24.093,35.685 23.91,32.449 23.91,29.949C23.91,29.741 24.43,30.8 24.64,31.512C25.162,33.283 25.61,36.31 26.303,37.815C26.519,38.284 26.826,38.089 27.334,37.914C27.768,37.758 27.604,37.026 27.579,36.846ZM16.705,32.866C16.705,32.866 16.81,32.762 17.227,31.303C17.473,30.447 17.854,29.115 17.854,29.115C17.854,29.115 17.879,30.695 17.867,32.477C17.078,32.715 16.705,32.866 16.705,32.866Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M19.451,62.001L18.064,61.829C18.024,62.185 17.542,62.767 17.808,64.149C17.829,64.26 17.855,65.311 17.891,65.424C17.923,65.53 18.377,65.683 18.377,65.579C18.377,65.473 18.248,64.175 18.482,64.641C18.586,64.849 18.586,65.579 19.108,65.995C19.704,66.471 21.582,66.624 20.883,65.787C19.839,64.537 19.523,62.55 19.442,62.112"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M23.012,62.014C23.012,62.014 23.001,62.744 22.865,63.289C22.76,63.706 22.656,64.956 23.074,65.998H23.7C23.7,65.998 23.491,64.852 23.596,64.227C23.624,64.06 23.7,64.956 24.326,65.685C24.615,66.021 24.873,66.066 24.996,66.08C25.22,66.105 26.552,66.102 26.623,66.102C26.832,66.102 27.041,65.685 26.202,65.315C25.978,65.216 25.698,65.027 25.475,64.747C25.095,64.273 24.936,63.459 24.727,62.313L23.012,62.014Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M21.257,28.735L22.682,28.763C22.869,28.767 23.005,28.921 22.985,29.106L22.614,32.545C22.594,32.732 22.426,32.88 22.239,32.876L20.815,32.848C20.628,32.843 20.492,32.689 20.512,32.504L20.882,29.065C20.902,28.878 21.069,28.73 21.257,28.735Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M19.311,32.562L19.61,33C21.509,32.987 23.51,30.382 21.005,30.672C20.855,30.69 20.71,30.736 20.58,30.81C19.962,31.157 19.493,31.701 19.043,32.105"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M21.716,18.385C21.09,18.177 19.837,18.281 19.407,22.126C19.347,22.662 19.732,23.177 19.598,23.471C19.197,24.344 18.67,24.746 17.887,24.52C15.766,23.907 17.446,22.978 17.549,20.889C17.749,16.822 20.596,16.205 21.789,16.859C21.789,16.859 24.048,16.192 24.354,20.96C24.354,20.96 24.511,23.423 24.854,23.86C25.195,24.296 24.221,24.633 23.419,24.318C22.616,24.003 22.865,22.219 22.865,22.219C22.865,22.219 23.538,18.991 21.716,18.385Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M11.027,65.26C10.973,67.053 7.775,66.591 8.532,64.645C9.104,62.212 8.43,62.949 10.602,62.853C10.706,63.058 11.043,64.675 11.027,65.26Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M2.08,64.151C2.672,63.805 4.597,63.067 4.288,62.27L5.956,62.01C5.971,62.316 6.82,64.533 5.795,64.738C4.966,64.906 -0.27,66.336 2.08,64.151Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M11.749,37.166C11.749,37.166 11.935,39.274 11.967,39.675C12.272,43.434 11.255,59.666 10.983,62.089C10.965,62.256 10.875,62.767 10.587,62.877C9.999,63.103 9.088,62.877 9.088,62.877C8.924,62.877 8.788,62.744 8.78,62.576C8.658,59.857 7.426,44.133 7.24,42.68C6.516,45.386 6.387,58.965 6.086,62.386C6.07,62.579 5.912,62.727 5.724,62.727C5.724,62.727 4.967,62.876 4.607,62.727C4.225,62.568 4.18,62.077 4.164,61.928C3.381,54.974 2.044,43.568 2.828,36.587L5.59,37.816L11.749,37.166Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M9.565,18.596C9.565,18.596 5.304,18.297 5.302,18.302L5.221,18.577C4.972,17.744 4.002,15.422 5.252,14.687C6.028,12.797 10.354,13.653 10.217,16.165C10.266,16.46 9.565,18.596 9.565,18.596Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M1.067,35.531L0.498,35.576C0.073,36.526 -0.023,38.056 0.666,38.978C1.359,39.627 2.101,38.563 2.137,37.964C2.246,37.02 1.927,36.195 1.659,35.479L1.067,35.531Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M0.635,28.09C0.755,27.415 0.906,26.758 1.093,26.128C1.499,24.558 1.664,23.507 2.889,22.669C3.396,22.322 4.059,22.08 4.967,21.768C5.295,21.655 5.525,21.45 5.593,21.17C5.679,20.827 8.237,20.972 8.873,21.041C8.966,21.051 8.967,20.966 9.006,21.054C9.123,21.317 9.342,21.655 9.889,21.88C10.628,22.184 12.42,22.784 13.099,24.017C14.154,25.935 15.904,33.594 14.708,34.429C14.171,34.804 12.188,35.114 11.866,35.171C11.864,36.159 11.858,37.536 11.77,37.743C11.087,39.36 5.224,39.718 2.773,37.889C2.507,37.69 2.845,30.86 3.276,27.815C3.229,28.018 3.178,28.238 3.127,28.472C2.86,29.68 2.67,31.116 2.451,32.58C2.236,34.022 2.123,35.734 1.934,35.915C1.319,36.502 0.889,36.471 0.468,36.355C0.224,36.287 0.022,36.076 0.014,35.816C-0.065,32.918 0.191,30.605 0.635,28.09Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M7.168,30.854H8.673C8.869,30.854 9.028,31.017 9.028,31.219V34.994C9.028,35.195 8.87,35.36 8.673,35.36H7.195C7,35.36 6.84,35.197 6.84,34.994V31.224C6.84,31.02 6.997,30.855 7.192,30.855"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M7.329,22.118C6.66,21.982 5.922,21.56 5.609,21.137C5.712,20.74 5.878,20.15 5.866,20.071C6.035,20.257 8.621,20.262 8.791,20.071C8.779,20.15 8.945,20.74 9.048,21.137C8.733,21.56 7.997,21.98 7.329,22.118Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M9.575,18.689V18.639C9.911,18.399 10.122,17.963 10.111,17.629C10.112,17.452 10.043,17.032 9.852,17.217C9.802,17.442 9.636,18.227 9.472,18.352C9.61,13.442 6.533,17.981 5.664,15.908C5.017,16.131 5.577,18.035 5.365,18.346C5.19,18.216 5.075,17.449 5.03,17.217C4.991,17.187 4.955,17.162 4.924,17.174C4.569,17.566 4.86,18.316 5.309,18.642C5.277,19.844 6.62,21.237 7.442,21.054C8.26,21.235 9.588,19.869 9.575,18.667"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M9.451,18.177C9.452,18.131 9.453,18.088 9.453,18.044C9.454,18.092 9.454,18.142 9.454,18.193C9.453,18.187 9.452,18.183 9.451,18.177Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M10.559,34.12L10.565,33.577C9.723,33.083 8.316,32.861 7.407,33.46C6.75,34.085 7.672,34.902 8.223,34.986C9.087,35.171 9.876,34.927 10.56,34.723"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M55.689,24.256L55.423,27.003L54.883,27.447L54.344,27.779L55.099,29.441L59.309,29.552L58.769,27.779L58.877,26.892L58.548,26.744C58.284,26.624 58.098,26.373 58.059,26.078L57.818,24.255H55.689V24.256Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M59.085,22.331C58.862,26.813 54.506,26.01 54.613,21.509C54.836,17.027 59.192,17.828 59.085,22.331Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M53.48,39.525C51.645,47.061 53.407,57.889 53.974,66.58L55.306,66.624C55.306,66.624 56.07,52.491 56.394,49.278C56.493,48.301 56.814,46.215 56.978,45.307C56.991,45.238 57.133,44.938 57.15,45.288C57.258,47.505 58.229,49.943 58.445,52.381C58.949,58.078 58.838,62.044 59.057,66.746C59.057,66.746 60.602,67.684 60.604,67.674C60.927,66.362 61.791,55.552 61.791,53.932C61.791,53.6 62.212,46.677 60.496,39.636L53.48,39.525Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M62.285,40.032C61.272,43.845 66.666,44.893 63.017,39.272L62.285,40.032Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M49.951,37.42C50.76,38.75 51.465,38.038 53.404,36.644C53.497,36.578 53.59,36.508 53.686,36.438C53.656,37.777 53.596,38.984 53.482,39.526C53.221,40.779 60.822,40.744 60.606,39.858C60.148,37.981 59.959,34.539 59.959,31.879C59.959,31.657 60.319,32.774 60.498,33.541C60.954,35.484 61.285,38.313 62.002,39.913C62.225,40.412 62.543,40.205 63.067,40.019C63.516,39.854 63.335,39.076 63.321,38.882C63.219,37.479 62.981,35.515 62.656,33.983C62.157,31.626 61.782,28.131 58.877,26.83C58.829,26.809 58.775,26.845 58.776,26.9C58.804,27.894 57.777,29.329 57.259,29.329C56.288,29.329 54.668,27.888 54.444,26.725C52.133,27.417 51.446,30.112 50.999,31.767C50.459,33.763 49.534,36.736 49.951,37.42Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M55.344,65.959L53.911,65.791C53.87,66.17 53.372,66.788 53.647,68.259C53.668,68.376 53.695,69.495 53.732,69.615C53.766,69.727 54.235,69.89 54.235,69.779C54.235,69.668 54.101,68.287 54.343,68.782C54.451,69.004 54.451,69.779 54.991,70.223C55.607,70.729 57.549,70.892 56.826,70.001C55.746,68.671 55.424,66.562 55.339,66.097"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M59.04,66.031C59.04,66.031 59.017,66.763 58.876,67.341C58.768,67.784 58.66,69.114 59.092,70.223H59.739C59.739,70.223 59.523,69.004 59.631,68.339C59.66,68.161 59.739,69.114 60.387,69.89C60.685,70.247 60.953,70.296 61.079,70.31C61.311,70.337 62.688,70.333 62.762,70.333C62.978,70.333 63.193,69.89 62.327,69.497C62.095,69.391 61.805,69.19 61.574,68.893C61.181,68.388 61.001,67.535 60.785,66.316L59.04,66.031Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M57.216,30.587L58.689,30.617C58.883,30.621 59.023,30.785 59.002,30.983L58.619,34.641C58.599,34.839 58.425,34.996 58.232,34.992L56.758,34.962C56.565,34.958 56.425,34.794 56.445,34.597L56.828,30.938C56.849,30.74 57.022,30.583 57.216,30.587Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M55.203,34.658L55.512,35.124C57.529,35.11 59.656,32.188 56.734,32.678C55.982,33.033 55.443,33.694 54.926,34.171"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M59.865,27.423C59.713,27.304 59.587,27.218 59.417,27.115C59.219,26.995 59.08,26.93 58.862,26.836C58.845,26.828 58.805,26.836 58.793,26.859C58.609,26.812 58.464,26.728 58.312,26.583C57.991,26.277 57.786,25.734 57.894,25.18C57.952,24.881 58.064,24.757 58.126,24.68C59.513,22.963 58.6,20.232 58.6,20.232C58.6,20.232 57.82,21.919 54.88,23.073C54.88,23.073 55.002,23.858 55.434,24.412C55.465,24.453 55.789,24.753 55.801,25.224C55.812,25.686 55.813,26.154 55.505,26.862C55.131,27.727 54.177,27.935 53.454,27.638C52.915,27.416 52.699,26.862 52.674,26.316C52.674,26.316 54.145,26.404 53.799,24.718C53.54,23.45 53.231,20.681 54.449,19.079C54.467,19.057 54.484,19.035 54.501,19.013C54.513,18.996 54.527,18.98 54.541,18.964C54.566,18.934 54.592,18.904 54.618,18.875C54.643,18.849 54.667,18.822 54.692,18.796C55.074,18.398 55.577,18.098 56.235,17.952C56.235,17.952 58.743,17.598 59.175,19.107C59.175,19.107 59.867,19.463 59.954,20.795C60.041,22.127 59.824,22.615 59.78,23.636C59.729,24.878 61.325,25.567 60.806,26.316C60.381,26.842 61.039,27.065 59.865,27.423Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M81.201,21.704L80.935,24.451L80.395,24.895L79.855,25.227L80.611,26.889L84.821,27L84.281,25.227L84.389,24.341L84.06,24.192C83.795,24.072 83.61,23.821 83.571,23.526L83.33,21.703H81.201V21.704Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M84.595,19.78C84.371,24.262 80.016,23.459 80.123,18.958C80.345,14.476 84.702,15.278 84.595,19.78Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M78.992,36.975C77.157,44.51 78.918,55.339 79.486,64.029L80.818,64.074C80.818,64.074 81.582,49.941 81.906,46.727C82.004,45.75 82.326,43.664 82.49,42.756C82.503,42.687 82.644,42.387 82.662,42.737C82.77,44.954 83.741,47.392 83.957,49.83C84.461,55.527 84.35,59.493 84.569,64.196C84.569,64.196 86.114,65.133 86.116,65.123C86.438,63.811 87.303,53.001 87.303,51.381C87.303,51.049 87.724,44.126 86.008,37.085L78.992,36.975Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M87.797,37.481C86.784,41.294 92.177,42.342 88.529,36.722L87.797,37.481Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M76.631,33.645C78.2,36.222 75.781,36.622 78.992,36.975C78.731,38.228 86.332,38.194 86.116,37.307C85.658,35.43 85.468,31.988 85.468,29.328C85.468,29.106 85.829,30.223 86.008,30.99C86.464,32.933 86.795,35.762 87.512,37.363C87.735,37.861 88.052,37.654 88.577,37.468C89.026,37.303 88.845,36.525 88.831,36.331C88.729,34.928 88.491,32.964 88.166,31.433C87.667,29.075 87.291,25.58 84.387,24.279C84.339,24.258 84.284,24.295 84.285,24.349C84.313,25.343 83.287,26.778 82.769,26.778C81.797,26.778 80.178,25.337 79.954,24.174C77.643,24.866 77.482,26.778 77.482,29.393C76.942,31.389 76.215,32.962 76.631,33.645Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M80.855,63.409L79.423,63.24C79.382,63.619 78.883,64.238 79.159,65.708C79.18,65.826 79.207,66.944 79.244,67.065C79.277,67.177 79.747,67.34 79.747,67.229C79.747,67.117 79.613,65.736 79.855,66.231C79.963,66.453 79.963,67.229 80.502,67.672C81.119,68.178 83.061,68.341 82.337,67.45C81.258,66.12 80.935,64.011 80.851,63.546"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M84.552,63.48C84.552,63.48 84.529,64.212 84.387,64.79C84.28,65.234 84.172,66.563 84.604,67.672H85.251C85.251,67.672 85.035,66.453 85.143,65.788C85.172,65.61 85.251,66.563 85.899,67.339C86.197,67.696 86.464,67.745 86.59,67.759C86.823,67.786 88.2,67.783 88.273,67.783C88.489,67.783 88.705,67.339 87.838,66.946C87.606,66.841 87.317,66.639 87.086,66.342C86.693,65.838 86.513,64.984 86.297,63.765L84.552,63.48Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M82.728,28.035L84.201,28.065C84.394,28.07 84.535,28.234 84.514,28.431L84.131,32.089C84.11,32.287 83.937,32.445 83.743,32.44L82.27,32.41C82.077,32.406 81.937,32.242 81.957,32.045L82.34,28.386C82.361,28.188 82.534,28.031 82.728,28.035Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M80.713,32.107L81.022,32.573C83.039,32.559 85.165,29.638 82.243,30.128C81.492,30.482 80.953,31.143 80.436,31.62"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M85.376,24.872C85.224,24.754 85.099,24.667 84.928,24.564C84.731,24.444 84.592,24.379 84.374,24.285C84.356,24.277 84.316,24.285 84.305,24.308C84.121,24.262 83.975,24.177 83.823,24.032C83.503,23.726 83.298,23.183 83.405,22.629C83.464,22.33 83.576,22.206 83.637,22.129C85.024,20.413 84.111,17.681 84.111,17.681C84.111,17.681 83.332,19.368 80.392,20.522C80.392,20.522 80.514,21.307 80.946,21.861C80.977,21.902 81.301,22.203 81.313,22.674C81.323,23.136 81.324,23.603 81.017,24.312C80.642,25.176 79.689,25.384 78.966,25.087C78.426,24.866 78.21,24.312 78.186,23.765C78.186,23.765 79.657,23.854 79.31,22.167C79.051,20.899 78.743,18.13 79.961,16.528C79.978,16.506 79.996,16.484 80.013,16.462C80.025,16.445 80.039,16.429 80.053,16.413C80.078,16.383 80.104,16.353 80.13,16.325C80.154,16.298 80.179,16.271 80.204,16.245C80.586,15.847 81.089,15.548 81.746,15.401C81.746,15.401 84.255,15.047 84.687,16.556C84.687,16.556 85.379,16.912 85.466,18.244C85.552,19.576 85.335,20.064 85.292,21.086C85.24,22.328 85.206,23.572 86.503,23.838C86.506,23.836 86.551,24.514 85.376,24.872Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M72.767,65.756C72.711,67.582 69.35,67.112 70.145,65.129C70.746,62.651 70.038,63.402 72.321,63.304C72.43,63.513 72.784,65.16 72.767,65.756Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M63.367,64.626C63.989,64.274 66.011,63.523 65.686,62.71L67.439,62.445C67.455,62.757 68.347,65.015 67.27,65.224C66.399,65.395 60.897,66.852 63.367,64.626Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M73.523,37.138C73.523,37.138 73.718,39.285 73.753,39.694C74.072,43.522 73.005,60.058 72.718,62.526C72.699,62.695 72.605,63.216 72.302,63.329C71.684,63.558 70.727,63.329 70.727,63.329C70.554,63.329 70.412,63.194 70.404,63.021C70.275,60.252 68.981,44.235 68.785,42.755C68.024,45.511 67.889,59.343 67.573,62.829C67.555,63.025 67.39,63.175 67.192,63.175C67.192,63.175 66.397,63.328 66.018,63.175C65.616,63.013 65.569,62.513 65.552,62.362C64.73,55.278 63.325,43.659 64.149,36.548L67.051,37.8L73.523,37.138Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M71.229,18.221C71.229,18.221 66.753,17.917 66.751,17.922L66.665,18.201C66.403,17.354 65.384,14.988 66.698,14.24C67.514,12.315 72.059,13.186 71.915,15.745C71.966,16.046 71.229,18.221 71.229,18.221Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M62.3,35.472L61.702,35.518C61.256,36.485 61.155,38.044 61.879,38.982C62.607,39.643 63.387,38.56 63.425,37.95C63.539,36.988 63.204,36.147 62.923,35.419L62.3,35.472Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M61.847,27.892C61.973,27.205 62.131,26.536 62.328,25.893C62.755,24.294 62.928,23.223 64.215,22.37C64.748,22.016 65.445,21.77 66.399,21.452C66.744,21.337 66.985,21.128 67.058,20.843C67.147,20.494 69.836,20.642 70.503,20.712C70.601,20.722 70.602,20.635 70.644,20.724C70.767,20.993 70.996,21.337 71.571,21.567C72.348,21.876 74.231,22.487 74.944,23.743C76.053,25.697 77.893,33.499 76.635,34.349C76.071,34.731 73.987,35.048 73.649,35.105C73.647,36.111 73.64,37.514 73.548,37.725C72.155,38.647 67.718,38.881 64.093,38.341C62.581,38.341 63.212,37.725 63.212,35.863C63.212,36.546 62.114,36.429 61.672,36.311C61.415,36.242 61.203,36.028 61.195,35.763C61.112,32.81 61.381,30.454 61.847,27.892ZM73.729,32.607C74.1,32.466 74.262,32.533 74.444,32.466C74.471,31.607 73.628,28.073 73.525,27.762C73.525,27.777 73.664,30.105 73.729,32.607Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M68.712,30.708H70.294C70.499,30.708 70.667,30.874 70.667,31.081V34.926C70.667,35.131 70.5,35.299 70.294,35.299H68.741C68.535,35.299 68.367,35.132 68.367,34.926V31.086C68.367,30.878 68.533,30.709 68.737,30.709"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M68.879,21.809C68.177,21.67 67.401,21.241 67.072,20.81C67.18,20.406 67.355,19.805 67.342,19.725C67.519,19.914 70.237,19.919 70.416,19.725C70.403,19.805 70.578,20.406 70.686,20.81C70.355,21.241 69.581,21.669 68.879,21.809Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M71.24,18.316V18.266C71.592,18.02 71.814,17.576 71.803,17.236C71.804,17.056 71.731,16.628 71.53,16.817C71.477,17.046 71.304,17.846 71.132,17.973C71.276,12.971 68.043,17.594 67.129,15.483C66.45,15.711 67.039,17.65 66.816,17.966C66.632,17.834 66.511,17.053 66.464,16.817C66.423,16.786 66.385,16.76 66.352,16.773C65.979,17.172 66.285,17.936 66.757,18.268C66.723,19.492 68.134,20.911 68.998,20.726C69.858,20.909 71.253,19.518 71.24,18.293"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M71.111,17.795C71.112,17.748 71.114,17.704 71.114,17.659C71.115,17.709 71.115,17.759 71.115,17.811C71.114,17.805 71.112,17.8 71.111,17.795Z"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M72.274,34.034L72.28,33.481C71.395,32.978 69.917,32.752 68.962,33.362C68.271,33.999 69.24,34.831 69.819,34.917C70.727,35.105 71.556,34.857 72.275,34.649"
+        android:fillColor="#2D2D2F"/>
+    <path
+        android:pathData="M60.126,35.74L59.992,39.483H63.453L62.943,35.74H60.126Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M64.617,33.268C64.321,39.023 58.56,37.993 58.702,32.212C58.996,26.458 64.758,27.486 64.617,33.268Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M57.203,55.348C54.776,65.024 57.106,78.929 57.857,90.088L59.619,90.145C59.619,90.145 60.63,71.997 61.058,67.87C61.188,66.617 61.614,63.368 61.831,62.202C61.848,62.114 62.035,61.729 62.058,62.178C62.201,65.024 63.485,68.724 63.771,71.855C64.438,79.171 64.291,84.264 64.58,90.302C64.58,90.302 66.624,91.506 66.626,91.493C67.053,89.808 68.197,75.928 68.197,73.847C68.197,73.42 68.34,64.028 66.484,55.49L57.203,55.348Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M69.341,56.216C68.269,61.179 75.465,62.138 70.254,55.19L69.341,56.216Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M70.791,54.95C70.524,53.072 70.056,50.2 69.626,48.234C68.912,44.96 68.056,39.98 63.344,38.699C62.553,39.46 60.686,38.961 60.049,38.699C60.038,38.695 60.033,38.699 60.021,38.699C55.67,38.742 54.605,42.934 53.921,45.387C53.208,47.949 51.984,51.767 52.535,52.645C53.606,54.353 54.538,53.439 57.104,51.649C57.227,51.563 57.351,51.474 57.476,51.384C57.436,53.103 57.356,54.653 57.207,55.349C56.861,56.958 66.915,56.914 66.63,55.776C66.024,53.365 65.773,48.945 65.773,45.53C65.773,45.245 66.485,46.692 66.772,47.664C67.486,50.083 68.099,54.219 69.047,56.274C69.342,56.914 69.762,56.648 70.456,56.409C71.05,56.197 70.826,55.196 70.791,54.95ZM55.92,49.514C55.92,49.514 56.063,49.372 56.634,47.38C56.97,46.21 57.491,44.391 57.491,44.391C57.491,44.391 57.525,46.549 57.509,48.982C56.43,49.308 55.92,49.514 55.92,49.514Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M59.614,89.428L57.775,89.073C57.721,89.56 57.061,90.354 57.425,92.242C57.454,92.393 57.49,93.829 57.538,93.984C57.583,94.128 58.204,94.337 58.204,94.195C58.204,94.051 58.027,92.278 58.346,92.914C58.489,93.199 58.489,94.195 59.203,94.764C60.018,95.414 62.587,95.623 61.63,94.479C60.202,92.772 59.784,89.99 59.673,89.392"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M57.897,25.847C57.897,25.847 58.523,24.451 59.651,24.778C59.651,24.778 60.063,22.587 62.858,23.091C65.653,23.595 65.606,25.503 65.606,25.503C65.606,25.503 68.589,25.507 67.798,29.015C67.798,29.015 68.505,30.603 67.377,31.411C67.377,31.411 67.772,33.156 66.029,33.354C66.029,33.354 65.892,33.866 65.458,33.778C65.458,33.778 64.688,34.76 64.409,34.097C64.241,33.7 64.279,32.914 64.336,32.348C64.386,31.848 64.237,31.351 63.919,30.963C63.53,30.491 62.948,29.951 62.281,29.906C61.073,29.823 59.41,30.667 59.182,31.541C59.01,32.194 59.496,34.297 58.459,34.303C57.798,34.307 57.48,33.342 57.48,33.342C57.48,33.342 55.558,33.016 56.098,31.498C56.098,31.498 55.128,30.389 55.938,29.07C55.938,29.072 55.011,25.893 57.897,25.847Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M64.554,89.379C64.554,89.379 64.53,90.324 64.344,91.067C64.202,91.636 64.059,93.343 64.63,94.767H65.487C65.487,94.767 65.201,93.201 65.344,92.347C65.382,92.12 65.487,93.343 66.343,94.34C66.737,94.798 67.091,94.86 67.258,94.879C67.565,94.913 69.387,94.909 69.484,94.909C69.77,94.909 70.055,94.34 68.909,93.834C68.602,93.699 68.219,93.44 67.914,93.059C67.394,92.411 67.181,91.314 66.896,89.749L64.554,89.379Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M62.147,43.869L64.096,43.908C64.351,43.914 64.537,44.124 64.51,44.377L64.003,49.075C63.976,49.329 63.746,49.532 63.49,49.526L61.542,49.487C61.286,49.482 61.1,49.271 61.128,49.018L61.634,44.32C61.661,44.066 61.89,43.864 62.147,43.869Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M59.482,49.098L59.89,49.697C62.557,49.679 65.371,45.928 61.507,46.556C60.513,47.012 59.799,47.86 59.115,48.473"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M12.681,35.656L12.322,39.289L11.592,39.875L10.861,40.315L11.884,42.514L17.579,42.66L16.849,40.315L16.995,39.143L16.549,38.946C16.192,38.788 15.94,38.455 15.888,38.065L15.562,35.654H12.681V35.656Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M17.276,33.109C16.973,39.036 11.081,37.975 11.225,32.021C11.526,26.094 17.42,27.154 17.276,33.109Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M9.693,55.852C7.21,65.818 9.594,80.14 10.362,91.634L12.164,91.692C12.164,91.692 13.198,73 13.636,68.75C13.769,67.458 14.204,64.699 14.426,63.498C14.443,63.407 14.635,63.01 14.658,63.473C14.804,66.405 16.118,69.629 16.411,72.854C17.093,80.389 16.942,85.634 17.239,91.853C17.239,91.853 19.328,93.093 19.331,93.08C19.768,91.345 20.938,77.049 20.938,74.906C20.938,74.466 21.507,65.31 19.185,55.998L9.693,55.852Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M21.607,56.521C20.235,61.564 27.533,62.951 22.597,55.517L21.607,56.521Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M4.917,53.066C6.012,54.825 6.966,53.884 9.59,52.04C9.716,51.952 9.841,51.86 9.971,51.768C9.93,53.538 9.849,55.134 9.695,55.851C9.342,57.509 19.626,57.463 19.334,56.291C18.715,53.808 18.458,49.256 18.458,45.738C18.458,45.445 18.945,46.922 19.188,47.936C19.804,50.506 20.252,54.248 21.222,56.364C21.524,57.024 21.954,56.75 22.663,56.503C23.271,56.285 23.025,55.256 23.007,55C22.869,53.144 22.546,50.547 22.107,48.521C21.432,45.404 20.924,40.781 16.994,39.06C16.93,39.032 16.855,39.081 16.857,39.153C16.895,40.467 15.506,42.365 14.805,42.365C13.491,42.365 11.3,40.46 10.997,38.921C7.87,39.837 6.941,43.402 6.335,45.59C5.605,48.23 4.353,52.162 4.917,53.066ZM8.482,49.628C8.584,49.374 8.774,48.825 9.111,47.643L9.805,45.209C9.836,45.1 9.995,45.121 9.996,45.234C10.005,46.078 10.018,47.623 10.006,49.294C9.319,49.502 8.856,49.663 8.606,49.755C8.526,49.786 8.45,49.707 8.482,49.628Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M12.216,90.813L10.278,90.59C10.222,91.091 9.548,91.909 9.92,93.854C9.949,94.009 9.986,95.488 10.035,95.648C10.081,95.796 10.716,96.011 10.716,95.865C10.716,95.717 10.535,93.891 10.862,94.546C11.008,94.839 11.008,95.865 11.738,96.451C12.572,97.121 15.199,97.336 14.221,96.158C12.76,94.399 12.324,91.61 12.21,90.994"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M17.218,90.907C17.218,90.907 17.187,91.875 16.996,92.64C16.85,93.226 16.704,94.985 17.288,96.451H18.164C18.164,96.451 17.872,94.838 18.018,93.959C18.058,93.724 18.164,94.985 19.04,96.011C19.443,96.483 19.806,96.547 19.976,96.566C20.29,96.601 22.154,96.597 22.253,96.597C22.545,96.597 22.837,96.011 21.665,95.49C21.351,95.351 20.959,95.084 20.647,94.692C20.115,94.025 19.871,92.896 19.579,91.284L17.218,90.907Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M14.748,44.029L16.742,44.069C17.003,44.075 17.193,44.292 17.165,44.553L16.647,49.391C16.619,49.653 16.384,49.861 16.123,49.855L14.129,49.816C13.868,49.81 13.678,49.593 13.706,49.332L14.224,44.494C14.252,44.232 14.486,44.023 14.748,44.029Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M12.024,49.414L12.441,50.031C15.171,50.012 18.048,46.148 14.094,46.796C13.078,47.265 12.348,48.139 11.648,48.77"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M18.332,39.844C18.126,39.687 17.957,39.573 17.726,39.437C17.459,39.278 17.271,39.192 16.976,39.067C16.952,39.057 16.898,39.067 16.882,39.098C16.634,39.037 16.437,38.925 16.231,38.733C15.797,38.329 15.52,37.611 15.666,36.878C15.745,36.482 15.896,36.318 15.98,36.217C17.856,33.946 16.621,30.333 16.621,30.333C16.621,30.333 15.566,32.564 11.589,34.091C11.589,34.091 11.753,35.129 12.338,35.862C12.38,35.916 12.818,36.313 12.834,36.936C12.849,37.548 12.85,38.166 12.434,39.103C11.927,40.246 10.638,40.521 9.659,40.129C8.929,39.835 8.637,39.103 8.604,38.38C8.604,38.38 10.594,38.497 10.125,36.266C9.775,34.59 9.357,30.927 11.006,28.809C11.029,28.78 11.052,28.75 11.076,28.721C11.092,28.699 11.111,28.677 11.13,28.657C11.163,28.617 11.199,28.577 11.234,28.539C11.267,28.504 11.301,28.469 11.334,28.434C11.851,27.908 12.532,27.512 13.421,27.318C13.421,27.318 16.815,26.849 17.399,28.846C17.399,28.846 18.335,29.316 18.454,31.078C18.57,32.84 18.277,33.485 18.219,34.836C18.148,36.479 18.102,38.125 19.857,38.477C19.86,38.474 19.921,39.371 18.332,39.844Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M80.648,95.277C80.572,97.731 76.058,97.099 77.126,94.436C77.934,91.107 76.983,92.115 80.049,91.984C80.196,92.264 80.671,94.477 80.648,95.277Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M68.02,93.76C68.855,93.287 71.572,92.277 71.135,91.186L73.49,90.83C73.511,91.249 74.709,94.282 73.263,94.563C72.092,94.793 64.702,96.75 68.02,93.76Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M81.665,56.836C81.665,56.836 81.927,59.721 81.974,60.27C82.403,65.413 80.968,87.624 80.584,90.939C80.558,91.168 80.431,91.867 80.025,92.018C79.195,92.326 77.908,92.018 77.908,92.018C77.677,92.018 77.485,91.837 77.475,91.605C77.302,87.885 75.563,66.37 75.301,64.382C74.279,68.084 74.096,86.664 73.672,91.346C73.649,91.61 73.426,91.812 73.161,91.812C73.161,91.812 72.092,92.017 71.583,91.812C71.044,91.594 70.981,90.923 70.958,90.719C69.854,81.204 67.966,65.596 69.073,56.044L72.971,57.725L81.665,56.836Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M78.583,31.425C78.583,31.425 72.569,31.016 72.566,31.022L72.452,31.399C72.1,30.26 70.731,27.082 72.495,26.077C73.591,23.491 79.698,24.662 79.503,28.099C79.573,28.503 78.583,31.425 78.583,31.425Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M66.589,54.598L65.786,54.66C65.187,55.959 65.051,58.054 66.023,59.314C67.001,60.202 68.049,58.747 68.1,57.927C68.253,56.636 67.803,55.506 67.425,54.527L66.589,54.598Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M65.979,44.415C66.147,43.492 66.36,42.594 66.624,41.731C67.199,39.582 67.43,38.144 69.159,36.998C69.876,36.523 70.811,36.192 72.093,35.765C72.556,35.611 72.88,35.33 72.978,34.946C73.098,34.478 76.709,34.677 77.606,34.771C77.737,34.785 77.739,34.667 77.795,34.788C77.96,35.148 78.269,35.611 79.04,35.919C80.084,36.335 82.613,37.155 83.572,38.842C85.062,41.467 87.532,51.947 85.843,53.089C85.085,53.602 82.286,54.028 81.832,54.105C81.829,55.456 81.82,57.341 81.696,57.625C79.825,58.863 73.865,59.177 68.996,58.451C66.965,58.451 67.812,57.625 67.812,55.124C67.812,56.04 66.337,55.883 65.743,55.725C65.398,55.632 65.113,55.344 65.102,54.988C64.991,51.022 65.352,47.857 65.979,44.415ZM81.94,50.75C82.437,50.56 82.655,50.65 82.9,50.56C82.936,49.406 81.804,44.659 81.665,44.241C81.665,44.261 81.852,47.388 81.94,50.75Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M75.2,48.197H77.324C77.6,48.197 77.826,48.421 77.826,48.698V53.863C77.826,54.139 77.602,54.364 77.324,54.364H75.238C74.962,54.364 74.736,54.14 74.736,53.863V48.704C74.736,48.425 74.959,48.199 75.233,48.199"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M75.425,36.244C74.482,36.057 73.439,35.481 72.998,34.901C73.143,34.359 73.378,33.551 73.361,33.443C73.599,33.698 77.248,33.704 77.489,33.443C77.472,33.551 77.707,34.359 77.852,34.901C77.407,35.481 76.368,36.056 75.425,36.244Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M78.597,31.553V31.485C79.071,31.156 79.369,30.559 79.354,30.103C79.355,29.861 79.258,29.286 78.988,29.539C78.917,29.847 78.684,30.921 78.452,31.092C78.647,24.373 74.304,30.584 73.076,27.748C72.164,28.053 72.954,30.658 72.655,31.083C72.408,30.906 72.246,29.856 72.182,29.539C72.127,29.497 72.076,29.463 72.033,29.48C71.531,30.017 71.942,31.043 72.576,31.488C72.53,33.133 74.426,35.039 75.587,34.79C76.742,35.036 78.616,33.168 78.597,31.522"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M78.422,30.852C78.424,30.789 78.425,30.73 78.425,30.67C78.426,30.736 78.426,30.804 78.426,30.874C78.425,30.866 78.424,30.86 78.422,30.852Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M79.987,52.667L79.995,51.924C78.806,51.247 76.821,50.944 75.538,51.764C74.61,52.619 75.911,53.736 76.69,53.852C77.909,54.105 79.022,53.772 79.989,53.493"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M31.908,93.792C31.836,96.192 27.495,95.574 28.522,92.968C29.299,89.712 28.384,90.698 31.332,90.57C31.473,90.844 31.931,93.009 31.908,93.792Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M19.766,92.307C20.569,91.844 23.182,90.856 22.761,89.789L25.025,89.44C25.046,89.851 26.198,92.818 24.807,93.092C23.682,93.317 16.576,95.232 19.766,92.307Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M32.885,56.182C32.885,56.182 33.137,59.005 33.182,59.542C33.595,64.573 32.216,86.304 31.846,89.547C31.821,89.77 31.699,90.455 31.309,90.603C30.51,90.904 29.274,90.603 29.274,90.603C29.051,90.603 28.867,90.425 28.856,90.198C28.69,86.559 27.019,65.509 26.766,63.564C25.784,67.186 25.608,85.364 25.2,89.945C25.178,90.203 24.964,90.4 24.709,90.4C24.709,90.4 23.682,90.601 23.192,90.4C22.674,90.188 22.613,89.531 22.591,89.331C21.529,80.022 19.714,64.753 20.778,55.407L24.526,57.052L32.885,56.182Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M29.922,31.322C29.922,31.322 24.14,30.922 24.137,30.928L24.027,31.296C23.689,30.182 22.372,27.073 24.069,26.089C25.123,23.559 30.993,24.705 30.806,28.068C30.873,28.463 29.922,31.322 29.922,31.322Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M18.391,53.993L17.619,54.053C17.043,55.325 16.912,57.374 17.848,58.607C18.787,59.475 19.795,58.052 19.844,57.25C19.991,55.986 19.559,54.881 19.195,53.924L18.391,53.993Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M17.804,44.031C17.966,43.128 18.17,42.249 18.424,41.404C18.976,39.303 19.199,37.896 20.862,36.774C21.55,36.31 22.45,35.985 23.682,35.568C24.127,35.417 24.439,35.143 24.533,34.767C24.648,34.309 28.12,34.503 28.983,34.595C29.109,34.609 29.111,34.494 29.164,34.612C29.323,34.965 29.62,35.417 30.362,35.718C31.365,36.126 33.797,36.928 34.718,38.579C36.151,41.147 38.526,51.4 36.902,52.517C36.173,53.019 33.482,53.435 33.046,53.511C33.043,54.833 33.034,56.677 32.915,56.954C31.989,59.118 24.031,59.598 20.704,57.149C20.344,56.884 20.802,47.74 21.387,43.663C21.323,43.935 21.255,44.23 21.185,44.542C20.823,46.16 20.565,48.083 20.268,50.043C19.976,51.973 19.823,54.265 19.566,54.507C18.732,55.293 18.148,55.251 17.577,55.095C17.246,55.005 16.971,54.723 16.961,54.375C16.854,50.495 17.201,47.398 17.804,44.031ZM33.15,50.228C33.627,50.043 33.837,50.13 34.073,50.043C34.107,48.913 33.019,44.269 32.885,43.861C32.885,43.88 33.065,46.94 33.15,50.228Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M26.67,47.731H28.712C28.978,47.731 29.195,47.95 29.195,48.221V53.274C29.195,53.544 28.98,53.764 28.712,53.764H26.707C26.441,53.764 26.225,53.546 26.225,53.274V48.227C26.225,47.954 26.438,47.733 26.702,47.733"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M26.886,36.036C25.979,35.854 24.977,35.29 24.553,34.723C24.692,34.193 24.918,33.402 24.902,33.297C25.13,33.546 28.639,33.552 28.871,33.297C28.854,33.402 29.08,34.193 29.22,34.723C28.792,35.29 27.793,35.853 26.886,36.036Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M29.935,31.446V31.38C30.391,31.057 30.677,30.474 30.663,30.028C30.664,29.791 30.571,29.228 30.311,29.476C30.243,29.777 30.018,30.828 29.796,30.996C29.983,24.421 25.807,30.498 24.627,27.724C23.75,28.022 24.51,30.57 24.222,30.986C23.984,30.813 23.829,29.786 23.768,29.476C23.714,29.435 23.665,29.402 23.624,29.418C23.141,29.943 23.536,30.947 24.146,31.383C24.102,32.992 25.924,34.857 27.041,34.613C28.151,34.854 29.953,33.027 29.935,31.416"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M29.768,30.761C29.769,30.699 29.771,30.642 29.771,30.583C29.772,30.648 29.772,30.714 29.772,30.782C29.771,30.775 29.769,30.769 29.768,30.761Z"
+        android:fillColor="#3F3F43"/>
+    <path
+        android:pathData="M31.272,52.103L31.28,51.377C30.137,50.715 28.228,50.418 26.994,51.22C26.102,52.057 27.353,53.15 28.102,53.263C29.274,53.51 30.344,53.185 31.274,52.912"
+        android:fillColor="#3F3F43"/>
+  </group>
+  <path
+      android:pathData="M56.662,4.336C57.193,-0.849 49.54,-1.692 48.978,3.493C48.446,8.678 56.099,9.49 56.662,4.336Z"
+      android:fillColor="#DFDFDF"/>
+  <path
+      android:pathData="M52.35,19.736L52.632,27.952H45.072L46.166,19.736H52.35Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M42.449,13.988C42.449,26.639 55.162,25.015 55.506,12.333C55.506,-0.318 42.793,1.306 42.449,13.988Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M60.815,60.594C66.75,89.956 60.19,101.733 58.535,126.222L54.693,126.347L51.101,78.43L50.538,73.713C48.695,80.304 46.165,87.457 44.51,96.297C43.885,109.542 43.229,113.446 42.604,126.691L37.419,126.566C37.419,126.566 34.264,96.204 34.295,96.204C35.264,87.489 34.92,77.149 39.605,61.218L60.815,60.594Z"
+      android:fillColor="#DDA7A2"/>
+  <path
+      android:pathData="M33.422,61.563C35.796,72.433 20.084,74.619 31.423,59.313L33.422,61.563Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M52.819,58.282C75.028,56.627 68.313,43.101 66.751,37.478C65.251,32.106 61.565,26.233 52.569,25.765C52.163,25.733 49.977,27.795 45.354,25.64C35.514,28.107 33.64,36.541 32.078,43.726C31.141,48.036 30.828,54.346 30.235,58.47C30.172,59.001 29.673,61.218 30.985,61.687C32.515,62.218 33.296,62.687 34.077,61.375C35.826,58.407 37.919,46.599 39.262,40.29C39.543,38.915 40.199,37.478 40.199,38.103C40.199,38.79 38.544,59.438 39.575,61.218C40.855,63.467 57.848,62.655 60.816,60.594C61.222,60.313 61.034,56.314 60.472,51.472L59.754,46.069C59.597,44.944 59.41,43.851 59.223,42.789C58.379,37.884 58.285,33.418 58.285,33.418C58.285,33.418 61.003,40.883 61.909,43.32C65.564,53.284 50.57,54.221 50.57,54.221"
+      android:fillColor="#385460"/>
+  <path
+      android:pathData="M54.663,125.035L58.599,125.973C58.973,127.597 61.972,134.563 58.411,136.124C57.006,136.905 55.912,137.624 54.444,136.124C51.195,134.188 54.569,126.347 54.663,125.035Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M42.573,126.722C42.448,127.566 43.26,133.47 42.386,134.001C42.105,134.313 41.761,134.438 41.605,134.5C37.138,134.5 32.046,134.532 27.58,134.532C25.112,131.814 37.575,131.033 37.357,126.597C39.137,126.629 40.855,126.66 42.573,126.722Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M55.163,6.617C51.414,0.369 42.699,3.118 42.699,10.927C47.072,10.303 49.634,9.615 52.07,7.804C52.226,7.71 52.164,7.554 52.383,7.804C54.382,10.053 55.194,14.363 55.194,14.363C56.443,13.114 56.162,8.116 55.163,6.617Z"
+      android:fillColor="#DFDFDF"/>
+  <path
+      android:pathData="M31.58,27.99C29.76,29.795 23.148,34.651 17.258,35.394C16.535,35.5 16,36.455 16,37.597L16.321,71.644C16.375,76.872 18.115,81.728 20.952,84.435C25.53,88.814 31.339,93.458 32.517,94.413C32.678,94.546 32.865,94.546 33.026,94.413C34.177,93.431 38.326,88.708 42.824,84.249C45.608,81.49 47.267,76.633 47.214,71.379L46.893,37.331C46.893,36.19 46.331,35.261 45.608,35.182C39.692,34.545 34.578,29.795 32.731,28.017C32.544,27.857 32.356,27.751 32.142,27.751C31.955,27.725 31.741,27.831 31.58,27.99Z"
+      android:fillColor="#9BBACE"
+      android:fillType="evenOdd"/>
+  <path
+      android:pathData="M51.757,55.877L53.444,56.533C53.881,60.906 44.885,65.685 45.291,59.875C45.322,59.531 45.447,59.188 45.697,58.875C46.821,57.438 48.664,56.314 50.039,55.252"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M28.352,68.995C27.992,68.755 27.632,68.409 27.297,67.956L21.846,60.423C21.409,59.81 21.203,59.172 21.203,58.533C21.203,57.84 21.409,57.228 21.846,56.749C22.257,56.27 22.797,56.004 23.389,56.004C23.749,56.004 24.083,56.083 24.392,56.27C24.7,56.456 24.983,56.749 25.266,57.122L29.483,63.218L38.663,46.527C39.203,45.568 39.846,45.089 40.617,45.089C41.209,45.089 41.723,45.302 42.186,45.755C42.649,46.207 42.88,46.766 42.88,47.432C42.88,47.751 42.829,48.07 42.7,48.39C42.572,48.709 42.443,49.002 42.289,49.322L31.746,67.956C31.206,68.915 30.486,69.367 29.586,69.367C29.123,69.341 28.737,69.234 28.352,68.995Z"
+      android:fillColor="#ffffff"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_once.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_once.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e2eab868d2bebdc339e5b6bd9c53292936342f5b
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccinated_once.xml
@@ -0,0 +1,361 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="90dp"
+    android:height="136dp"
+    android:viewportWidth="90"
+    android:viewportHeight="136">
+  <path
+      android:pathData="M36.538,61.56C36.485,63.353 33.286,62.891 34.043,60.945C34.615,58.512 33.942,59.248 36.114,59.153C36.218,59.358 36.555,60.975 36.538,61.56Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M27.592,60.45C28.184,60.104 30.109,59.366 29.799,58.569L31.468,58.309C31.483,58.615 32.332,60.832 31.307,61.037C30.478,61.204 25.242,62.635 27.592,60.45Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M37.259,33.466C37.259,33.466 37.445,35.574 37.478,35.975C37.782,39.734 36.766,55.966 36.494,58.389C36.475,58.556 36.385,59.067 36.098,59.178C35.509,59.403 34.598,59.178 34.598,59.178C34.434,59.178 34.298,59.045 34.291,58.876C34.168,56.157 32.937,40.433 32.751,38.98C32.027,41.686 31.897,55.265 31.597,58.686C31.58,58.879 31.423,59.027 31.235,59.027C31.235,59.027 30.478,59.176 30.117,59.027C29.735,58.868 29.69,58.377 29.674,58.228C28.892,51.274 27.554,39.868 28.338,32.887L31.1,34.116L37.259,33.466Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M35.076,14.895C35.076,14.895 30.816,14.596 30.813,14.601L30.732,14.876C30.483,14.043 29.513,11.721 30.763,10.986C31.54,9.097 35.866,9.953 35.728,12.464C35.777,12.759 35.076,14.895 35.076,14.895Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M26.579,31.83L26.01,31.875C25.585,32.825 25.489,34.356 26.178,35.277C26.871,35.926 27.613,34.862 27.649,34.263C27.758,33.319 27.439,32.494 27.171,31.779L26.579,31.83Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M26.146,24.389C26.266,23.714 26.417,23.058 26.604,22.427C27.01,20.857 27.174,19.806 28.4,18.968C28.907,18.621 29.57,18.379 30.478,18.067C30.806,17.954 31.035,17.749 31.104,17.469C31.19,17.126 33.748,17.272 34.384,17.34C34.477,17.35 34.478,17.265 34.517,17.353C34.634,17.616 34.853,17.954 35.4,18.179C36.139,18.483 37.931,19.083 38.61,20.316C39.665,22.234 41.415,29.893 40.219,30.728C39.682,31.103 37.699,31.414 37.377,31.47C37.375,32.458 37.368,33.835 37.281,34.042C36.598,35.659 30.735,36.017 28.284,34.188C28.018,33.989 28.356,27.16 28.787,24.114C28.74,24.317 28.689,24.537 28.638,24.771C28.371,25.979 28.181,27.415 27.962,28.879C27.747,30.321 27.634,32.033 27.445,32.214C26.83,32.801 26.4,32.77 25.979,32.654C25.735,32.586 25.533,32.375 25.525,32.115C25.446,29.217 25.702,26.904 26.146,24.389Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M32.679,27.153H34.184C34.38,27.153 34.54,27.316 34.54,27.519V31.293C34.54,31.494 34.381,31.659 34.184,31.659H32.707C32.511,31.659 32.351,31.496 32.351,31.293V27.523C32.351,27.319 32.509,27.154 32.703,27.154"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M32.839,18.417C32.171,18.281 31.433,17.86 31.12,17.436C31.223,17.039 31.389,16.449 31.377,16.371C31.545,16.556 34.131,16.561 34.302,16.371C34.29,16.449 34.456,17.039 34.559,17.436C34.244,17.86 33.508,18.28 32.839,18.417Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M35.086,14.988V14.939C35.422,14.698 35.633,14.262 35.622,13.928C35.623,13.752 35.554,13.331 35.363,13.516C35.312,13.741 35.147,14.526 34.983,14.651C35.121,9.741 32.044,14.28 31.175,12.207C30.528,12.43 31.088,14.334 30.876,14.645C30.701,14.515 30.586,13.748 30.541,13.516C30.502,13.486 30.466,13.461 30.435,13.473C30.08,13.865 30.371,14.615 30.82,14.941C30.787,16.143 32.131,17.536 32.953,17.353C33.771,17.534 35.099,16.169 35.086,14.966"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M34.962,14.476C34.964,14.43 34.965,14.387 34.965,14.343C34.966,14.392 34.966,14.441 34.966,14.492C34.965,14.486 34.964,14.482 34.962,14.476Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M36.07,30.419L36.076,29.876C35.234,29.382 33.827,29.16 32.918,29.759C32.261,30.384 33.183,31.201 33.734,31.285C34.598,31.47 35.387,31.227 36.071,31.023"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M17.332,22.011C17.332,22.011 21.019,23.487 24.638,21.582L23.853,18.618L18.409,18.678L17.332,22.011Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M19.781,20.783L19.683,23.523H22.213L21.84,20.783H19.781Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M23.065,18.973C22.849,23.186 18.637,22.432 18.74,18.2C18.955,13.987 23.169,14.74 23.065,18.973Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M17.645,35.138C15.87,42.222 17.574,52.402 18.123,60.572L19.411,60.613C19.411,60.613 20.15,47.327 20.463,44.306C20.559,43.388 20.87,41.426 21.028,40.573C21.041,40.508 21.178,40.226 21.194,40.555C21.299,42.639 22.238,44.931 22.447,47.223C22.934,52.579 22.827,56.307 23.039,60.728C23.039,60.728 24.533,61.609 24.535,61.6C24.847,60.367 25.683,50.205 25.683,48.681C25.683,48.369 25.788,41.493 24.431,35.242L17.645,35.138Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M26.518,35.773C25.734,39.406 30.996,40.108 27.185,35.022L26.518,35.773Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M27.579,34.846C27.384,33.471 27.041,31.368 26.727,29.929C26.205,27.533 25.579,23.886 22.134,22.949C21.207,23.565 20.371,23.059 19.724,22.942C17.62,22.561 15.743,26.05 15.244,27.845C14.722,29.72 13.827,32.516 14.23,33.158C15.013,34.409 15.695,33.74 17.571,32.429C17.66,32.367 17.751,32.301 17.843,32.235C17.814,33.495 17.756,34.628 17.646,35.138C17.393,36.316 24.745,36.284 24.536,35.45C24.093,33.686 23.91,30.45 23.91,27.949C23.91,27.741 24.43,28.801 24.64,29.512C25.162,31.283 25.61,34.311 26.303,35.815C26.519,36.284 26.826,36.089 27.334,35.914C27.768,35.759 27.604,35.026 27.579,34.846ZM16.705,30.866C16.705,30.866 16.81,30.762 17.227,29.304C17.473,28.447 17.854,27.116 17.854,27.116C17.854,27.116 17.879,28.695 17.867,30.477C17.078,30.715 16.705,30.866 16.705,30.866Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M19.451,60.001L18.064,59.829C18.024,60.185 17.542,60.766 17.808,62.149C17.829,62.259 17.855,63.311 17.89,63.424C17.923,63.529 18.377,63.682 18.377,63.578C18.377,63.473 18.247,62.175 18.481,62.641C18.586,62.849 18.586,63.578 19.108,63.995C19.704,64.471 21.582,64.624 20.882,63.787C19.838,62.536 19.523,60.55 19.442,60.112"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M23.013,60.013C23.013,60.013 23.001,60.744 22.866,61.289C22.761,61.705 22.657,62.955 23.074,63.997H23.701C23.701,63.997 23.492,62.851 23.596,62.226C23.625,62.059 23.701,62.955 24.327,63.685C24.615,64.02 24.874,64.066 24.996,64.079C25.221,64.104 26.553,64.101 26.624,64.101C26.833,64.101 27.041,63.685 26.203,63.315C25.979,63.216 25.699,63.026 25.475,62.747C25.095,62.273 24.937,61.458 24.728,60.312L23.013,60.013Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M21.258,26.735L22.683,26.763C22.87,26.767 23.005,26.921 22.986,27.106L22.615,30.545C22.595,30.732 22.427,30.88 22.24,30.876L20.815,30.848C20.628,30.843 20.493,30.689 20.512,30.504L20.883,27.065C20.903,26.878 21.07,26.73 21.258,26.735Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M19.311,30.562L19.61,31.001C21.509,30.987 23.51,28.382 21.004,28.672C20.855,28.69 20.71,28.737 20.58,28.811C19.962,29.158 19.493,29.701 19.043,30.106"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M21.716,16.385C21.09,16.177 19.837,16.281 19.407,20.126C19.347,20.662 19.732,21.177 19.598,21.471C19.197,22.344 18.67,22.746 17.887,22.52C15.766,21.906 17.446,20.978 17.549,18.888C17.749,14.822 20.596,14.204 21.789,14.859C21.789,14.859 24.048,14.192 24.354,18.96C24.354,18.96 24.511,21.423 24.854,21.86C25.195,22.296 24.221,22.633 23.419,22.318C22.616,22.003 22.865,20.219 22.865,20.219C22.865,20.219 23.538,16.991 21.716,16.385Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M11.027,63.26C10.974,65.053 7.775,64.591 8.532,62.645C9.104,60.212 8.43,60.949 10.603,60.853C10.707,61.058 11.043,62.676 11.027,63.26Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M2.081,62.151C2.673,61.805 4.598,61.067 4.289,60.27L5.957,60.009C5.972,60.316 6.821,62.533 5.796,62.737C4.967,62.905 -0.269,64.336 2.081,62.151Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M11.748,35.166C11.748,35.166 11.934,37.275 11.967,37.676C12.271,41.434 11.255,57.667 10.983,60.09C10.964,60.256 10.874,60.768 10.587,60.878C9.998,61.103 9.087,60.878 9.087,60.878C8.923,60.878 8.787,60.745 8.78,60.576C8.657,57.857 7.426,42.134 7.24,40.681C6.516,43.386 6.387,56.965 6.086,60.387C6.069,60.579 5.912,60.727 5.724,60.727C5.724,60.727 4.967,60.877 4.606,60.727C4.224,60.568 4.179,60.077 4.163,59.928C3.381,52.974 2.043,41.568 2.827,34.587L5.589,35.816L11.748,35.166Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M9.565,16.596C9.565,16.596 5.305,16.297 5.302,16.302L5.221,16.576C4.972,15.744 4.002,13.422 5.252,12.687C6.029,10.797 10.354,11.653 10.217,14.165C10.266,14.46 9.565,16.596 9.565,16.596Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M1.067,33.531L0.499,33.576C0.074,34.526 -0.022,36.056 0.667,36.978C1.359,37.626 2.102,36.563 2.138,35.964C2.246,35.02 1.928,34.195 1.66,33.479L1.067,33.531Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M0.635,26.09C0.755,25.415 0.906,24.758 1.093,24.128C1.499,22.557 1.664,21.507 2.889,20.669C3.396,20.322 4.059,20.08 4.967,19.768C5.295,19.655 5.525,19.45 5.593,19.17C5.679,18.827 8.237,18.972 8.873,19.041C8.966,19.051 8.967,18.966 9.006,19.053C9.123,19.317 9.342,19.655 9.889,19.88C10.628,20.184 12.42,20.784 13.099,22.017C14.154,23.935 15.904,31.594 14.708,32.429C14.171,32.804 12.188,33.114 11.866,33.171C11.864,34.159 11.858,35.536 11.77,35.743C11.087,37.36 5.224,37.718 2.773,35.889C2.507,35.69 2.845,28.86 3.276,25.815C3.229,26.017 3.178,26.238 3.127,26.471C2.86,27.68 2.67,29.116 2.451,30.58C2.236,32.022 2.123,33.734 1.934,33.915C1.319,34.502 0.889,34.471 0.468,34.354C0.224,34.287 0.022,34.076 0.014,33.816C-0.065,30.918 0.191,28.605 0.635,26.09Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M7.168,28.853H8.673C8.869,28.853 9.029,29.017 9.029,29.219V32.994C9.029,33.195 8.87,33.36 8.673,33.36H7.196C7,33.36 6.84,33.196 6.84,32.994V29.224C6.84,29.02 6.998,28.854 7.192,28.854"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M7.328,20.118C6.66,19.981 5.922,19.56 5.609,19.137C5.712,18.74 5.878,18.15 5.866,18.071C6.034,18.257 8.62,18.261 8.791,18.071C8.779,18.15 8.945,18.74 9.048,19.137C8.733,19.56 7.997,19.98 7.328,20.118Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M9.575,16.689V16.639C9.911,16.399 10.122,15.963 10.111,15.629C10.112,15.452 10.043,15.032 9.852,15.217C9.801,15.442 9.636,16.227 9.472,16.352C9.61,11.442 6.533,15.981 5.664,13.908C5.017,14.131 5.577,16.035 5.365,16.346C5.19,16.216 5.075,15.449 5.03,15.217C4.991,15.187 4.955,15.162 4.924,15.174C4.569,15.566 4.86,16.316 5.309,16.642C5.276,17.844 6.62,19.237 7.442,19.054C8.26,19.235 9.588,17.869 9.575,16.667"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M9.451,16.177C9.453,16.131 9.454,16.088 9.454,16.044C9.455,16.092 9.455,16.142 9.455,16.192C9.454,16.187 9.453,16.182 9.451,16.177Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M10.559,32.12L10.565,31.577C9.722,31.082 8.316,30.861 7.407,31.46C6.75,32.085 7.672,32.901 8.223,32.986C9.087,33.171 9.876,32.927 10.56,32.723"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M55.688,22.256L55.423,25.003L54.883,25.446L54.343,25.779L55.099,27.441L59.308,27.552L58.769,25.779L58.877,24.892L58.547,24.744C58.283,24.624 58.097,24.372 58.058,24.078L57.818,22.255H55.688V22.256Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M59.084,20.331C58.861,24.812 54.505,24.01 54.612,19.508C54.834,15.027 59.191,15.828 59.084,20.331Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M53.48,37.526C51.645,45.061 53.407,55.89 53.975,64.58L55.307,64.624C55.307,64.624 56.071,50.492 56.395,47.278C56.493,46.301 56.814,44.215 56.979,43.307C56.992,43.238 57.133,42.938 57.15,43.288C57.258,45.505 58.23,47.943 58.445,50.381C58.95,56.078 58.838,60.044 59.057,64.746C59.057,64.746 60.602,65.684 60.604,65.674C60.927,64.362 61.792,53.552 61.792,51.932C61.792,51.6 62.213,44.677 60.496,37.636L53.48,37.526Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M62.286,38.032C61.272,41.845 66.666,42.894 63.018,37.273L62.286,38.032Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M49.949,35.42C50.759,36.75 51.464,36.038 53.403,34.644C53.496,34.578 53.589,34.508 53.685,34.438C53.655,35.777 53.594,36.984 53.481,37.526C53.22,38.779 60.821,38.745 60.605,37.858C60.147,35.981 59.957,32.539 59.957,29.879C59.957,29.657 60.318,30.774 60.497,31.541C60.952,33.484 61.284,36.313 62.001,37.914C62.224,38.412 62.541,38.205 63.066,38.019C63.515,37.854 63.334,37.076 63.32,36.882C63.218,35.479 62.98,33.515 62.655,31.983C62.156,29.626 61.78,26.131 58.876,24.83C58.828,24.809 58.773,24.846 58.774,24.9C58.802,25.894 57.776,27.329 57.258,27.329C56.286,27.329 54.667,25.888 54.443,24.725C52.132,25.417 51.445,28.112 50.997,29.767C50.458,31.763 49.533,34.736 49.949,35.42Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M55.344,63.96L53.911,63.791C53.87,64.17 53.372,64.789 53.647,66.259C53.668,66.377 53.695,67.495 53.732,67.616C53.766,67.728 54.235,67.891 54.235,67.78C54.235,67.668 54.101,66.287 54.343,66.782C54.451,67.004 54.451,67.78 54.991,68.223C55.607,68.729 57.549,68.892 56.826,68.001C55.746,66.672 55.424,64.563 55.339,64.097"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M59.041,64.032C59.041,64.032 59.018,64.763 58.877,65.341C58.769,65.785 58.661,67.115 59.093,68.223H59.74C59.74,68.223 59.525,67.004 59.632,66.339C59.661,66.162 59.74,67.115 60.388,67.89C60.686,68.247 60.954,68.296 61.08,68.31C61.312,68.337 62.689,68.334 62.763,68.334C62.979,68.334 63.194,67.89 62.328,67.497C62.096,67.392 61.806,67.19 61.575,66.893C61.182,66.389 61.002,65.535 60.786,64.316L59.041,64.032Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M57.216,28.587L58.689,28.617C58.882,28.621 59.023,28.785 59.002,28.982L58.619,32.641C58.598,32.839 58.425,32.996 58.231,32.992L56.758,32.962C56.565,32.958 56.425,32.793 56.445,32.596L56.828,28.938C56.849,28.74 57.021,28.582 57.216,28.587Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M55.202,32.658L55.511,33.125C57.528,33.11 59.655,30.189 56.733,30.679C55.982,31.033 55.442,31.694 54.925,32.172"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M59.865,25.423C59.712,25.304 59.587,25.218 59.417,25.115C59.219,24.995 59.08,24.93 58.862,24.836C58.845,24.828 58.805,24.836 58.793,24.859C58.609,24.812 58.464,24.728 58.311,24.583C57.991,24.277 57.786,23.734 57.894,23.18C57.952,22.881 58.064,22.757 58.126,22.68C59.513,20.963 58.6,18.232 58.6,18.232C58.6,18.232 57.82,19.918 54.88,21.073C54.88,21.073 55.002,21.858 55.434,22.412C55.465,22.453 55.789,22.753 55.801,23.224C55.812,23.686 55.813,24.154 55.505,24.862C55.13,25.726 54.177,25.935 53.454,25.638C52.914,25.416 52.699,24.862 52.674,24.316C52.674,24.316 54.145,24.404 53.798,22.718C53.539,21.45 53.231,18.681 54.449,17.079C54.467,17.057 54.484,17.035 54.501,17.013C54.513,16.996 54.527,16.979 54.541,16.964C54.566,16.934 54.592,16.904 54.618,16.875C54.643,16.849 54.667,16.822 54.692,16.795C55.074,16.398 55.577,16.098 56.235,15.952C56.235,15.952 58.743,15.597 59.175,17.107C59.175,17.107 59.867,17.463 59.954,18.795C60.041,20.127 59.824,20.614 59.78,21.636C59.729,22.878 61.324,23.567 60.806,24.316C60.381,24.842 61.039,25.065 59.865,25.423Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M81.2,19.705L80.934,22.452L80.394,22.895L79.855,23.228L80.61,24.89L84.82,25.001L84.28,23.228L84.388,22.341L84.059,22.192C83.795,22.073 83.609,21.821 83.57,21.527L83.329,19.704H81.2V19.705Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M84.595,17.78C84.372,22.261 80.017,21.459 80.123,16.958C80.346,12.476 84.702,13.277 84.595,17.78Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M78.991,34.975C77.156,42.51 78.918,53.339 79.485,62.029L80.817,62.074C80.817,62.074 81.582,47.941 81.905,44.727C82.004,43.75 82.325,41.664 82.489,40.756C82.502,40.687 82.644,40.387 82.661,40.737C82.769,42.954 83.74,45.392 83.956,47.83C84.46,53.527 84.349,57.493 84.568,62.195C84.568,62.195 86.113,63.133 86.115,63.123C86.438,61.811 87.302,51.001 87.302,49.381C87.302,49.049 87.723,42.126 86.007,35.085L78.991,34.975Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M87.797,35.481C86.783,39.294 92.177,40.343 88.528,34.722L87.797,35.481Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M76.632,31.645C78.2,34.222 75.781,34.622 78.992,34.975C78.731,36.228 86.332,36.194 86.116,35.307C85.659,33.43 85.469,29.988 85.469,27.328C85.469,27.106 85.829,28.223 86.008,28.99C86.464,30.933 86.795,33.762 87.512,35.362C87.735,35.861 88.053,35.654 88.577,35.468C89.026,35.303 88.845,34.525 88.831,34.331C88.729,32.928 88.491,30.964 88.166,29.433C87.667,27.075 87.292,23.58 84.387,22.279C84.34,22.258 84.285,22.295 84.286,22.349C84.314,23.343 83.287,24.778 82.769,24.778C81.798,24.778 80.178,23.337 79.954,22.174C77.643,22.866 77.482,24.778 77.482,27.393C76.942,29.389 76.215,30.962 76.632,31.645Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M80.855,61.409L79.423,61.24C79.382,61.619 78.883,62.237 79.158,63.708C79.18,63.826 79.207,64.944 79.244,65.064C79.277,65.176 79.747,65.339 79.747,65.229C79.747,65.117 79.613,63.736 79.855,64.231C79.963,64.453 79.963,65.229 80.502,65.672C81.119,66.178 83.06,66.341 82.337,65.45C81.258,64.12 80.935,62.011 80.851,61.546"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M84.552,61.481C84.552,61.481 84.53,62.212 84.388,62.791C84.281,63.234 84.173,64.564 84.604,65.672H85.252C85.252,65.672 85.036,64.453 85.144,63.788C85.173,63.611 85.252,64.564 85.9,65.339C86.198,65.696 86.465,65.745 86.591,65.759C86.824,65.786 88.201,65.783 88.274,65.783C88.49,65.783 88.706,65.339 87.839,64.946C87.607,64.841 87.318,64.639 87.087,64.342C86.694,63.838 86.514,62.984 86.298,61.765L84.552,61.481Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M82.727,26.036L84.201,26.066C84.394,26.07 84.534,26.234 84.514,26.431L84.131,30.089C84.11,30.288 83.936,30.445 83.743,30.441L82.27,30.411C82.076,30.406 81.936,30.242 81.957,30.045L82.34,26.387C82.36,26.188 82.533,26.031 82.727,26.036Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M80.714,30.107L81.023,30.574C83.04,30.559 85.166,27.638 82.244,28.128C81.493,28.482 80.954,29.143 80.437,29.621"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M85.376,22.872C85.224,22.753 85.099,22.667 84.928,22.564C84.731,22.444 84.591,22.379 84.373,22.285C84.356,22.277 84.316,22.285 84.304,22.308C84.121,22.261 83.975,22.177 83.823,22.032C83.502,21.726 83.297,21.183 83.405,20.629C83.463,20.33 83.576,20.205 83.637,20.129C85.024,18.412 84.111,15.681 84.111,15.681C84.111,15.681 83.332,17.367 80.392,18.522C80.392,18.522 80.513,19.307 80.945,19.861C80.977,19.902 81.3,20.202 81.312,20.673C81.323,21.135 81.324,21.603 81.016,22.311C80.642,23.176 79.689,23.384 78.966,23.087C78.426,22.865 78.21,22.311 78.185,21.765C78.185,21.765 79.656,21.853 79.31,20.167C79.051,18.899 78.742,16.129 79.961,14.528C79.978,14.506 79.995,14.484 80.013,14.462C80.024,14.445 80.038,14.428 80.052,14.413C80.077,14.383 80.103,14.353 80.129,14.324C80.154,14.298 80.179,14.271 80.204,14.245C80.586,13.847 81.089,13.547 81.746,13.401C81.746,13.401 84.255,13.047 84.686,14.556C84.686,14.556 85.378,14.912 85.466,16.244C85.552,17.576 85.335,18.063 85.292,19.085C85.24,20.327 85.205,21.572 86.503,21.838C86.505,21.836 86.55,22.514 85.376,22.872Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M72.766,63.756C72.71,65.582 69.349,65.112 70.145,63.129C70.746,60.651 70.038,61.402 72.32,61.304C72.43,61.513 72.784,63.16 72.766,63.756Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M63.366,62.626C63.988,62.274 66.011,61.522 65.686,60.71L67.438,60.445C67.454,60.757 68.346,63.015 67.269,63.224C66.398,63.395 60.896,64.852 63.366,62.626Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M73.524,35.138C73.524,35.138 73.719,37.286 73.754,37.694C74.073,41.523 73.006,58.058 72.719,60.526C72.7,60.696 72.606,61.217 72.303,61.329C71.685,61.559 70.728,61.329 70.728,61.329C70.555,61.329 70.413,61.194 70.405,61.022C70.276,58.252 68.982,42.235 68.786,40.755C68.025,43.511 67.89,57.343 67.574,60.829C67.556,61.025 67.391,61.175 67.193,61.175C67.193,61.175 66.398,61.328 66.019,61.175C65.617,61.014 65.57,60.514 65.553,60.362C64.731,53.278 63.326,41.66 64.15,34.548L67.052,35.8L73.524,35.138Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M71.23,16.221C71.23,16.221 66.753,15.917 66.751,15.921L66.666,16.201C66.404,15.354 65.384,12.988 66.698,12.24C67.514,10.314 72.06,11.186 71.915,13.745C71.966,14.045 71.23,16.221 71.23,16.221Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M62.301,33.472L61.703,33.518C61.257,34.485 61.156,36.044 61.88,36.983C62.608,37.644 63.388,36.561 63.426,35.95C63.54,34.989 63.205,34.148 62.924,33.419L62.301,33.472Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M61.846,25.892C61.972,25.204 62.13,24.535 62.327,23.893C62.754,22.294 62.927,21.223 64.214,20.37C64.747,20.016 65.444,19.77 66.398,19.452C66.743,19.337 66.984,19.128 67.057,18.843C67.146,18.494 69.835,18.642 70.502,18.712C70.6,18.722 70.601,18.635 70.643,18.724C70.766,18.993 70.995,19.337 71.57,19.566C72.347,19.876 74.23,20.487 74.943,21.743C76.052,23.697 77.892,31.499 76.634,32.349C76.07,32.731 73.986,33.048 73.648,33.105C73.646,34.111 73.639,35.514 73.547,35.725C72.154,36.647 67.717,36.881 64.092,36.34C62.58,36.34 63.211,35.725 63.211,33.863C63.211,34.546 62.113,34.429 61.671,34.311C61.414,34.242 61.202,34.027 61.194,33.762C61.111,30.81 61.38,28.454 61.846,25.892ZM73.729,30.607C74.099,30.466 74.261,30.533 74.443,30.466C74.47,29.607 73.627,26.073 73.524,25.762C73.524,25.777 73.663,28.105 73.729,30.607Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M68.711,28.708H70.293C70.498,28.708 70.666,28.874 70.666,29.08V32.925C70.666,33.131 70.5,33.298 70.293,33.298H68.74C68.534,33.298 68.367,33.132 68.367,32.925V29.085C68.367,28.877 68.532,28.709 68.737,28.709"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M68.879,19.809C68.177,19.67 67.401,19.241 67.072,18.81C67.18,18.406 67.355,17.805 67.342,17.724C67.52,17.914 70.237,17.918 70.416,17.724C70.403,17.805 70.578,18.406 70.686,18.81C70.355,19.241 69.581,19.669 68.879,19.809Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M71.24,16.316V16.266C71.593,16.02 71.815,15.576 71.803,15.237C71.804,15.057 71.732,14.629 71.531,14.817C71.478,15.046 71.305,15.846 71.132,15.973C71.277,10.971 68.044,15.595 67.13,13.483C66.451,13.711 67.039,15.65 66.816,15.966C66.632,15.834 66.512,15.053 66.465,14.817C66.423,14.786 66.385,14.76 66.353,14.773C65.98,15.172 66.285,15.936 66.758,16.268C66.723,17.492 68.135,18.912 68.999,18.726C69.859,18.909 71.254,17.519 71.24,16.293"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M71.11,15.795C71.112,15.747 71.113,15.704 71.113,15.659C71.114,15.708 71.114,15.759 71.114,15.811C71.113,15.805 71.112,15.8 71.11,15.795Z"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M72.275,32.034L72.28,31.481C71.395,30.978 69.917,30.752 68.962,31.362C68.271,31.999 69.24,32.831 69.82,32.917C70.728,33.105 71.556,32.857 72.276,32.649"
+      android:fillColor="#2D2D2F"/>
+  <path
+      android:pathData="M60.126,33.74L59.992,37.483H63.452L62.943,33.74H60.126Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M64.617,31.268C64.322,37.023 58.561,35.993 58.702,30.212C58.996,24.458 64.759,25.487 64.617,31.268Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M57.204,53.348C54.777,63.025 57.107,76.929 57.858,88.088L59.62,88.145C59.62,88.145 60.631,69.997 61.059,65.871C61.189,64.617 61.615,61.368 61.832,60.203C61.849,60.114 62.036,59.729 62.059,60.178C62.201,63.025 63.486,66.724 63.772,69.855C64.439,77.171 64.292,82.264 64.581,88.302C64.581,88.302 66.625,89.506 66.627,89.493C67.054,87.808 68.198,73.928 68.198,71.847C68.198,71.42 68.341,62.028 66.485,53.49L57.204,53.348Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M69.341,54.216C68.268,59.178 75.464,60.137 70.253,53.19L69.341,54.216Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M70.791,52.95C70.524,51.071 70.055,48.2 69.626,46.233C68.912,42.96 68.055,37.979 63.344,36.699C62.553,37.46 60.685,36.96 60.049,36.699C60.037,36.694 60.033,36.699 60.02,36.699C55.67,36.741 54.605,40.934 53.921,43.387C53.207,45.948 51.983,49.766 52.535,50.644C53.605,52.352 54.538,51.438 57.103,49.648C57.226,49.563 57.35,49.473 57.476,49.384C57.436,51.103 57.356,52.652 57.206,53.348C56.861,54.958 66.914,54.914 66.629,53.775C66.024,51.364 65.772,46.944 65.772,43.529C65.772,43.245 66.485,44.692 66.772,45.664C67.486,48.083 68.098,52.218 69.046,54.273C69.342,54.914 69.761,54.647 70.455,54.408C71.049,54.196 70.825,53.196 70.791,52.95ZM55.92,47.514C55.92,47.514 56.062,47.371 56.633,45.379C56.969,44.209 57.49,42.391 57.49,42.391C57.49,42.391 57.524,44.548 57.509,46.981C56.429,47.307 55.92,47.514 55.92,47.514Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M59.614,87.428L57.775,87.074C57.721,87.56 57.062,88.354 57.426,90.243C57.454,90.394 57.49,91.829 57.538,91.985C57.583,92.128 58.204,92.338 58.204,92.195C58.204,92.051 58.027,90.278 58.347,90.914C58.489,91.199 58.489,92.195 59.203,92.764C60.018,93.415 62.587,93.624 61.63,92.48C60.202,90.772 59.784,87.99 59.673,87.393"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M57.897,23.847C57.897,23.847 58.523,22.451 59.651,22.778C59.651,22.778 60.063,20.587 62.858,21.091C65.654,21.594 65.606,23.503 65.606,23.503C65.606,23.503 68.589,23.507 67.798,27.015C67.798,27.015 68.505,28.603 67.377,29.411C67.377,29.411 67.772,31.156 66.029,31.354C66.029,31.354 65.892,31.866 65.458,31.778C65.458,31.778 64.688,32.76 64.409,32.096C64.242,31.699 64.279,30.914 64.336,30.347C64.386,29.848 64.237,29.351 63.919,28.963C63.53,28.49 62.948,27.951 62.281,27.906C61.073,27.823 59.41,28.667 59.182,29.541C59.01,30.194 59.496,32.297 58.459,32.303C57.798,32.307 57.48,31.342 57.48,31.342C57.48,31.342 55.558,31.016 56.098,29.498C56.098,29.498 55.128,28.389 55.938,27.07C55.938,27.072 55.011,23.893 57.897,23.847Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M64.554,87.379C64.554,87.379 64.53,88.323 64.344,89.066C64.202,89.635 64.059,91.343 64.63,92.766H65.487C65.487,92.766 65.201,91.201 65.344,90.347C65.382,90.119 65.487,91.343 66.343,92.339C66.737,92.797 67.091,92.86 67.258,92.879C67.565,92.913 69.387,92.908 69.484,92.908C69.77,92.908 70.055,92.339 68.909,91.834C68.602,91.699 68.219,91.44 67.914,91.059C67.394,90.411 67.181,89.314 66.896,87.748L64.554,87.379Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M62.146,41.87L64.095,41.908C64.351,41.914 64.536,42.125 64.509,42.378L64.002,47.075C63.975,47.33 63.745,47.532 63.489,47.526L61.541,47.488C61.285,47.482 61.099,47.272 61.127,47.018L61.633,42.321C61.661,42.066 61.889,41.864 62.146,41.87Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M59.483,47.098L59.891,47.697C62.558,47.679 65.372,43.928 61.508,44.556C60.514,45.012 59.8,45.86 59.116,46.473"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M12.681,33.656L12.322,37.289L11.592,37.875L10.862,38.315L11.884,40.514L17.579,40.66L16.849,38.315L16.995,37.143L16.55,36.946C16.192,36.788 15.941,36.455 15.888,36.065L15.563,33.654H12.681V33.656Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M17.276,31.11C16.973,37.037 11.081,35.976 11.225,30.022C11.526,24.095 17.42,25.154 17.276,31.11Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M9.694,53.851C7.211,63.818 9.594,78.139 10.363,89.633L12.165,89.692C12.165,89.692 13.198,71 13.637,66.749C13.769,65.458 14.205,62.698 14.427,61.498C14.444,61.407 14.635,61.01 14.659,61.473C14.805,64.404 16.119,67.629 16.411,70.853C17.093,78.388 16.943,83.634 17.239,89.853C17.239,89.853 19.329,91.093 19.332,91.08C19.769,89.344 20.938,75.048 20.938,72.905C20.938,72.466 21.508,63.309 19.186,53.998L9.694,53.851Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M21.607,54.521C20.236,59.564 27.533,60.951 22.597,53.517L21.607,54.521Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M4.917,51.067C6.012,52.825 6.965,51.884 9.59,50.041C9.715,49.953 9.841,49.86 9.971,49.768C9.93,51.539 9.848,53.135 9.695,53.851C9.341,55.509 19.625,55.464 19.333,54.291C18.714,51.808 18.457,47.256 18.457,43.738C18.457,43.445 18.945,44.922 19.187,45.937C19.803,48.506 20.252,52.248 21.221,54.364C21.524,55.024 21.953,54.75 22.663,54.504C23.27,54.285 23.025,53.256 23.006,53C22.869,51.144 22.546,48.547 22.106,46.521C21.432,43.404 20.924,38.781 16.994,37.06C16.93,37.033 16.855,37.081 16.856,37.153C16.894,38.467 15.506,40.366 14.805,40.366C13.49,40.366 11.3,38.46 10.996,36.921C7.869,37.837 6.941,41.402 6.335,43.59C5.604,46.23 4.353,50.162 4.917,51.067ZM8.481,47.628C8.584,47.375 8.773,46.825 9.111,45.644L9.804,43.209C9.835,43.1 9.994,43.121 9.996,43.234C10.005,44.078 10.018,45.623 10.006,47.294C9.318,47.502 8.855,47.663 8.605,47.756C8.525,47.786 8.449,47.707 8.481,47.628Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M12.216,88.813L10.278,88.59C10.222,89.091 9.548,89.909 9.92,91.854C9.949,92.009 9.986,93.488 10.035,93.648C10.081,93.796 10.716,94.011 10.716,93.865C10.716,93.717 10.535,91.891 10.862,92.546C11.008,92.839 11.008,93.865 11.738,94.451C12.572,95.121 15.199,95.336 14.221,94.158C12.76,92.399 12.324,89.61 12.21,88.994"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M17.217,88.908C17.217,88.908 17.187,89.875 16.995,90.64C16.849,91.226 16.703,92.985 17.287,94.451H18.164C18.164,94.451 17.872,92.839 18.018,91.959C18.057,91.725 18.164,92.985 19.04,94.011C19.443,94.483 19.805,94.548 19.976,94.567C20.29,94.602 22.153,94.598 22.253,94.598C22.545,94.598 22.837,94.011 21.664,93.491C21.35,93.352 20.959,93.085 20.646,92.692C20.115,92.025 19.871,90.897 19.579,89.284L17.217,88.908Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M14.748,42.029L16.741,42.069C17.003,42.075 17.192,42.291 17.165,42.552L16.646,47.391C16.618,47.653 16.383,47.861 16.122,47.855L14.129,47.816C13.867,47.81 13.677,47.593 13.705,47.332L14.224,42.494C14.251,42.231 14.485,42.023 14.748,42.029Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M12.024,47.414L12.442,48.031C15.171,48.012 18.048,44.148 14.095,44.796C13.079,45.265 12.348,46.139 11.649,46.771"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M18.332,37.845C18.126,37.688 17.956,37.573 17.726,37.437C17.458,37.279 17.27,37.192 16.975,37.068C16.952,37.057 16.898,37.068 16.882,37.098C16.633,37.037 16.436,36.925 16.23,36.734C15.797,36.329 15.519,35.611 15.665,34.878C15.744,34.482 15.896,34.318 15.979,34.217C17.856,31.947 16.62,28.334 16.62,28.334C16.62,28.334 15.566,30.564 11.588,32.092C11.588,32.092 11.753,33.129 12.337,33.862C12.379,33.916 12.818,34.314 12.833,34.937C12.848,35.548 12.85,36.166 12.433,37.103C11.927,38.246 10.637,38.522 9.659,38.129C8.929,37.836 8.636,37.103 8.603,36.38C8.603,36.38 10.593,36.498 10.125,34.267C9.774,32.59 9.356,28.927 11.005,26.809C11.029,26.78 11.052,26.751 11.075,26.721C11.091,26.699 11.11,26.677 11.129,26.657C11.163,26.617 11.198,26.578 11.233,26.54C11.267,26.504 11.3,26.469 11.334,26.434C11.851,25.908 12.531,25.512 13.421,25.319C13.421,25.319 16.815,24.85 17.399,26.846C17.399,26.846 18.335,27.316 18.453,29.078C18.57,30.84 18.276,31.485 18.218,32.836C18.148,34.479 18.101,36.125 19.856,36.477C19.859,36.474 19.921,37.371 18.332,37.845Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M80.647,93.278C80.572,95.731 76.057,95.099 77.126,92.436C77.933,89.107 76.982,90.115 80.048,89.984C80.195,90.265 80.671,92.478 80.647,93.278Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M68.02,91.76C68.855,91.287 71.572,90.277 71.135,89.186L73.49,88.83C73.511,89.249 74.71,92.282 73.263,92.563C72.092,92.793 64.702,94.75 68.02,91.76Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M81.665,54.836C81.665,54.836 81.927,57.721 81.974,58.27C82.403,63.413 80.969,85.624 80.584,88.939C80.558,89.168 80.431,89.867 80.025,90.018C79.195,90.326 77.909,90.018 77.909,90.018C77.677,90.018 77.485,89.836 77.475,89.605C77.302,85.885 75.563,64.37 75.301,62.382C74.279,66.084 74.097,84.664 73.672,89.346C73.649,89.61 73.426,89.812 73.161,89.812C73.161,89.812 72.093,90.017 71.583,89.812C71.044,89.594 70.981,88.922 70.958,88.719C69.854,79.204 67.966,63.596 69.073,54.044L72.971,55.725L81.665,54.836Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M78.583,29.425C78.583,29.425 72.57,29.016 72.566,29.022L72.452,29.399C72.1,28.26 70.731,25.082 72.495,24.077C73.592,21.491 79.698,22.662 79.503,26.099C79.573,26.503 78.583,29.425 78.583,29.425Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M66.589,52.598L65.786,52.659C65.187,53.959 65.051,56.053 66.024,57.314C67.001,58.201 68.049,56.747 68.1,55.927C68.253,54.635 67.804,53.506 67.425,52.527L66.589,52.598Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M65.979,42.415C66.147,41.492 66.36,40.594 66.624,39.73C67.198,37.582 67.43,36.144 69.159,34.998C69.876,34.523 70.811,34.192 72.093,33.765C72.556,33.611 72.88,33.33 72.977,32.946C73.098,32.478 76.709,32.676 77.606,32.771C77.737,32.784 77.739,32.667 77.794,32.787C77.96,33.148 78.268,33.611 79.04,33.919C80.084,34.335 82.613,35.155 83.572,36.842C85.062,39.467 87.532,49.947 85.843,51.089C85.085,51.602 82.286,52.028 81.832,52.105C81.829,53.456 81.819,55.341 81.696,55.625C79.825,56.863 73.865,57.177 68.995,56.451C66.964,56.451 67.811,55.625 67.811,53.124C67.811,54.04 66.337,53.883 65.743,53.724C65.398,53.632 65.113,53.344 65.102,52.988C64.991,49.022 65.352,45.857 65.979,42.415ZM81.94,48.75C82.437,48.56 82.655,48.649 82.9,48.56C82.936,47.406 81.804,42.659 81.665,42.241C81.665,42.261 81.852,45.388 81.94,48.75Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M75.2,46.197H77.325C77.601,46.197 77.827,46.421 77.827,46.698V51.863C77.827,52.139 77.603,52.364 77.325,52.364H75.239C74.963,52.364 74.737,52.14 74.737,51.863V46.705C74.737,46.426 74.96,46.199 75.234,46.199"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M75.426,34.244C74.482,34.058 73.44,33.481 72.999,32.902C73.144,32.359 73.379,31.552 73.362,31.444C73.599,31.698 77.249,31.704 77.49,31.444C77.473,31.552 77.708,32.359 77.853,32.902C77.408,33.481 76.369,34.056 75.426,34.244Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M78.597,29.553V29.485C79.071,29.155 79.369,28.559 79.354,28.103C79.355,27.861 79.258,27.286 78.988,27.538C78.917,27.847 78.684,28.921 78.452,29.092C78.646,22.372 74.303,28.583 73.076,25.748C72.164,26.053 72.954,28.657 72.655,29.083C72.408,28.906 72.245,27.856 72.182,27.538C72.127,27.497 72.076,27.463 72.032,27.48C71.531,28.016 71.941,29.043 72.576,29.488C72.53,31.132 74.425,33.039 75.586,32.789C76.741,33.036 78.616,31.168 78.597,29.522"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M78.423,28.852C78.424,28.788 78.426,28.73 78.426,28.67C78.427,28.736 78.427,28.804 78.427,28.873C78.426,28.866 78.424,28.86 78.423,28.852Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M79.987,50.667L79.994,49.924C78.806,49.247 76.82,48.944 75.537,49.764C74.609,50.619 75.911,51.736 76.689,51.852C77.909,52.105 79.022,51.772 79.988,51.493"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M31.907,91.791C31.835,94.192 27.494,93.574 28.522,90.968C29.298,87.711 28.383,88.698 31.331,88.569C31.473,88.844 31.93,91.009 31.907,91.791Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M19.767,90.307C20.569,89.844 23.182,88.856 22.762,87.788L25.026,87.44C25.046,87.85 26.198,90.818 24.808,91.092C23.682,91.317 16.576,93.232 19.767,90.307Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M32.886,54.182C32.886,54.182 33.138,57.005 33.183,57.542C33.595,62.574 32.216,84.304 31.847,87.547C31.821,87.771 31.7,88.455 31.309,88.603C30.511,88.904 29.274,88.603 29.274,88.603C29.052,88.603 28.868,88.425 28.857,88.199C28.691,84.559 27.019,63.51 26.767,61.565C25.784,65.187 25.609,83.365 25.201,87.945C25.179,88.203 24.965,88.401 24.71,88.401C24.71,88.401 23.682,88.601 23.193,88.401C22.674,88.188 22.614,87.531 22.591,87.332C21.53,78.022 19.715,62.753 20.779,53.408L24.527,55.053L32.886,54.182Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M29.922,29.321C29.922,29.321 24.141,28.922 24.138,28.928L24.028,29.296C23.689,28.181 22.373,25.072 24.069,24.089C25.123,21.559 30.994,22.705 30.807,26.067C30.874,26.463 29.922,29.321 29.922,29.321Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M18.39,51.993L17.618,52.053C17.042,53.324 16.912,55.373 17.847,56.607C18.787,57.475 19.794,56.052 19.843,55.25C19.99,53.986 19.558,52.881 19.195,51.924L18.39,51.993Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M17.804,42.031C17.966,41.128 18.171,40.249 18.424,39.404C18.977,37.303 19.199,35.896 20.862,34.774C21.551,34.31 22.45,33.985 23.682,33.568C24.128,33.417 24.439,33.143 24.533,32.767C24.649,32.309 28.121,32.503 28.983,32.595C29.109,32.609 29.111,32.494 29.164,32.612C29.323,32.965 29.62,33.417 30.362,33.718C31.365,34.126 33.797,34.928 34.719,36.579C36.151,39.147 38.526,49.4 36.902,50.517C36.174,51.019 33.482,51.435 33.046,51.511C33.043,52.833 33.034,54.677 32.915,54.954C31.989,57.118 24.031,57.598 20.705,55.149C20.344,54.884 20.802,45.74 21.387,41.663C21.323,41.935 21.255,42.23 21.185,42.542C20.823,44.16 20.565,46.083 20.268,48.043C19.976,49.973 19.823,52.265 19.566,52.507C18.732,53.293 18.148,53.251 17.577,53.095C17.246,53.005 16.971,52.723 16.961,52.375C16.854,48.495 17.201,45.398 17.804,42.031ZM33.15,48.228C33.628,48.043 33.837,48.13 34.073,48.043C34.107,46.913 33.019,42.269 32.886,41.861C32.886,41.88 33.065,44.94 33.15,48.228Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M26.67,45.731H28.713C28.978,45.731 29.195,45.95 29.195,46.221V51.274C29.195,51.544 28.98,51.764 28.713,51.764H26.707C26.441,51.764 26.225,51.545 26.225,51.274V46.227C26.225,45.954 26.438,45.732 26.703,45.732"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M26.887,34.036C25.98,33.854 24.978,33.29 24.553,32.723C24.693,32.192 24.918,31.402 24.902,31.297C25.131,31.545 28.64,31.552 28.871,31.297C28.855,31.402 29.081,32.192 29.22,32.723C28.793,33.29 27.794,33.853 26.887,34.036Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M29.936,29.446V29.38C30.392,29.057 30.678,28.474 30.664,28.028C30.665,27.791 30.572,27.228 30.312,27.476C30.244,27.777 30.019,28.828 29.797,28.996C29.984,22.421 25.808,28.498 24.628,25.724C23.751,26.022 24.511,28.57 24.223,28.986C23.985,28.813 23.83,27.786 23.769,27.476C23.715,27.435 23.666,27.402 23.625,27.418C23.142,27.943 23.537,28.947 24.147,29.383C24.103,30.992 25.926,32.857 27.042,32.613C28.152,32.854 29.954,31.027 29.936,29.416"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M29.768,28.761C29.77,28.699 29.771,28.642 29.771,28.583C29.773,28.648 29.773,28.714 29.773,28.782C29.771,28.775 29.77,28.769 29.768,28.761Z"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M31.272,50.104L31.279,49.377C30.136,48.715 28.227,48.418 26.994,49.22C26.101,50.057 27.353,51.15 28.101,51.263C29.274,51.51 30.344,51.185 31.273,50.912"
+      android:fillColor="#3F3F43"/>
+  <path
+      android:pathData="M34.084,133.107C34.229,137.727 42.715,136.535 40.71,131.509C39.199,125.233 40.971,127.122 35.217,126.889C34.956,127.441 34.055,131.596 34.084,133.107Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M57.855,130.259C56.286,129.358 51.172,127.47 51.985,125.407L47.568,124.739C47.539,125.523 45.272,131.247 48.004,131.77C50.183,132.206 64.103,135.896 57.855,130.259Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M32.166,60.643C32.166,60.643 31.672,66.077 31.585,67.123C30.771,76.827 33.474,118.695 34.2,124.942C34.258,125.378 34.491,126.686 35.246,126.976C36.816,127.557 39.228,126.976 39.228,126.976C39.664,126.976 40.012,126.628 40.041,126.192C40.39,119.189 43.674,78.629 44.168,74.88C46.086,81.854 46.435,116.894 47.219,125.727C47.277,126.221 47.684,126.598 48.178,126.598C48.178,126.598 50.183,126.976 51.142,126.598C52.159,126.192 52.276,124.913 52.305,124.536C54.397,106.609 57.942,77.176 55.85,59.162L48.527,62.329L32.166,60.643Z"
+      android:fillColor="#8C8C98"/>
+  <path
+      android:pathData="M37.978,12.731C37.978,12.731 49.312,11.947 49.312,11.976L49.515,12.673C50.183,10.523 52.741,4.538 49.428,2.649C47.364,-2.232 35.886,-0.024 36.234,6.456C36.118,7.24 37.978,12.731 37.978,12.731Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M60.558,56.43L62.069,56.547C63.203,58.987 63.464,62.939 61.633,65.321C59.803,67.007 57.826,64.246 57.739,62.706C57.449,60.266 58.291,58.145 59.018,56.285L60.558,56.43Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M61.691,37.225C61.371,35.482 60.965,33.797 60.471,32.169C59.395,28.131 58.959,25.4 55.705,23.25C54.368,22.349 52.595,21.739 50.183,20.925C49.311,20.635 48.701,20.111 48.527,19.385C48.294,18.514 41.494,18.862 39.809,19.066C39.547,19.095 39.547,18.862 39.46,19.095C39.14,19.763 38.559,20.635 37.106,21.216C35.13,22 30.393,23.54 28.562,26.736C25.773,31.676 21.123,51.433 24.291,53.583C25.715,54.542 30.974,55.355 31.846,55.501C31.846,58.057 31.875,61.602 32.108,62.125C33.91,66.28 49.486,67.21 56.024,62.503C56.722,61.98 55.821,44.373 54.688,36.528C54.804,37.051 54.949,37.632 55.094,38.213C55.792,41.322 56.315,45.041 56.896,48.818C57.477,52.537 57.768,56.953 58.262,57.418C59.889,58.929 61.052,58.842 62.156,58.551C62.795,58.377 63.347,57.825 63.377,57.157C63.551,49.69 62.883,43.704 61.691,37.225ZM31.672,49.167C30.742,48.818 30.335,48.992 29.87,48.818C29.812,46.639 31.933,37.69 32.195,36.905C32.166,36.934 31.817,42.833 31.672,49.167Z"
+      android:fillColor="#C66A61"/>
+  <path
+      android:pathData="M43.936,21.825C45.708,21.477 47.684,20.402 48.498,19.298C48.237,18.281 47.772,16.741 47.801,16.537C47.365,17.031 40.478,17.031 40.042,16.537C40.071,16.741 39.635,18.252 39.344,19.298C40.187,20.373 42.134,21.477 43.936,21.825Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M37.95,12.964V12.848C37.049,12.238 36.496,11.104 36.526,10.233C36.526,9.768 36.7,8.693 37.223,9.158C37.368,9.739 37.804,11.773 38.24,12.092C37.862,-0.576 46.057,11.134 48.353,5.787C50.068,6.368 48.585,11.279 49.138,12.063C49.603,11.744 49.922,9.739 50.039,9.158C50.155,9.071 50.242,9.012 50.329,9.042C51.288,10.059 50.504,11.976 49.312,12.819C49.399,15.928 45.825,19.501 43.645,19.037C41.466,19.501 37.95,15.986 37.979,12.877"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M57.325,28.512C55.357,30.293 48.211,35.087 41.847,35.82C41.065,35.899 40.487,36.842 40.487,37.968L40.834,71.577C40.892,76.737 42.772,81.531 45.839,84.203C50.786,88.525 57.064,93.11 58.337,94.053C58.511,94.184 58.713,94.184 58.887,94.053C60.131,93.083 64.615,88.421 69.476,84.02C72.484,81.295 74.278,76.502 74.22,71.315L73.873,37.706C73.873,36.58 73.266,35.663 72.484,35.584C66.091,34.956 60.565,30.267 58.569,28.512C58.366,28.354 58.164,28.25 57.932,28.25C57.73,28.25 57.527,28.328 57.325,28.512Z"
+      android:fillColor="#9BBACE"
+      android:fillType="evenOdd"/>
+  <path
+      android:pathData="M45.505,38.276C44.895,38.355 44.43,39.172 44.459,40.146L44.749,69.207C44.807,73.659 46.29,77.796 48.673,80.114C52.538,83.855 57.449,87.807 58.437,88.65C58.582,88.756 58.727,88.756 58.873,88.65C59.861,87.807 63.348,83.776 67.126,79.982C69.48,77.638 70.875,73.475 70.816,69.022L70.526,39.962C70.526,38.987 70.032,38.197 69.451,38.118C64.452,37.565 60.122,33.507 58.553,32.005C58.408,31.847 58.233,31.795 58.059,31.795C57.885,31.795 57.71,31.874 57.565,32.032C56.083,33.507 50.503,37.644 45.505,38.276Z"
+      android:fillColor="#ffffff"/>
+  <path
+      android:pathData="M58.531,90.228V30.603L42.84,37.386V70.591L46.863,83.087L58.531,90.228Z"
+      android:fillColor="#9BBACE"/>
+  <path
+      android:pathData="M35.334,52.77V51.375C37.571,50.097 41.32,49.515 43.732,51.084C45.476,52.682 43.035,54.804 41.553,55.007C39.257,55.472 37.164,54.862 35.334,54.339"
+      android:fillColor="#F6B893"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_vaccine_dose.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccine_dose.xml
new file mode 100644
index 0000000000000000000000000000000000000000..da09ff9c58e36c80eef24d459e2950c8ab01c9d5
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable-night/ic_vaccine_dose.xml
@@ -0,0 +1,21 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="63dp"
+    android:height="135dp"
+    android:viewportWidth="63"
+    android:viewportHeight="135">
+  <path
+      android:pathData="M61.964,55.967H19.33H6.641H0.059C0.059,56.264 0,56.502 0,56.502V72.977V80.411V122.817C0,129.062 5.04,134.177 11.266,134.177H12.037C12.096,134.177 12.096,134.237 12.156,134.237H50.639C56.865,134.237 62.024,129.122 62.024,122.817V80.411V72.917V56.442C61.964,56.502 61.964,56.323 61.964,55.967Z"
+      android:fillColor="#434445"/>
+  <path
+      android:pathData="M57.339,46.391C53.188,42.823 47.318,36.34 46.429,32.89V16.534H23.659H15.832L15.654,18.319V31.998C15.654,35.031 9.132,42.466 4.625,46.272C0.889,49.424 0.178,54.301 0,55.907H6.582H19.271H61.905C61.786,54.42 61.075,49.543 57.339,46.391Z"
+      android:fillColor="#6A6A6A"/>
+  <path
+      android:pathData="M46.429,0H19.686H15.535C13.223,0 11.385,1.844 11.385,4.163V16.177C11.385,18.497 13.223,20.4 15.535,20.4H20.398H46.429C48.741,20.4 50.579,18.497 50.579,16.177V4.163C50.579,1.903 48.741,0 46.429,0Z"
+      android:fillColor="#8C8C98"/>
+  <path
+      android:pathData="M56.331,65.007V113.361H61.964V80.411V72.917V65.007H56.331Z"
+      android:fillColor="#9BBACE"/>
+  <path
+      android:pathData="M0,65.007V72.917V80.411V113.361H6.641H53.307V65.007H6.641H0Z"
+      android:fillColor="#9BBACE"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_completely.xml b/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_completely.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1f0bb6bf40eb2506542cdf4095e7b5d6cb12e2dd
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_completely.xml
@@ -0,0 +1,365 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="90dp"
+    android:height="137dp"
+    android:viewportWidth="90"
+    android:viewportHeight="137">
+  <group>
+    <clip-path
+        android:pathData="M0,12h90v86h-90z"/>
+    <path
+        android:pathData="M36.539,64.56C36.485,66.353 33.287,65.891 34.044,63.945C34.616,61.512 33.942,62.249 36.114,62.153C36.218,62.358 36.555,63.975 36.539,64.56Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M27.592,63.45C28.184,63.104 30.109,62.366 29.799,61.569L31.467,61.309C31.483,61.615 32.331,63.832 31.307,64.036C30.478,64.204 25.242,65.635 27.592,63.45Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M37.259,36.466C37.259,36.466 37.444,38.574 37.477,38.975C37.781,42.734 36.765,58.966 36.493,61.389C36.474,61.556 36.385,62.067 36.097,62.177C35.508,62.402 34.597,62.177 34.597,62.177C34.433,62.177 34.298,62.044 34.29,61.875C34.168,59.156 32.936,43.433 32.75,41.98C32.026,44.686 31.897,58.264 31.596,61.686C31.58,61.879 31.422,62.026 31.234,62.026C31.234,62.026 30.477,62.176 30.116,62.026C29.735,61.867 29.69,61.376 29.673,61.228C28.891,54.274 27.554,42.868 28.338,35.887L31.1,37.116L37.259,36.466Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M35.076,17.895C35.076,17.895 30.816,17.596 30.814,17.601L30.733,17.875C30.483,17.043 29.513,14.721 30.764,13.986C31.54,12.096 35.866,12.952 35.728,15.464C35.777,15.759 35.076,17.895 35.076,17.895Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M26.578,34.83L26.01,34.875C25.585,35.825 25.489,37.355 26.178,38.277C26.87,38.925 27.613,37.862 27.649,37.263C27.757,36.319 27.439,35.493 27.171,34.778L26.578,34.83Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M26.147,27.389C26.266,26.714 26.417,26.057 26.604,25.427C27.011,23.856 27.175,22.806 28.4,21.968C28.908,21.621 29.571,21.378 30.478,21.066C30.807,20.954 31.036,20.749 31.105,20.468C31.191,20.126 33.749,20.271 34.384,20.34C34.477,20.35 34.478,20.265 34.518,20.352C34.635,20.616 34.854,20.954 35.4,21.179C36.14,21.483 37.931,22.083 38.611,23.316C39.666,25.234 41.416,32.893 40.22,33.728C39.682,34.103 37.7,34.413 37.378,34.47C37.376,35.458 37.369,36.835 37.282,37.042C36.599,38.659 30.736,39.017 28.284,37.188C28.018,36.989 28.357,30.159 28.788,27.114C28.74,27.316 28.69,27.537 28.639,27.77C28.372,28.979 28.181,30.415 27.963,31.879C27.747,33.321 27.635,35.033 27.445,35.214C26.831,35.801 26.401,35.77 25.98,35.653C25.736,35.586 25.534,35.375 25.526,35.115C25.447,32.217 25.703,29.904 26.147,27.389Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M32.68,30.152H34.185C34.381,30.152 34.54,30.316 34.54,30.518V34.293C34.54,34.494 34.382,34.659 34.185,34.659H32.707C32.511,34.659 32.352,34.495 32.352,34.293V30.523C32.352,30.319 32.509,30.153 32.704,30.153"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M32.839,21.418C32.17,21.281 31.432,20.86 31.119,20.437C31.222,20.04 31.388,19.45 31.376,19.371C31.545,19.557 34.13,19.561 34.301,19.371C34.289,19.45 34.455,20.04 34.558,20.437C34.243,20.86 33.507,21.28 32.839,21.418Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M35.087,17.988V17.938C35.423,17.697 35.634,17.261 35.623,16.928C35.624,16.751 35.555,16.331 35.364,16.516C35.313,16.741 35.148,17.526 34.984,17.651C35.122,12.74 32.045,17.279 31.176,15.207C30.529,15.43 31.089,17.333 30.877,17.644C30.702,17.515 30.587,16.748 30.542,16.516C30.503,16.485 30.467,16.461 30.436,16.473C30.081,16.865 30.372,17.615 30.821,17.941C30.788,19.142 32.132,20.536 32.954,20.353C33.772,20.533 35.1,19.168 35.087,17.965"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M34.963,17.476C34.964,17.43 34.965,17.387 34.965,17.343C34.966,17.391 34.966,17.441 34.966,17.492C34.965,17.486 34.964,17.482 34.963,17.476Z"
+        android:fillColor="#E4B489"/>
+    <path
+        android:pathData="M36.071,33.419L36.077,32.876C35.234,32.381 33.828,32.159 32.919,32.759C32.262,33.384 33.183,34.2 33.735,34.285C34.599,34.469 35.388,34.226 36.072,34.022"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M17.332,25.01C17.332,25.01 21.019,26.487 24.638,24.581L23.853,21.617L18.409,21.678L17.332,25.01Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M19.78,23.782L19.682,26.522H22.212L21.839,23.782H19.78Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M23.065,21.973C22.849,26.186 18.637,25.432 18.74,21.2C18.955,16.987 23.169,17.74 23.065,21.973Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M17.645,38.138C15.87,45.222 17.574,55.402 18.123,63.572L19.411,63.613C19.411,63.613 20.15,50.327 20.463,47.306C20.558,46.388 20.869,44.426 21.028,43.573C21.041,43.508 21.177,43.226 21.194,43.555C21.298,45.639 22.238,47.931 22.447,50.223C22.934,55.579 22.827,59.307 23.039,63.728C23.039,63.728 24.532,64.609 24.535,64.6C24.847,63.366 25.683,53.204 25.683,51.681C25.683,51.369 25.787,44.493 24.43,38.242L17.645,38.138Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M26.518,38.774C25.735,42.406 30.996,43.109 27.186,38.022L26.518,38.774Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M27.579,37.846C27.384,36.471 27.041,34.368 26.727,32.928C26.205,30.532 25.579,26.886 22.134,25.948C21.207,26.565 20.371,26.059 19.724,25.942C17.62,25.561 15.743,29.05 15.244,30.845C14.722,32.72 13.827,35.515 14.23,36.158C15.013,37.408 15.695,36.739 17.571,35.429C17.66,35.366 17.751,35.301 17.843,35.235C17.814,36.495 17.756,37.628 17.646,38.138C17.393,39.316 24.745,39.284 24.536,38.45C24.093,36.685 23.91,33.449 23.91,30.949C23.91,30.741 24.43,31.8 24.64,32.512C25.162,34.283 25.61,37.31 26.303,38.815C26.519,39.284 26.826,39.089 27.334,38.914C27.768,38.758 27.604,38.026 27.579,37.846ZM16.705,33.866C16.705,33.866 16.81,33.762 17.227,32.303C17.473,31.447 17.854,30.115 17.854,30.115C17.854,30.115 17.879,31.695 17.867,33.476C17.078,33.715 16.705,33.866 16.705,33.866Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M19.451,63.001L18.064,62.829C18.024,63.185 17.542,63.767 17.808,65.149C17.829,65.26 17.855,66.311 17.891,66.424C17.923,66.53 18.377,66.683 18.377,66.579C18.377,66.473 18.248,65.175 18.482,65.641C18.586,65.849 18.586,66.579 19.108,66.995C19.704,67.471 21.582,67.624 20.883,66.787C19.839,65.537 19.523,63.55 19.442,63.112"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M23.012,63.014C23.012,63.014 23.001,63.744 22.865,64.289C22.76,64.706 22.656,65.956 23.074,66.998H23.7C23.7,66.998 23.491,65.852 23.596,65.227C23.624,65.06 23.7,65.956 24.326,66.685C24.615,67.021 24.873,67.066 24.996,67.08C25.22,67.105 26.552,67.102 26.623,67.102C26.832,67.102 27.041,66.685 26.202,66.315C25.978,66.216 25.698,66.027 25.475,65.747C25.095,65.273 24.936,64.459 24.727,63.313L23.012,63.014Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M21.257,29.735L22.682,29.763C22.869,29.767 23.005,29.921 22.985,30.106L22.614,33.546C22.594,33.732 22.426,33.88 22.239,33.876L20.815,33.848C20.628,33.843 20.492,33.689 20.512,33.504L20.882,30.065C20.902,29.878 21.069,29.73 21.257,29.735Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M19.311,33.562L19.61,34C21.509,33.987 23.51,31.382 21.005,31.672C20.855,31.69 20.71,31.736 20.58,31.81C19.962,32.157 19.493,32.701 19.043,33.105"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M21.716,19.385C21.09,19.177 19.837,19.281 19.407,23.126C19.347,23.662 19.732,24.177 19.598,24.471C19.197,25.344 18.67,25.746 17.887,25.52C15.766,24.907 17.446,23.978 17.549,21.889C17.749,17.822 20.596,17.205 21.789,17.859C21.789,17.859 24.048,17.192 24.354,21.96C24.354,21.96 24.511,24.423 24.854,24.86C25.195,25.296 24.221,25.633 23.419,25.318C22.616,25.003 22.865,23.219 22.865,23.219C22.865,23.219 23.538,19.991 21.716,19.385Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M11.027,66.26C10.973,68.053 7.775,67.591 8.532,65.645C9.104,63.212 8.43,63.949 10.602,63.853C10.706,64.058 11.043,65.675 11.027,66.26Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M2.08,65.151C2.672,64.805 4.597,64.067 4.288,63.27L5.956,63.01C5.971,63.316 6.82,65.533 5.795,65.738C4.966,65.906 -0.27,67.336 2.08,65.151Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M11.749,38.166C11.749,38.166 11.935,40.274 11.967,40.675C12.272,44.434 11.255,60.666 10.983,63.089C10.965,63.256 10.875,63.767 10.587,63.877C9.999,64.103 9.088,63.877 9.088,63.877C8.924,63.877 8.788,63.744 8.78,63.576C8.658,60.857 7.426,45.133 7.24,43.68C6.516,46.386 6.387,59.965 6.086,63.386C6.07,63.579 5.912,63.727 5.724,63.727C5.724,63.727 4.967,63.876 4.607,63.727C4.225,63.568 4.18,63.077 4.164,62.928C3.381,55.974 2.044,44.568 2.828,37.587L5.59,38.816L11.749,38.166Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M9.565,19.596C9.565,19.596 5.304,19.297 5.302,19.302L5.221,19.577C4.972,18.744 4.002,16.422 5.252,15.687C6.028,13.797 10.354,14.653 10.217,17.165C10.266,17.46 9.565,19.596 9.565,19.596Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M1.067,36.531L0.498,36.576C0.073,37.526 -0.023,39.057 0.666,39.978C1.359,40.627 2.101,39.563 2.137,38.964C2.246,38.02 1.927,37.195 1.659,36.479L1.067,36.531Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M0.635,29.09C0.755,28.415 0.906,27.758 1.093,27.128C1.499,25.558 1.664,24.507 2.889,23.669C3.396,23.322 4.059,23.08 4.967,22.768C5.295,22.655 5.525,22.45 5.593,22.17C5.679,21.827 8.237,21.972 8.873,22.041C8.966,22.051 8.967,21.966 9.006,22.053C9.123,22.317 9.342,22.655 9.889,22.88C10.628,23.184 12.42,23.784 13.099,25.017C14.154,26.935 15.904,34.594 14.708,35.429C14.171,35.804 12.188,36.114 11.866,36.171C11.864,37.159 11.858,38.536 11.77,38.743C11.087,40.36 5.224,40.718 2.773,38.889C2.507,38.69 2.845,31.86 3.276,28.815C3.229,29.018 3.178,29.238 3.127,29.472C2.86,30.68 2.67,32.116 2.451,33.58C2.236,35.022 2.123,36.734 1.934,36.915C1.319,37.502 0.889,37.471 0.468,37.355C0.224,37.287 0.022,37.076 0.014,36.816C-0.065,33.918 0.191,31.605 0.635,29.09Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M7.168,31.854H8.673C8.869,31.854 9.028,32.017 9.028,32.22V35.994C9.028,36.195 8.87,36.36 8.673,36.36H7.195C7,36.36 6.84,36.197 6.84,35.994V32.224C6.84,32.02 6.997,31.855 7.192,31.855"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M7.329,23.118C6.66,22.982 5.922,22.56 5.609,22.137C5.712,21.74 5.878,21.15 5.866,21.071C6.035,21.257 8.621,21.262 8.791,21.071C8.779,21.15 8.945,21.74 9.048,22.137C8.733,22.56 7.997,22.98 7.329,23.118Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M9.575,19.689V19.639C9.911,19.399 10.122,18.963 10.111,18.629C10.112,18.452 10.043,18.032 9.852,18.217C9.802,18.442 9.636,19.227 9.472,19.352C9.61,14.442 6.533,18.981 5.664,16.908C5.017,17.131 5.577,19.035 5.365,19.346C5.19,19.216 5.075,18.449 5.03,18.217C4.991,18.187 4.955,18.162 4.924,18.174C4.569,18.566 4.86,19.316 5.309,19.642C5.277,20.844 6.62,22.237 7.442,22.054C8.26,22.235 9.588,20.869 9.575,19.667"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M9.451,19.177C9.452,19.131 9.453,19.088 9.453,19.044C9.454,19.092 9.454,19.142 9.454,19.193C9.453,19.187 9.452,19.183 9.451,19.177Z"
+        android:fillColor="#E4B489"/>
+    <path
+        android:pathData="M10.559,35.12L10.565,34.577C9.723,34.082 8.316,33.861 7.407,34.46C6.75,35.085 7.672,35.901 8.223,35.986C9.087,36.171 9.876,35.927 10.56,35.723"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M55.689,25.256L55.423,28.003L54.883,28.447L54.344,28.779L55.099,30.441L59.309,30.552L58.769,28.779L58.877,27.892L58.548,27.744C58.284,27.624 58.098,27.373 58.059,27.078L57.818,25.255H55.689V25.256Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M59.085,23.331C58.862,27.813 54.506,27.01 54.613,22.509C54.836,18.027 59.192,18.828 59.085,23.331Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M53.48,40.525C51.645,48.061 53.407,58.889 53.974,67.58L55.306,67.624C55.306,67.624 56.07,53.491 56.394,50.278C56.493,49.301 56.814,47.215 56.978,46.307C56.991,46.238 57.133,45.938 57.15,46.288C57.258,48.505 58.229,50.943 58.445,53.381C58.949,59.078 58.838,63.044 59.057,67.746C59.057,67.746 60.602,68.684 60.604,68.674C60.927,67.362 61.791,56.552 61.791,54.932C61.791,54.6 62.212,47.677 60.496,40.636L53.48,40.525Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M62.285,41.032C61.272,44.845 66.666,45.893 63.017,40.272L62.285,41.032Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M49.951,38.42C50.76,39.75 51.465,39.038 53.404,37.644C53.497,37.578 53.59,37.508 53.686,37.438C53.656,38.777 53.596,39.984 53.482,40.526C53.221,41.779 60.822,41.744 60.606,40.858C60.148,38.981 59.959,35.539 59.959,32.879C59.959,32.657 60.319,33.774 60.498,34.541C60.954,36.484 61.285,39.313 62.002,40.913C62.225,41.412 62.543,41.205 63.067,41.019C63.516,40.854 63.335,40.076 63.321,39.882C63.219,38.479 62.981,36.515 62.656,34.983C62.157,32.626 61.782,29.131 58.877,27.83C58.829,27.809 58.775,27.845 58.776,27.9C58.804,28.894 57.777,30.329 57.259,30.329C56.288,30.329 54.668,28.888 54.444,27.725C52.133,28.417 51.446,31.112 50.999,32.767C50.459,34.763 49.534,37.736 49.951,38.42Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M55.344,66.96L53.911,66.791C53.87,67.17 53.372,67.788 53.647,69.259C53.668,69.377 53.695,70.495 53.732,70.615C53.766,70.727 54.235,70.89 54.235,70.78C54.235,70.668 54.101,69.287 54.343,69.782C54.451,70.004 54.451,70.78 54.991,71.223C55.607,71.729 57.549,71.892 56.826,71.001C55.746,69.671 55.424,67.562 55.339,67.097"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M59.04,67.031C59.04,67.031 59.017,67.763 58.876,68.341C58.768,68.784 58.66,70.114 59.092,71.222H59.739C59.739,71.222 59.523,70.003 59.631,69.339C59.66,69.161 59.739,70.114 60.387,70.89C60.685,71.247 60.953,71.296 61.079,71.31C61.311,71.337 62.688,71.333 62.762,71.333C62.978,71.333 63.193,70.89 62.327,70.497C62.095,70.391 61.805,70.19 61.574,69.893C61.181,69.388 61.001,68.535 60.785,67.316L59.04,67.031Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M57.216,31.586L58.689,31.616C58.883,31.62 59.023,31.784 59.002,31.982L58.619,35.64C58.599,35.838 58.425,35.996 58.232,35.991L56.758,35.961C56.565,35.957 56.425,35.793 56.445,35.596L56.828,31.937C56.849,31.739 57.022,31.582 57.216,31.586Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M55.203,35.658L55.512,36.124C57.529,36.11 59.656,33.188 56.734,33.678C55.982,34.033 55.443,34.694 54.926,35.171"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M59.865,28.423C59.713,28.304 59.587,28.218 59.417,28.115C59.219,27.995 59.08,27.93 58.862,27.836C58.845,27.828 58.805,27.836 58.793,27.859C58.609,27.812 58.464,27.728 58.312,27.583C57.991,27.277 57.786,26.734 57.894,26.18C57.952,25.881 58.064,25.757 58.126,25.68C59.513,23.963 58.6,21.232 58.6,21.232C58.6,21.232 57.82,22.919 54.88,24.073C54.88,24.073 55.002,24.858 55.434,25.412C55.465,25.453 55.789,25.753 55.801,26.224C55.812,26.686 55.813,27.154 55.505,27.862C55.131,28.727 54.177,28.935 53.454,28.638C52.915,28.416 52.699,27.862 52.674,27.316C52.674,27.316 54.145,27.404 53.799,25.718C53.54,24.45 53.231,21.681 54.449,20.079C54.467,20.057 54.484,20.035 54.501,20.013C54.513,19.996 54.527,19.98 54.541,19.964C54.566,19.934 54.592,19.904 54.618,19.875C54.643,19.849 54.667,19.822 54.692,19.796C55.074,19.398 55.577,19.098 56.235,18.952C56.235,18.952 58.743,18.598 59.175,20.107C59.175,20.107 59.867,20.463 59.954,21.795C60.041,23.127 59.824,23.614 59.78,24.636C59.729,25.878 61.325,26.567 60.806,27.316C60.381,27.842 61.039,28.065 59.865,28.423Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M81.201,22.704L80.935,25.451L80.395,25.895L79.855,26.227L80.611,27.889L84.821,28L84.281,26.227L84.389,25.341L84.06,25.192C83.795,25.073 83.61,24.821 83.571,24.526L83.33,22.703H81.201V22.704Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M84.595,20.78C84.371,25.262 80.016,24.459 80.123,19.958C80.345,15.476 84.702,16.278 84.595,20.78Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M78.992,37.975C77.157,45.51 78.918,56.339 79.486,65.029L80.818,65.074C80.818,65.074 81.582,50.941 81.906,47.727C82.004,46.75 82.326,44.664 82.49,43.756C82.503,43.687 82.644,43.387 82.662,43.737C82.77,45.954 83.741,48.392 83.957,50.83C84.461,56.527 84.35,60.493 84.569,65.195C84.569,65.195 86.114,66.133 86.116,66.123C86.438,64.811 87.303,54.001 87.303,52.381C87.303,52.049 87.724,45.126 86.008,38.085L78.992,37.975Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M87.797,38.481C86.784,42.294 92.177,43.342 88.529,37.722L87.797,38.481Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M76.631,34.645C78.2,37.222 75.781,37.622 78.992,37.975C78.731,39.228 86.332,39.194 86.116,38.307C85.658,36.43 85.468,32.988 85.468,30.328C85.468,30.107 85.829,31.223 86.008,31.99C86.464,33.933 86.795,36.762 87.512,38.363C87.735,38.861 88.052,38.654 88.577,38.468C89.026,38.303 88.845,37.525 88.831,37.331C88.729,35.928 88.491,33.964 88.166,32.433C87.667,30.075 87.291,26.58 84.387,25.279C84.339,25.258 84.284,25.295 84.285,25.349C84.313,26.343 83.287,27.778 82.769,27.778C81.797,27.778 80.178,26.337 79.954,25.174C77.643,25.867 77.482,27.778 77.482,30.394C76.942,32.389 76.215,33.962 76.631,34.645Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M80.855,64.409L79.423,64.24C79.382,64.619 78.883,65.238 79.159,66.708C79.18,66.826 79.207,67.944 79.244,68.065C79.277,68.177 79.747,68.34 79.747,68.229C79.747,68.117 79.613,66.736 79.855,67.231C79.963,67.453 79.963,68.229 80.502,68.672C81.119,69.178 83.061,69.341 82.337,68.45C81.258,67.12 80.935,65.011 80.851,64.546"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M84.552,64.48C84.552,64.48 84.529,65.212 84.387,65.79C84.28,66.234 84.172,67.563 84.604,68.672H85.251C85.251,68.672 85.035,67.453 85.143,66.788C85.172,66.61 85.251,67.563 85.899,68.339C86.197,68.696 86.464,68.745 86.59,68.759C86.823,68.786 88.2,68.783 88.273,68.783C88.489,68.783 88.705,68.339 87.838,67.946C87.606,67.841 87.317,67.639 87.086,67.342C86.693,66.838 86.513,65.984 86.297,64.765L84.552,64.48Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M82.728,29.035L84.201,29.065C84.394,29.07 84.535,29.234 84.514,29.431L84.131,33.089C84.11,33.287 83.937,33.445 83.743,33.44L82.27,33.41C82.077,33.406 81.937,33.242 81.957,33.045L82.34,29.386C82.361,29.188 82.534,29.031 82.728,29.035Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M80.713,33.107L81.022,33.573C83.039,33.559 85.165,30.638 82.243,31.128C81.492,31.482 80.953,32.143 80.436,32.62"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M85.376,25.872C85.224,25.754 85.099,25.667 84.928,25.564C84.731,25.444 84.592,25.379 84.374,25.285C84.356,25.277 84.316,25.285 84.305,25.308C84.121,25.261 83.975,25.177 83.823,25.032C83.503,24.726 83.298,24.183 83.405,23.629C83.464,23.33 83.576,23.206 83.637,23.129C85.024,21.413 84.111,18.681 84.111,18.681C84.111,18.681 83.332,20.368 80.392,21.522C80.392,21.522 80.514,22.307 80.946,22.861C80.977,22.902 81.301,23.202 81.313,23.674C81.323,24.136 81.324,24.603 81.017,25.311C80.642,26.176 79.689,26.384 78.966,26.087C78.426,25.865 78.21,25.311 78.186,24.765C78.186,24.765 79.657,24.854 79.31,23.167C79.051,21.899 78.743,19.13 79.961,17.528C79.978,17.506 79.996,17.484 80.013,17.462C80.025,17.445 80.039,17.429 80.053,17.413C80.078,17.383 80.104,17.353 80.13,17.325C80.154,17.298 80.179,17.271 80.204,17.245C80.586,16.847 81.089,16.548 81.746,16.402C81.746,16.402 84.255,16.047 84.687,17.556C84.687,17.556 85.379,17.912 85.466,19.244C85.552,20.576 85.335,21.064 85.292,22.085C85.24,23.328 85.206,24.572 86.503,24.838C86.506,24.836 86.551,25.514 85.376,25.872Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M72.767,66.756C72.711,68.582 69.35,68.112 70.145,66.129C70.746,63.651 70.038,64.401 72.321,64.304C72.43,64.513 72.784,66.16 72.767,66.756Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M63.367,65.626C63.989,65.274 66.011,64.523 65.686,63.71L67.439,63.445C67.455,63.757 68.347,66.015 67.27,66.224C66.399,66.395 60.897,67.852 63.367,65.626Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M73.523,38.138C73.523,38.138 73.718,40.285 73.753,40.694C74.072,44.522 73.005,61.058 72.718,63.526C72.699,63.695 72.605,64.216 72.302,64.329C71.684,64.558 70.727,64.329 70.727,64.329C70.554,64.329 70.412,64.193 70.404,64.021C70.275,61.252 68.981,45.235 68.785,43.755C68.024,46.511 67.889,60.343 67.573,63.829C67.555,64.025 67.39,64.175 67.192,64.175C67.192,64.175 66.397,64.328 66.018,64.175C65.616,64.013 65.569,63.513 65.552,63.362C64.73,56.278 63.325,44.659 64.149,37.548L67.051,38.8L73.523,38.138Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M71.229,19.221C71.229,19.221 66.753,18.917 66.751,18.922L66.665,19.201C66.403,18.354 65.384,15.988 66.698,15.24C67.514,13.315 72.059,14.186 71.915,16.745C71.966,17.046 71.229,19.221 71.229,19.221Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M62.3,36.472L61.702,36.518C61.256,37.485 61.155,39.044 61.879,39.982C62.607,40.643 63.387,39.56 63.425,38.95C63.539,37.988 63.204,37.147 62.923,36.419L62.3,36.472Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M61.847,28.892C61.973,28.205 62.131,27.536 62.328,26.893C62.755,25.294 62.928,24.223 64.215,23.37C64.748,23.016 65.445,22.77 66.399,22.452C66.744,22.337 66.985,22.128 67.058,21.843C67.147,21.494 69.836,21.642 70.503,21.712C70.601,21.722 70.602,21.635 70.644,21.725C70.767,21.993 70.996,22.337 71.571,22.567C72.348,22.876 74.231,23.487 74.944,24.743C76.053,26.697 77.893,34.499 76.635,35.349C76.071,35.731 73.987,36.048 73.649,36.105C73.647,37.111 73.64,38.514 73.548,38.726C72.155,39.647 67.718,39.881 64.093,39.341C62.581,39.341 63.212,38.726 63.212,36.863C63.212,37.546 62.114,37.429 61.672,37.311C61.415,37.242 61.203,37.028 61.195,36.763C61.112,33.81 61.381,31.454 61.847,28.892ZM73.729,33.607C74.1,33.466 74.262,33.533 74.444,33.466C74.471,32.607 73.628,29.073 73.525,28.762C73.525,28.777 73.664,31.105 73.729,33.607Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M68.712,31.708H70.294C70.499,31.708 70.667,31.874 70.667,32.081V35.925C70.667,36.131 70.5,36.298 70.294,36.298H68.741C68.535,36.298 68.367,36.132 68.367,35.925V32.085C68.367,31.878 68.533,31.709 68.737,31.709"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M68.879,22.809C68.177,22.67 67.401,22.241 67.072,21.81C67.18,21.406 67.355,20.805 67.342,20.725C67.519,20.914 70.237,20.919 70.416,20.725C70.403,20.805 70.578,21.406 70.686,21.81C70.355,22.241 69.581,22.669 68.879,22.809Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M71.24,19.316V19.266C71.592,19.02 71.814,18.576 71.803,18.236C71.804,18.056 71.731,17.628 71.53,17.817C71.477,18.046 71.304,18.846 71.132,18.973C71.276,13.971 68.043,18.594 67.129,16.483C66.45,16.711 67.039,18.65 66.816,18.966C66.632,18.834 66.511,18.053 66.464,17.817C66.423,17.786 66.385,17.76 66.352,17.773C65.979,18.172 66.285,18.936 66.757,19.268C66.723,20.492 68.134,21.911 68.998,21.726C69.858,21.909 71.253,20.519 71.24,19.293"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M71.111,18.795C71.112,18.748 71.114,18.704 71.114,18.659C71.115,18.709 71.115,18.759 71.115,18.811C71.114,18.805 71.112,18.801 71.111,18.795Z"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M72.274,35.034L72.28,34.481C71.395,33.978 69.917,33.752 68.962,34.362C68.271,34.999 69.24,35.831 69.819,35.917C70.727,36.105 71.556,35.857 72.275,35.649"
+        android:fillColor="#F4F4F4"/>
+    <path
+        android:pathData="M60.126,36.74L59.992,40.483H63.453L62.943,36.74H60.126Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M64.617,34.268C64.321,40.023 58.56,38.993 58.702,33.212C58.996,27.458 64.758,28.486 64.617,34.268Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M57.203,56.348C54.776,66.024 57.106,79.929 57.857,91.088L59.619,91.145C59.619,91.145 60.63,72.997 61.058,68.87C61.188,67.617 61.614,64.368 61.831,63.202C61.848,63.114 62.035,62.729 62.058,63.178C62.201,66.024 63.485,69.724 63.771,72.855C64.438,80.171 64.291,85.264 64.58,91.302C64.58,91.302 66.624,92.506 66.626,92.493C67.053,90.808 68.197,76.928 68.197,74.847C68.197,74.42 68.34,65.028 66.484,56.49L57.203,56.348Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M69.341,57.216C68.269,62.179 75.465,63.138 70.254,56.19L69.341,57.216Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M70.791,55.95C70.524,54.072 70.056,51.2 69.626,49.234C68.912,45.96 68.056,40.98 63.344,39.699C62.553,40.46 60.686,39.961 60.049,39.699C60.038,39.695 60.033,39.699 60.021,39.699C55.67,39.742 54.605,43.934 53.921,46.387C53.208,48.949 51.984,52.767 52.535,53.645C53.606,55.353 54.538,54.439 57.104,52.649C57.227,52.563 57.351,52.474 57.476,52.384C57.436,54.103 57.356,55.653 57.207,56.349C56.861,57.958 66.915,57.914 66.63,56.776C66.024,54.365 65.773,49.945 65.773,46.53C65.773,46.245 66.485,47.692 66.772,48.664C67.486,51.083 68.099,55.219 69.047,57.274C69.342,57.914 69.762,57.648 70.456,57.409C71.05,57.197 70.826,56.196 70.791,55.95ZM55.92,50.514C55.92,50.514 56.063,50.372 56.634,48.38C56.97,47.21 57.491,45.391 57.491,45.391C57.491,45.391 57.525,47.549 57.509,49.982C56.43,50.308 55.92,50.514 55.92,50.514Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M59.614,90.428L57.775,90.074C57.721,90.561 57.061,91.355 57.425,93.243C57.454,93.394 57.49,94.83 57.538,94.985C57.583,95.129 58.204,95.338 58.204,95.196C58.204,95.052 58.027,93.279 58.346,93.915C58.489,94.2 58.489,95.196 59.203,95.765C60.018,96.415 62.587,96.624 61.63,95.48C60.202,93.773 59.784,90.991 59.673,90.393"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M57.897,26.847C57.897,26.847 58.523,25.451 59.651,25.779C59.651,25.779 60.063,23.587 62.858,24.091C65.653,24.595 65.606,26.503 65.606,26.503C65.606,26.503 68.589,26.507 67.798,30.015C67.798,30.015 68.505,31.603 67.377,32.411C67.377,32.411 67.772,34.156 66.029,34.354C66.029,34.354 65.892,34.866 65.458,34.778C65.458,34.778 64.688,35.76 64.409,35.097C64.241,34.7 64.279,33.914 64.336,33.348C64.386,32.848 64.237,32.352 63.919,31.963C63.53,31.491 62.948,30.951 62.281,30.906C61.073,30.823 59.41,31.667 59.182,32.541C59.01,33.194 59.496,35.297 58.459,35.303C57.798,35.307 57.48,34.342 57.48,34.342C57.48,34.342 55.558,34.016 56.098,32.498C56.098,32.498 55.128,31.39 55.938,30.07C55.938,30.072 55.011,26.893 57.897,26.847Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M64.554,90.379C64.554,90.379 64.53,91.324 64.344,92.067C64.202,92.636 64.059,94.343 64.63,95.767H65.487C65.487,95.767 65.201,94.201 65.344,93.347C65.382,93.12 65.487,94.343 66.343,95.34C66.737,95.798 67.091,95.86 67.258,95.879C67.565,95.913 69.387,95.909 69.484,95.909C69.77,95.909 70.055,95.34 68.909,94.834C68.602,94.699 68.219,94.44 67.914,94.059C67.394,93.411 67.181,92.314 66.896,90.749L64.554,90.379Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M62.147,44.87L64.096,44.909C64.351,44.914 64.537,45.125 64.51,45.378L64.003,50.076C63.976,50.33 63.746,50.532 63.49,50.527L61.542,50.488C61.286,50.483 61.1,50.272 61.128,50.019L61.634,45.321C61.661,45.067 61.89,44.864 62.147,44.87Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M59.482,50.098L59.89,50.697C62.557,50.679 65.371,46.927 61.507,47.556C60.513,48.012 59.799,48.86 59.115,49.473"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M12.681,36.656L12.322,40.289L11.592,40.875L10.861,41.315L11.884,43.514L17.579,43.66L16.849,41.315L16.995,40.143L16.549,39.946C16.192,39.788 15.94,39.455 15.888,39.065L15.562,36.654H12.681V36.656Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M17.276,34.109C16.973,40.036 11.081,38.975 11.225,33.022C11.526,27.094 17.42,28.154 17.276,34.109Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M9.693,56.852C7.21,66.818 9.594,81.14 10.362,92.634L12.164,92.692C12.164,92.692 13.198,74 13.636,69.75C13.769,68.458 14.204,65.699 14.426,64.498C14.443,64.407 14.635,64.01 14.658,64.473C14.804,67.405 16.118,70.629 16.411,73.854C17.093,81.389 16.942,86.634 17.239,92.853C17.239,92.853 19.328,94.093 19.331,94.08C19.768,92.345 20.938,78.049 20.938,75.906C20.938,75.466 21.507,66.31 19.185,56.998L9.693,56.852Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M21.607,57.521C20.235,62.564 27.533,63.951 22.597,56.517L21.607,57.521Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M4.917,54.066C6.012,55.825 6.966,54.884 9.59,53.04C9.716,52.952 9.841,52.86 9.971,52.768C9.93,54.538 9.849,56.134 9.695,56.851C9.342,58.509 19.626,58.463 19.334,57.291C18.715,54.808 18.458,50.256 18.458,46.738C18.458,46.445 18.945,47.922 19.188,48.936C19.804,51.506 20.252,55.248 21.222,57.364C21.524,58.024 21.954,57.75 22.663,57.503C23.271,57.285 23.025,56.256 23.007,56C22.869,54.144 22.546,51.547 22.107,49.521C21.432,46.404 20.924,41.781 16.994,40.06C16.93,40.032 16.855,40.081 16.857,40.153C16.895,41.467 15.506,43.365 14.805,43.365C13.491,43.365 11.3,41.46 10.997,39.921C7.87,40.837 6.941,44.402 6.335,46.59C5.605,49.23 4.353,53.162 4.917,54.066ZM8.482,50.628C8.584,50.374 8.774,49.825 9.111,48.643L9.805,46.209C9.836,46.1 9.995,46.121 9.996,46.234C10.005,47.078 10.018,48.623 10.006,50.294C9.319,50.502 8.856,50.663 8.606,50.755C8.526,50.786 8.45,50.707 8.482,50.628Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M12.216,91.813L10.278,91.59C10.222,92.091 9.548,92.909 9.92,94.854C9.949,95.009 9.986,96.488 10.035,96.648C10.081,96.796 10.716,97.011 10.716,96.865C10.716,96.717 10.535,94.891 10.862,95.546C11.008,95.839 11.008,96.865 11.738,97.451C12.572,98.121 15.199,98.336 14.221,97.158C12.76,95.399 12.324,92.61 12.21,91.994"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M17.218,91.907C17.218,91.907 17.187,92.875 16.996,93.64C16.85,94.226 16.704,95.985 17.288,97.451H18.164C18.164,97.451 17.872,95.838 18.018,94.959C18.058,94.724 18.164,95.985 19.04,97.011C19.443,97.483 19.806,97.547 19.976,97.566C20.29,97.601 22.154,97.597 22.253,97.597C22.545,97.597 22.837,97.011 21.665,96.49C21.351,96.351 20.959,96.084 20.647,95.692C20.115,95.025 19.871,93.896 19.579,92.284L17.218,91.907Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M14.748,45.028L16.742,45.068C17.003,45.074 17.193,45.291 17.165,45.552L16.647,50.39C16.619,50.652 16.384,50.86 16.123,50.855L14.129,50.815C13.868,50.809 13.678,50.592 13.706,50.331L14.224,45.493C14.252,45.231 14.486,45.023 14.748,45.028Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M12.024,50.414L12.441,51.031C15.171,51.012 18.048,47.148 14.094,47.796C13.078,48.265 12.348,49.139 11.648,49.77"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M18.332,40.844C18.126,40.687 17.957,40.573 17.726,40.437C17.459,40.278 17.271,40.192 16.976,40.067C16.952,40.057 16.898,40.067 16.882,40.098C16.634,40.037 16.437,39.925 16.231,39.733C15.797,39.329 15.52,38.611 15.666,37.878C15.745,37.482 15.896,37.318 15.98,37.217C17.856,34.946 16.621,31.333 16.621,31.333C16.621,31.333 15.566,33.564 11.589,35.091C11.589,35.091 11.753,36.129 12.338,36.862C12.38,36.916 12.818,37.313 12.834,37.936C12.849,38.548 12.85,39.166 12.434,40.103C11.927,41.246 10.638,41.521 9.659,41.129C8.929,40.835 8.637,40.103 8.604,39.38C8.604,39.38 10.594,39.497 10.125,37.266C9.775,35.59 9.357,31.927 11.006,29.809C11.029,29.78 11.052,29.75 11.076,29.721C11.092,29.699 11.111,29.677 11.13,29.657C11.163,29.617 11.199,29.577 11.234,29.539C11.267,29.504 11.301,29.469 11.334,29.434C11.851,28.908 12.532,28.512 13.421,28.318C13.421,28.318 16.815,27.849 17.399,29.846C17.399,29.846 18.335,30.316 18.454,32.078C18.57,33.84 18.277,34.485 18.219,35.836C18.148,37.479 18.102,39.125 19.857,39.477C19.86,39.474 19.921,40.371 18.332,40.844Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M80.648,96.277C80.572,98.731 76.058,98.099 77.126,95.436C77.934,92.107 76.983,93.115 80.049,92.984C80.196,93.264 80.671,95.477 80.648,96.277Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M68.02,94.76C68.855,94.287 71.572,93.277 71.135,92.186L73.49,91.83C73.511,92.249 74.709,95.282 73.263,95.563C72.092,95.793 64.702,97.75 68.02,94.76Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M81.665,57.836C81.665,57.836 81.927,60.721 81.974,61.27C82.403,66.413 80.968,88.624 80.584,91.939C80.558,92.168 80.431,92.867 80.025,93.018C79.195,93.326 77.908,93.018 77.908,93.018C77.677,93.018 77.485,92.836 77.475,92.605C77.302,88.885 75.563,67.37 75.301,65.382C74.279,69.084 74.096,87.664 73.672,92.346C73.649,92.61 73.426,92.812 73.161,92.812C73.161,92.812 72.092,93.017 71.583,92.812C71.044,92.594 70.981,91.923 70.958,91.719C69.854,82.204 67.966,66.596 69.073,57.044L72.971,58.725L81.665,57.836Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M78.583,32.425C78.583,32.425 72.569,32.016 72.566,32.022L72.452,32.399C72.1,31.26 70.731,28.082 72.495,27.077C73.591,24.491 79.698,25.662 79.503,29.099C79.573,29.503 78.583,32.425 78.583,32.425Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M66.589,55.598L65.786,55.66C65.187,56.959 65.051,59.054 66.023,60.314C67.001,61.202 68.049,59.747 68.1,58.927C68.253,57.636 67.803,56.506 67.425,55.527L66.589,55.598Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M65.979,45.415C66.147,44.492 66.36,43.594 66.624,42.731C67.199,40.582 67.43,39.144 69.159,37.998C69.876,37.523 70.811,37.192 72.093,36.765C72.556,36.611 72.88,36.33 72.978,35.946C73.098,35.478 76.709,35.677 77.606,35.771C77.737,35.785 77.739,35.667 77.795,35.788C77.96,36.148 78.269,36.611 79.04,36.919C80.084,37.335 82.613,38.155 83.572,39.842C85.062,42.467 87.532,52.947 85.843,54.089C85.085,54.602 82.286,55.028 81.832,55.105C81.829,56.457 81.82,58.341 81.696,58.625C79.825,59.863 73.865,60.177 68.996,59.451C66.965,59.451 67.812,58.625 67.812,56.124C67.812,57.04 66.337,56.883 65.743,56.725C65.398,56.632 65.113,56.344 65.102,55.988C64.991,52.022 65.352,48.857 65.979,45.415ZM81.94,51.75C82.437,51.56 82.655,51.65 82.9,51.56C82.936,50.406 81.804,45.659 81.665,45.241C81.665,45.261 81.852,48.388 81.94,51.75Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M75.2,49.197H77.324C77.6,49.197 77.826,49.421 77.826,49.698V54.863C77.826,55.139 77.602,55.364 77.324,55.364H75.238C74.962,55.364 74.736,55.14 74.736,54.863V49.704C74.736,49.425 74.959,49.199 75.233,49.199"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M75.425,37.244C74.482,37.057 73.439,36.481 72.998,35.901C73.143,35.359 73.378,34.551 73.361,34.443C73.599,34.698 77.248,34.704 77.489,34.443C77.472,34.551 77.707,35.359 77.852,35.901C77.407,36.481 76.368,37.056 75.425,37.244Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M78.597,32.553V32.485C79.071,32.155 79.369,31.559 79.354,31.103C79.355,30.861 79.258,30.286 78.988,30.539C78.917,30.847 78.684,31.921 78.452,32.092C78.647,25.373 74.304,31.584 73.076,28.748C72.164,29.053 72.954,31.658 72.655,32.083C72.408,31.906 72.246,30.856 72.182,30.539C72.127,30.497 72.076,30.463 72.033,30.48C71.531,31.017 71.942,32.043 72.576,32.488C72.53,34.133 74.426,36.039 75.587,35.79C76.742,36.036 78.616,34.168 78.597,32.522"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M78.422,31.852C78.424,31.789 78.425,31.73 78.425,31.67C78.426,31.736 78.426,31.804 78.426,31.874C78.425,31.866 78.424,31.86 78.422,31.852Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M79.987,53.667L79.995,52.924C78.806,52.247 76.821,51.944 75.538,52.764C74.61,53.619 75.911,54.736 76.69,54.852C77.909,55.105 79.022,54.772 79.989,54.493"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M31.908,94.791C31.836,97.191 27.495,96.573 28.522,93.968C29.299,90.711 28.384,91.697 31.332,91.569C31.473,91.843 31.931,94.008 31.908,94.791Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M19.766,93.306C20.569,92.843 23.182,91.855 22.761,90.788L25.025,90.439C25.046,90.85 26.198,93.817 24.807,94.091C23.682,94.316 16.576,96.231 19.766,93.306Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M32.885,57.182C32.885,57.182 33.137,60.005 33.182,60.542C33.595,65.573 32.216,87.304 31.846,90.547C31.821,90.77 31.699,91.455 31.309,91.603C30.51,91.904 29.274,91.603 29.274,91.603C29.051,91.603 28.867,91.425 28.856,91.199C28.69,87.559 27.019,66.51 26.766,64.564C25.784,68.186 25.608,86.365 25.2,90.945C25.178,91.203 24.964,91.4 24.709,91.4C24.709,91.4 23.682,91.601 23.192,91.4C22.674,91.188 22.613,90.531 22.591,90.331C21.529,81.022 19.714,65.753 20.778,56.407L24.526,58.052L32.885,57.182Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M29.922,32.321C29.922,32.321 24.14,31.922 24.137,31.928L24.027,32.296C23.689,31.182 22.372,28.073 24.069,27.089C25.123,24.559 30.993,25.705 30.806,29.068C30.873,29.463 29.922,32.321 29.922,32.321Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M18.391,54.992L17.619,55.053C17.043,56.324 16.912,58.373 17.848,59.606C18.787,60.475 19.795,59.051 19.844,58.249C19.991,56.986 19.559,55.88 19.195,54.923L18.391,54.992Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M17.804,45.031C17.966,44.128 18.17,43.249 18.424,42.404C18.976,40.303 19.199,38.896 20.862,37.774C21.55,37.31 22.45,36.985 23.682,36.568C24.127,36.417 24.439,36.142 24.533,35.767C24.648,35.309 28.12,35.503 28.983,35.595C29.109,35.609 29.111,35.494 29.164,35.612C29.323,35.965 29.62,36.417 30.362,36.718C31.365,37.125 33.797,37.928 34.718,39.579C36.151,42.146 38.526,52.4 36.902,53.517C36.173,54.019 33.482,54.435 33.046,54.511C33.043,55.833 33.034,57.677 32.915,57.954C31.989,60.118 24.031,60.598 20.704,58.149C20.344,57.884 20.802,48.74 21.387,44.663C21.323,44.935 21.255,45.23 21.185,45.542C20.823,47.16 20.565,49.083 20.268,51.043C19.976,52.973 19.823,55.264 19.566,55.507C18.732,56.293 18.148,56.251 17.577,56.095C17.246,56.005 16.971,55.723 16.961,55.375C16.854,51.495 17.201,48.398 17.804,45.031ZM33.15,51.228C33.627,51.043 33.837,51.13 34.073,51.043C34.107,49.913 33.019,45.269 32.885,44.861C32.885,44.88 33.065,47.94 33.15,51.228Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M26.67,48.731H28.712C28.978,48.731 29.195,48.95 29.195,49.221V54.274C29.195,54.544 28.98,54.764 28.712,54.764H26.707C26.441,54.764 26.225,54.546 26.225,54.274V49.227C26.225,48.954 26.438,48.733 26.702,48.733"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M26.886,37.037C25.979,36.854 24.977,36.29 24.553,35.723C24.692,35.193 24.918,34.403 24.902,34.297C25.13,34.546 28.639,34.552 28.871,34.297C28.854,34.403 29.08,35.193 29.22,35.723C28.792,36.29 27.793,36.853 26.886,37.037Z"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M29.935,32.446V32.38C30.391,32.057 30.677,31.474 30.663,31.028C30.664,30.791 30.571,30.228 30.311,30.476C30.243,30.777 30.018,31.828 29.796,31.996C29.983,25.421 25.807,31.498 24.627,28.724C23.75,29.022 24.51,31.57 24.222,31.986C23.984,31.813 23.829,30.786 23.768,30.476C23.714,30.435 23.665,30.402 23.624,30.418C23.141,30.943 23.536,31.947 24.146,32.383C24.102,33.992 25.924,35.857 27.041,35.613C28.151,35.854 29.953,34.027 29.935,32.416"
+        android:fillColor="#E3E3E3"/>
+    <path
+        android:pathData="M29.768,31.761C29.769,31.699 29.771,31.642 29.771,31.583C29.772,31.648 29.772,31.714 29.772,31.782C29.771,31.775 29.769,31.769 29.768,31.761Z"
+        android:fillColor="#E4B489"/>
+    <path
+        android:pathData="M31.272,53.103L31.28,52.377C30.137,51.715 28.228,51.418 26.994,52.22C26.102,53.057 27.353,54.15 28.102,54.263C29.274,54.51 30.344,54.185 31.274,53.912"
+        android:fillColor="#E3E3E3"/>
+  </group>
+  <path
+      android:pathData="M56.662,4.336C57.193,-0.849 49.54,-1.692 48.978,3.493C48.446,8.678 56.099,9.49 56.662,4.336Z"
+      android:fillColor="#DFDFDF"/>
+  <path
+      android:pathData="M52.35,19.736L52.632,27.952H45.072L46.166,19.736H52.35Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M42.449,13.988C42.449,26.639 55.162,25.015 55.506,12.333C55.506,-0.318 42.793,1.306 42.449,13.988Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M60.815,60.594C66.75,89.956 60.19,101.733 58.535,126.222L54.693,126.347L51.101,78.43L50.538,73.713C48.695,80.304 46.165,87.457 44.51,96.297C43.885,109.542 43.229,113.446 42.604,126.691L37.419,126.566C37.419,126.566 34.264,96.204 34.295,96.204C35.264,87.489 34.92,77.149 39.605,61.218L60.815,60.594Z"
+      android:fillColor="#DDA7A2"/>
+  <path
+      android:pathData="M33.422,61.563C35.796,72.433 20.084,74.619 31.423,59.313L33.422,61.563Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M52.819,58.282C75.028,56.627 68.313,43.101 66.751,37.478C65.251,32.106 61.565,26.233 52.569,25.765C52.163,25.733 49.977,27.795 45.354,25.64C35.514,28.107 33.64,36.541 32.078,43.726C31.141,48.036 30.828,54.346 30.235,58.47C30.172,59.001 29.673,61.218 30.985,61.687C32.515,62.218 33.296,62.687 34.077,61.375C35.826,58.407 37.919,46.599 39.262,40.29C39.543,38.915 40.199,37.478 40.199,38.103C40.199,38.79 38.544,59.438 39.575,61.218C40.855,63.467 57.848,62.655 60.816,60.594C61.222,60.313 61.034,56.314 60.472,51.472L59.754,46.069C59.597,44.944 59.41,43.851 59.223,42.789C58.379,37.884 58.285,33.418 58.285,33.418C58.285,33.418 61.003,40.883 61.909,43.32C65.564,53.284 50.57,54.221 50.57,54.221"
+      android:fillColor="#385460"/>
+  <path
+      android:pathData="M54.663,125.035L58.599,125.973C58.973,127.597 61.972,134.563 58.411,136.124C57.006,136.905 55.912,137.624 54.444,136.124C51.195,134.188 54.569,126.347 54.663,125.035Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M42.573,126.722C42.448,127.566 43.26,133.47 42.386,134.001C42.105,134.313 41.761,134.438 41.605,134.5C37.138,134.5 32.046,134.532 27.58,134.532C25.112,131.814 37.575,131.033 37.357,126.597C39.137,126.629 40.855,126.66 42.573,126.722Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M55.163,6.617C51.414,0.369 42.699,3.118 42.699,10.927C47.072,10.303 49.634,9.615 52.07,7.804C52.226,7.71 52.164,7.554 52.383,7.804C54.382,10.053 55.194,14.363 55.194,14.363C56.443,13.114 56.162,8.116 55.163,6.617Z"
+      android:fillColor="#DFDFDF"/>
+  <path
+      android:pathData="M31.58,27.99C29.76,29.795 23.148,34.651 17.258,35.394C16.535,35.5 16,36.455 16,37.597L16.321,71.644C16.375,76.872 18.115,81.728 20.952,84.435C25.53,88.814 31.339,93.458 32.517,94.413C32.678,94.546 32.865,94.546 33.026,94.413C34.177,93.431 38.326,88.708 42.824,84.249C45.608,81.49 47.267,76.633 47.214,71.379L46.893,37.331C46.893,36.19 46.331,35.261 45.608,35.182C39.692,34.545 34.578,29.795 32.731,28.017C32.544,27.857 32.356,27.751 32.142,27.751C31.955,27.725 31.741,27.831 31.58,27.99Z"
+      android:fillColor="#9BBACE"
+      android:fillType="evenOdd"/>
+  <path
+      android:pathData="M51.757,55.877L53.444,56.533C53.881,60.906 44.885,65.685 45.291,59.875C45.322,59.531 45.447,59.188 45.697,58.875C46.821,57.438 48.664,56.314 50.039,55.252"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M28.352,68.995C27.992,68.755 27.632,68.409 27.297,67.956L21.846,60.423C21.409,59.81 21.203,59.172 21.203,58.533C21.203,57.84 21.409,57.228 21.846,56.749C22.257,56.27 22.797,56.004 23.389,56.004C23.749,56.004 24.083,56.083 24.392,56.27C24.7,56.456 24.983,56.749 25.266,57.122L29.483,63.218L38.663,46.527C39.203,45.568 39.846,45.089 40.617,45.089C41.209,45.089 41.723,45.302 42.186,45.755C42.649,46.207 42.88,46.766 42.88,47.432C42.88,47.751 42.829,48.07 42.7,48.39C42.572,48.709 42.443,49.002 42.289,49.322L31.746,67.956C31.206,68.915 30.486,69.367 29.586,69.367C29.123,69.341 28.737,69.234 28.352,68.995Z"
+      android:fillColor="#ffffff"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_once.xml b/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_once.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bc9ffec7af4d49ccca88f3c15046b7d6960ad9f1
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_vaccinated_once.xml
@@ -0,0 +1,361 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="90dp"
+    android:height="136dp"
+    android:viewportWidth="90"
+    android:viewportHeight="136">
+  <path
+      android:pathData="M36.538,61.56C36.485,63.353 33.286,62.891 34.043,60.945C34.615,58.512 33.942,59.248 36.114,59.153C36.218,59.358 36.555,60.975 36.538,61.56Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M27.592,60.45C28.184,60.104 30.109,59.366 29.799,58.569L31.468,58.309C31.483,58.615 32.332,60.832 31.307,61.036C30.478,61.204 25.242,62.635 27.592,60.45Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M37.259,33.466C37.259,33.466 37.445,35.574 37.478,35.975C37.782,39.734 36.766,55.966 36.494,58.389C36.475,58.556 36.385,59.067 36.098,59.178C35.509,59.403 34.598,59.178 34.598,59.178C34.434,59.178 34.298,59.045 34.291,58.876C34.168,56.157 32.937,40.433 32.751,38.98C32.027,41.686 31.897,55.265 31.597,58.686C31.58,58.879 31.423,59.027 31.235,59.027C31.235,59.027 30.478,59.176 30.117,59.027C29.735,58.868 29.69,58.377 29.674,58.228C28.892,51.274 27.554,39.868 28.338,32.887L31.1,34.116L37.259,33.466Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M35.076,14.895C35.076,14.895 30.816,14.596 30.813,14.601L30.732,14.876C30.483,14.043 29.513,11.721 30.763,10.986C31.54,9.097 35.866,9.953 35.728,12.464C35.777,12.759 35.076,14.895 35.076,14.895Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M26.579,31.831L26.01,31.876C25.585,32.825 25.489,34.356 26.178,35.277C26.871,35.926 27.613,34.863 27.649,34.264C27.758,33.32 27.439,32.494 27.171,31.779L26.579,31.831Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M26.146,24.389C26.266,23.714 26.417,23.058 26.604,22.427C27.01,20.857 27.174,19.806 28.4,18.968C28.907,18.621 29.57,18.379 30.478,18.067C30.806,17.954 31.035,17.749 31.104,17.469C31.19,17.126 33.748,17.272 34.384,17.34C34.477,17.35 34.478,17.265 34.517,17.353C34.634,17.616 34.853,17.954 35.4,18.179C36.139,18.483 37.931,19.083 38.61,20.316C39.665,22.234 41.415,29.893 40.219,30.728C39.682,31.103 37.699,31.414 37.377,31.47C37.375,32.458 37.368,33.835 37.281,34.042C36.598,35.659 30.735,36.017 28.284,34.188C28.018,33.989 28.356,27.16 28.787,24.114C28.74,24.317 28.689,24.537 28.638,24.771C28.371,25.979 28.181,27.415 27.962,28.879C27.747,30.321 27.634,32.033 27.445,32.214C26.83,32.801 26.4,32.77 25.979,32.654C25.735,32.586 25.533,32.375 25.525,32.115C25.446,29.217 25.702,26.904 26.146,24.389Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M32.679,27.153H34.184C34.38,27.153 34.54,27.316 34.54,27.519V31.293C34.54,31.494 34.381,31.659 34.184,31.659H32.707C32.511,31.659 32.351,31.496 32.351,31.293V27.523C32.351,27.319 32.509,27.154 32.703,27.154"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M32.839,18.417C32.171,18.281 31.433,17.86 31.12,17.436C31.223,17.04 31.389,16.449 31.377,16.371C31.545,16.556 34.131,16.561 34.302,16.371C34.29,16.449 34.456,17.04 34.559,17.436C34.244,17.86 33.508,18.28 32.839,18.417Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M35.086,14.988V14.939C35.422,14.698 35.633,14.262 35.622,13.928C35.623,13.752 35.554,13.331 35.363,13.516C35.312,13.741 35.147,14.526 34.983,14.651C35.121,9.741 32.044,14.28 31.175,12.207C30.528,12.43 31.088,14.334 30.876,14.645C30.701,14.515 30.586,13.748 30.541,13.516C30.502,13.486 30.466,13.461 30.435,13.473C30.08,13.865 30.371,14.615 30.82,14.941C30.787,16.143 32.131,17.536 32.953,17.353C33.771,17.534 35.099,16.169 35.086,14.966"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M34.962,14.476C34.964,14.43 34.965,14.387 34.965,14.343C34.966,14.392 34.966,14.441 34.966,14.492C34.965,14.486 34.964,14.482 34.962,14.476Z"
+      android:fillColor="#E4B489"/>
+  <path
+      android:pathData="M36.07,30.419L36.076,29.876C35.234,29.382 33.827,29.16 32.918,29.759C32.261,30.384 33.183,31.201 33.734,31.285C34.598,31.47 35.387,31.226 36.071,31.023"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M17.332,22.011C17.332,22.011 21.019,23.487 24.638,21.581L23.853,18.617L18.409,18.678L17.332,22.011Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M19.781,20.782L19.683,23.522H22.213L21.84,20.782H19.781Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M23.065,18.973C22.849,23.186 18.637,22.432 18.74,18.2C18.955,13.987 23.169,14.74 23.065,18.973Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M17.645,35.138C15.87,42.222 17.574,52.402 18.123,60.572L19.411,60.613C19.411,60.613 20.15,47.327 20.463,44.306C20.559,43.388 20.87,41.426 21.028,40.573C21.041,40.508 21.178,40.226 21.194,40.555C21.299,42.639 22.238,44.931 22.447,47.223C22.934,52.579 22.827,56.307 23.039,60.728C23.039,60.728 24.533,61.609 24.535,61.6C24.847,60.366 25.683,50.204 25.683,48.681C25.683,48.369 25.788,41.493 24.431,35.242L17.645,35.138Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M26.518,35.773C25.734,39.406 30.996,40.108 27.185,35.022L26.518,35.773Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M27.579,34.846C27.384,33.471 27.041,31.368 26.727,29.929C26.205,27.532 25.579,23.886 22.134,22.948C21.207,23.565 20.371,23.059 19.724,22.942C17.62,22.561 15.743,26.05 15.244,27.845C14.722,29.72 13.827,32.515 14.23,33.158C15.013,34.409 15.695,33.74 17.571,32.429C17.66,32.367 17.751,32.301 17.843,32.235C17.814,33.495 17.756,34.628 17.646,35.138C17.393,36.316 24.745,36.284 24.536,35.45C24.093,33.685 23.91,30.449 23.91,27.949C23.91,27.741 24.43,28.8 24.64,29.512C25.162,31.283 25.61,34.311 26.303,35.815C26.519,36.284 26.826,36.089 27.334,35.914C27.768,35.759 27.604,35.026 27.579,34.846ZM16.705,30.866C16.705,30.866 16.81,30.762 17.227,29.303C17.473,28.447 17.854,27.116 17.854,27.116C17.854,27.116 17.879,28.695 17.867,30.477C17.078,30.715 16.705,30.866 16.705,30.866Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M19.451,60.001L18.064,59.829C18.024,60.185 17.542,60.766 17.808,62.149C17.829,62.259 17.855,63.311 17.89,63.424C17.923,63.529 18.377,63.682 18.377,63.578C18.377,63.473 18.247,62.175 18.481,62.641C18.586,62.849 18.586,63.578 19.108,63.995C19.704,64.471 21.582,64.624 20.882,63.787C19.838,62.536 19.523,60.55 19.442,60.112"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M23.013,60.013C23.013,60.013 23.001,60.743 22.866,61.288C22.761,61.705 22.657,62.955 23.074,63.997H23.701C23.701,63.997 23.492,62.851 23.596,62.226C23.625,62.059 23.701,62.955 24.327,63.685C24.615,64.02 24.874,64.066 24.996,64.079C25.221,64.104 26.553,64.101 26.624,64.101C26.833,64.101 27.041,63.685 26.203,63.315C25.979,63.216 25.699,63.026 25.475,62.747C25.095,62.273 24.937,61.458 24.728,60.312L23.013,60.013Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M21.258,26.734L22.683,26.762C22.87,26.767 23.005,26.921 22.986,27.106L22.615,30.545C22.595,30.732 22.427,30.88 22.24,30.875L20.815,30.847C20.628,30.843 20.493,30.689 20.512,30.503L20.883,27.065C20.903,26.878 21.07,26.73 21.258,26.734Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M19.311,30.562L19.61,31.001C21.509,30.987 23.51,28.382 21.004,28.672C20.855,28.69 20.71,28.737 20.58,28.811C19.962,29.158 19.493,29.701 19.043,30.106"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M21.716,16.385C21.09,16.176 19.837,16.281 19.407,20.126C19.347,20.661 19.732,21.177 19.598,21.471C19.197,22.344 18.67,22.746 17.887,22.52C15.766,21.906 17.446,20.978 17.549,18.888C17.749,14.822 20.596,14.204 21.789,14.858C21.789,14.858 24.048,14.192 24.354,18.96C24.354,18.96 24.511,21.423 24.854,21.86C25.195,22.296 24.221,22.632 23.419,22.318C22.616,22.003 22.865,20.219 22.865,20.219C22.865,20.219 23.538,16.991 21.716,16.385Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M11.027,63.26C10.974,65.053 7.775,64.591 8.532,62.645C9.104,60.212 8.43,60.949 10.603,60.853C10.707,61.058 11.043,62.675 11.027,63.26Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M2.081,62.151C2.673,61.805 4.598,61.067 4.289,60.27L5.957,60.009C5.972,60.316 6.821,62.533 5.796,62.737C4.967,62.905 -0.269,64.336 2.081,62.151Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M11.748,35.166C11.748,35.166 11.934,37.275 11.967,37.676C12.271,41.434 11.255,57.667 10.983,60.09C10.964,60.256 10.874,60.768 10.587,60.878C9.998,61.103 9.087,60.878 9.087,60.878C8.923,60.878 8.787,60.745 8.78,60.576C8.657,57.857 7.426,42.134 7.24,40.681C6.516,43.386 6.387,56.965 6.086,60.387C6.069,60.579 5.912,60.727 5.724,60.727C5.724,60.727 4.967,60.877 4.606,60.727C4.224,60.568 4.179,60.077 4.163,59.928C3.381,52.974 2.043,41.568 2.827,34.587L5.589,35.816L11.748,35.166Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M9.565,16.596C9.565,16.596 5.305,16.297 5.302,16.302L5.221,16.576C4.972,15.744 4.002,13.422 5.252,12.687C6.029,10.797 10.354,11.653 10.217,14.165C10.266,14.46 9.565,16.596 9.565,16.596Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M1.067,33.531L0.499,33.576C0.074,34.526 -0.022,36.056 0.667,36.978C1.359,37.626 2.102,36.563 2.138,35.964C2.246,35.02 1.928,34.194 1.66,33.479L1.067,33.531Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M0.635,26.09C0.755,25.415 0.906,24.758 1.093,24.127C1.499,22.557 1.664,21.507 2.889,20.669C3.396,20.322 4.059,20.079 4.967,19.767C5.295,19.655 5.525,19.45 5.593,19.169C5.679,18.827 8.237,18.972 8.873,19.041C8.966,19.051 8.967,18.965 9.006,19.053C9.123,19.317 9.342,19.655 9.889,19.88C10.628,20.184 12.42,20.783 13.099,22.017C14.154,23.935 15.904,31.594 14.708,32.428C14.171,32.803 12.188,33.114 11.866,33.171C11.864,34.158 11.858,35.536 11.77,35.743C11.087,37.359 5.224,37.718 2.773,35.888C2.507,35.69 2.845,28.86 3.276,25.815C3.229,26.017 3.178,26.238 3.127,26.471C2.86,27.68 2.67,29.116 2.451,30.58C2.236,32.022 2.123,33.734 1.934,33.915C1.319,34.502 0.889,34.47 0.468,34.354C0.224,34.287 0.022,34.076 0.014,33.816C-0.065,30.918 0.191,28.604 0.635,26.09Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M7.168,28.853H8.673C8.869,28.853 9.029,29.017 9.029,29.219V32.994C9.029,33.195 8.87,33.36 8.673,33.36H7.196C7,33.36 6.84,33.196 6.84,32.994V29.224C6.84,29.02 6.998,28.854 7.192,28.854"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M7.328,20.118C6.66,19.981 5.922,19.56 5.609,19.136C5.712,18.74 5.878,18.15 5.866,18.071C6.034,18.257 8.62,18.261 8.791,18.071C8.779,18.15 8.945,18.74 9.048,19.136C8.733,19.56 7.997,19.98 7.328,20.118Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M9.575,16.689V16.639C9.911,16.398 10.122,15.962 10.111,15.629C10.112,15.452 10.043,15.032 9.852,15.217C9.801,15.442 9.636,16.227 9.472,16.352C9.61,11.441 6.533,15.98 5.664,13.908C5.017,14.131 5.577,16.034 5.365,16.345C5.19,16.216 5.075,15.449 5.03,15.217C4.991,15.186 4.955,15.162 4.924,15.174C4.569,15.566 4.86,16.316 5.309,16.642C5.276,17.843 6.62,19.237 7.442,19.054C8.26,19.234 9.588,17.869 9.575,16.666"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M9.451,16.177C9.453,16.131 9.454,16.088 9.454,16.044C9.455,16.092 9.455,16.142 9.455,16.192C9.454,16.187 9.453,16.182 9.451,16.177Z"
+      android:fillColor="#E4B489"/>
+  <path
+      android:pathData="M10.559,32.12L10.565,31.577C9.722,31.082 8.316,30.86 7.407,31.46C6.75,32.085 7.672,32.901 8.223,32.986C9.087,33.17 9.876,32.927 10.56,32.723"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M55.688,22.256L55.423,25.003L54.883,25.446L54.343,25.778L55.099,27.441L59.308,27.552L58.769,25.778L58.877,24.892L58.547,24.743C58.283,24.624 58.097,24.372 58.058,24.077L57.818,22.254H55.688V22.256Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M59.084,20.331C58.861,24.812 54.505,24.01 54.612,19.508C54.834,15.027 59.191,15.828 59.084,20.331Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M53.48,37.525C51.645,45.061 53.407,55.889 53.975,64.58L55.307,64.624C55.307,64.624 56.071,50.491 56.395,47.278C56.493,46.301 56.814,44.215 56.979,43.307C56.992,43.238 57.133,42.938 57.15,43.288C57.258,45.505 58.23,47.943 58.445,50.381C58.95,56.078 58.838,60.044 59.057,64.746C59.057,64.746 60.602,65.684 60.604,65.674C60.927,64.362 61.792,53.552 61.792,51.932C61.792,51.6 62.213,44.677 60.496,37.636L53.48,37.525Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M62.286,38.032C61.272,41.845 66.666,42.894 63.018,37.273L62.286,38.032Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M49.949,35.42C50.759,36.75 51.464,36.038 53.403,34.644C53.496,34.578 53.589,34.508 53.685,34.438C53.655,35.777 53.594,36.984 53.481,37.526C53.22,38.779 60.821,38.744 60.605,37.858C60.147,35.981 59.957,32.539 59.957,29.879C59.957,29.657 60.318,30.774 60.497,31.541C60.952,33.484 61.284,36.313 62.001,37.913C62.224,38.412 62.541,38.205 63.066,38.019C63.515,37.854 63.334,37.076 63.32,36.882C63.218,35.479 62.98,33.515 62.655,31.983C62.156,29.626 61.78,26.131 58.876,24.83C58.828,24.809 58.773,24.845 58.774,24.9C58.802,25.894 57.776,27.329 57.258,27.329C56.286,27.329 54.667,25.888 54.443,24.725C52.132,25.417 51.445,28.112 50.997,29.767C50.458,31.763 49.533,34.736 49.949,35.42Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M55.344,63.959L53.911,63.791C53.87,64.17 53.372,64.788 53.647,66.259C53.668,66.377 53.695,67.495 53.732,67.615C53.766,67.727 54.235,67.89 54.235,67.78C54.235,67.668 54.101,66.287 54.343,66.782C54.451,67.004 54.451,67.78 54.991,68.223C55.607,68.729 57.549,68.892 56.826,68.001C55.746,66.671 55.424,64.562 55.339,64.097"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M59.041,64.032C59.041,64.032 59.018,64.763 58.877,65.341C58.769,65.785 58.661,67.115 59.093,68.223H59.74C59.74,68.223 59.525,67.004 59.632,66.339C59.661,66.161 59.74,67.115 60.388,67.89C60.686,68.247 60.954,68.296 61.08,68.31C61.312,68.337 62.689,68.334 62.763,68.334C62.979,68.334 63.194,67.89 62.328,67.497C62.096,67.392 61.806,67.19 61.575,66.893C61.182,66.389 61.002,65.535 60.786,64.316L59.041,64.032Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M57.216,28.587L58.689,28.616C58.882,28.621 59.023,28.785 59.002,28.982L58.619,32.64C58.598,32.839 58.425,32.996 58.231,32.992L56.758,32.962C56.565,32.957 56.425,32.793 56.445,32.596L56.828,28.938C56.849,28.739 57.021,28.582 57.216,28.587Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M55.202,32.658L55.511,33.125C57.528,33.11 59.655,30.189 56.733,30.679C55.982,31.033 55.442,31.694 54.925,32.171"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M59.865,25.423C59.712,25.304 59.587,25.218 59.417,25.115C59.219,24.995 59.08,24.93 58.862,24.835C58.845,24.828 58.805,24.835 58.793,24.859C58.609,24.812 58.464,24.728 58.311,24.583C57.991,24.277 57.786,23.734 57.894,23.18C57.952,22.881 58.064,22.756 58.126,22.68C59.513,20.963 58.6,18.232 58.6,18.232C58.6,18.232 57.82,19.918 54.88,21.073C54.88,21.073 55.002,21.858 55.434,22.412C55.465,22.453 55.789,22.753 55.801,23.224C55.812,23.686 55.813,24.154 55.505,24.862C55.13,25.726 54.177,25.935 53.454,25.638C52.914,25.416 52.699,24.862 52.674,24.316C52.674,24.316 54.145,24.404 53.798,22.718C53.539,21.45 53.231,18.68 54.449,17.079C54.467,17.057 54.484,17.035 54.501,17.013C54.513,16.996 54.527,16.979 54.541,16.964C54.566,16.934 54.592,16.904 54.618,16.875C54.643,16.849 54.667,16.822 54.692,16.795C55.074,16.397 55.577,16.098 56.235,15.952C56.235,15.952 58.743,15.597 59.175,17.107C59.175,17.107 59.867,17.462 59.954,18.795C60.041,20.127 59.824,20.614 59.78,21.636C59.729,22.878 61.324,23.567 60.806,24.316C60.381,24.842 61.039,25.065 59.865,25.423Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M81.2,19.705L80.934,22.452L80.394,22.895L79.855,23.228L80.61,24.89L84.82,25.001L84.28,23.228L84.388,22.341L84.059,22.193C83.795,22.073 83.609,21.821 83.57,21.527L83.329,19.704H81.2V19.705Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M84.595,17.78C84.372,22.261 80.017,21.459 80.123,16.958C80.346,12.476 84.702,13.277 84.595,17.78Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M78.991,34.975C77.156,42.511 78.918,53.339 79.485,62.029L80.817,62.074C80.817,62.074 81.582,47.941 81.905,44.727C82.004,43.751 82.325,41.664 82.489,40.756C82.502,40.688 82.644,40.387 82.661,40.737C82.769,42.954 83.74,45.392 83.956,47.83C84.46,53.527 84.349,57.494 84.568,62.196C84.568,62.196 86.113,63.133 86.115,63.123C86.438,61.811 87.302,51.002 87.302,49.382C87.302,49.049 87.723,42.126 86.007,35.086L78.991,34.975Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M87.797,35.481C86.783,39.294 92.177,40.343 88.528,34.722L87.797,35.481Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M76.632,31.645C78.2,34.222 75.781,34.622 78.992,34.975C78.731,36.228 86.332,36.194 86.116,35.307C85.659,33.43 85.469,29.988 85.469,27.328C85.469,27.107 85.829,28.223 86.008,28.99C86.464,30.933 86.795,33.762 87.512,35.363C87.735,35.861 88.053,35.654 88.577,35.468C89.026,35.303 88.845,34.525 88.831,34.331C88.729,32.928 88.491,30.964 88.166,29.433C87.667,27.075 87.292,23.58 84.387,22.279C84.34,22.258 84.285,22.295 84.286,22.349C84.314,23.343 83.287,24.778 82.769,24.778C81.798,24.778 80.178,23.337 79.954,22.174C77.643,22.867 77.482,24.778 77.482,27.394C76.942,29.389 76.215,30.962 76.632,31.645Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M80.855,61.409L79.423,61.24C79.382,61.619 78.883,62.238 79.158,63.708C79.18,63.826 79.207,64.944 79.244,65.065C79.277,65.177 79.747,65.34 79.747,65.229C79.747,65.117 79.613,63.736 79.855,64.231C79.963,64.453 79.963,65.229 80.502,65.672C81.119,66.178 83.06,66.341 82.337,65.45C81.258,64.12 80.935,62.012 80.851,61.546"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M84.552,61.481C84.552,61.481 84.53,62.212 84.388,62.791C84.281,63.234 84.173,64.564 84.604,65.672H85.252C85.252,65.672 85.036,64.453 85.144,63.788C85.173,63.611 85.252,64.564 85.9,65.34C86.198,65.696 86.465,65.745 86.591,65.759C86.824,65.786 88.201,65.783 88.274,65.783C88.49,65.783 88.706,65.34 87.839,64.946C87.607,64.841 87.318,64.639 87.087,64.342C86.694,63.838 86.514,62.985 86.298,61.765L84.552,61.481Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M82.727,26.036L84.201,26.066C84.394,26.07 84.534,26.234 84.514,26.431L84.131,30.09C84.11,30.288 83.936,30.445 83.743,30.441L82.27,30.411C82.076,30.406 81.936,30.243 81.957,30.045L82.34,26.387C82.36,26.189 82.533,26.031 82.727,26.036Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M80.714,30.107L81.023,30.574C83.04,30.559 85.166,27.638 82.244,28.128C81.493,28.483 80.954,29.143 80.437,29.621"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M85.376,22.872C85.224,22.753 85.099,22.667 84.928,22.564C84.731,22.444 84.591,22.379 84.373,22.285C84.356,22.277 84.316,22.285 84.304,22.308C84.121,22.261 83.975,22.177 83.823,22.032C83.502,21.726 83.297,21.183 83.405,20.629C83.463,20.33 83.576,20.206 83.637,20.129C85.024,18.413 84.111,15.681 84.111,15.681C84.111,15.681 83.332,17.368 80.392,18.522C80.392,18.522 80.513,19.307 80.945,19.861C80.977,19.902 81.3,20.202 81.312,20.673C81.323,21.135 81.324,21.603 81.016,22.311C80.642,23.176 79.689,23.384 78.966,23.087C78.426,22.865 78.21,22.311 78.185,21.765C78.185,21.765 79.656,21.854 79.31,20.167C79.051,18.899 78.742,16.13 79.961,14.528C79.978,14.506 79.995,14.484 80.013,14.462C80.024,14.445 80.038,14.429 80.052,14.413C80.077,14.383 80.103,14.353 80.129,14.324C80.154,14.298 80.179,14.271 80.204,14.245C80.586,13.847 81.089,13.547 81.746,13.401C81.746,13.401 84.255,13.047 84.686,14.556C84.686,14.556 85.378,14.912 85.466,16.244C85.552,17.576 85.335,18.063 85.292,19.085C85.24,20.327 85.205,21.572 86.503,21.838C86.505,21.836 86.55,22.514 85.376,22.872Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M72.766,63.756C72.71,65.582 69.349,65.112 70.145,63.129C70.746,60.651 70.038,61.402 72.32,61.304C72.43,61.513 72.784,63.16 72.766,63.756Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M63.366,62.626C63.988,62.274 66.011,61.522 65.686,60.71L67.438,60.445C67.454,60.757 68.346,63.015 67.269,63.224C66.398,63.395 60.896,64.852 63.366,62.626Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M73.524,35.138C73.524,35.138 73.719,37.286 73.754,37.694C74.073,41.523 73.006,58.058 72.719,60.526C72.7,60.696 72.606,61.217 72.303,61.329C71.685,61.559 70.728,61.329 70.728,61.329C70.555,61.329 70.413,61.194 70.405,61.022C70.276,58.252 68.982,42.235 68.786,40.755C68.025,43.511 67.89,57.343 67.574,60.829C67.556,61.025 67.391,61.175 67.193,61.175C67.193,61.175 66.398,61.328 66.019,61.175C65.617,61.014 65.57,60.514 65.553,60.362C64.731,53.278 63.326,41.66 64.15,34.548L67.052,35.8L73.524,35.138Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M71.23,16.221C71.23,16.221 66.753,15.917 66.751,15.922L66.666,16.201C66.404,15.354 65.384,12.988 66.698,12.24C67.514,10.315 72.06,11.186 71.915,13.745C71.966,14.046 71.23,16.221 71.23,16.221Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M62.301,33.472L61.703,33.518C61.257,34.485 61.156,36.044 61.88,36.983C62.608,37.644 63.388,36.561 63.426,35.95C63.54,34.989 63.205,34.148 62.924,33.419L62.301,33.472Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M61.846,25.892C61.972,25.205 62.13,24.536 62.327,23.893C62.754,22.294 62.927,21.223 64.214,20.37C64.747,20.016 65.444,19.77 66.398,19.452C66.743,19.337 66.984,19.128 67.057,18.843C67.146,18.494 69.835,18.642 70.502,18.712C70.6,18.722 70.601,18.635 70.643,18.724C70.766,18.993 70.995,19.337 71.57,19.567C72.347,19.876 74.23,20.487 74.943,21.743C76.052,23.697 77.892,31.499 76.634,32.349C76.07,32.731 73.986,33.048 73.648,33.105C73.646,34.111 73.639,35.514 73.547,35.726C72.154,36.647 67.717,36.881 64.092,36.341C62.58,36.341 63.211,35.726 63.211,33.863C63.211,34.546 62.113,34.429 61.671,34.311C61.414,34.242 61.202,34.028 61.194,33.763C61.111,30.81 61.38,28.454 61.846,25.892ZM73.729,30.607C74.099,30.466 74.261,30.533 74.443,30.466C74.47,29.607 73.627,26.073 73.524,25.762C73.524,25.777 73.663,28.105 73.729,30.607Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M68.711,28.708H70.293C70.498,28.708 70.666,28.874 70.666,29.081V32.925C70.666,33.131 70.5,33.298 70.293,33.298H68.74C68.534,33.298 68.367,33.132 68.367,32.925V29.085C68.367,28.878 68.532,28.709 68.737,28.709"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M68.879,19.809C68.177,19.67 67.401,19.241 67.072,18.81C67.18,18.406 67.355,17.805 67.342,17.724C67.52,17.914 70.237,17.918 70.416,17.724C70.403,17.805 70.578,18.406 70.686,18.81C70.355,19.241 69.581,19.669 68.879,19.809Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M71.24,16.316V16.266C71.593,16.02 71.815,15.576 71.803,15.237C71.804,15.057 71.732,14.629 71.531,14.817C71.478,15.046 71.305,15.846 71.132,15.973C71.277,10.971 68.044,15.595 67.13,13.484C66.451,13.711 67.039,15.65 66.816,15.967C66.632,15.835 66.512,15.053 66.465,14.817C66.423,14.786 66.385,14.761 66.353,14.773C65.98,15.172 66.285,15.937 66.758,16.268C66.723,17.492 68.135,18.912 68.999,18.726C69.859,18.909 71.254,17.519 71.24,16.293"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M71.11,15.795C71.112,15.748 71.113,15.704 71.113,15.659C71.114,15.709 71.114,15.759 71.114,15.811C71.113,15.805 71.112,15.8 71.11,15.795Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M72.275,32.035L72.28,31.482C71.395,30.978 69.917,30.752 68.962,31.362C68.271,31.999 69.24,32.831 69.82,32.917C70.728,33.105 71.556,32.857 72.276,32.65"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M60.126,33.74L59.992,37.483H63.452L62.943,33.74H60.126Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M64.617,31.269C64.322,37.023 58.561,35.993 58.702,30.213C58.996,24.458 64.759,25.487 64.617,31.269Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M57.204,53.348C54.777,63.025 57.107,76.929 57.858,88.089L59.62,88.146C59.62,88.146 60.631,69.998 61.059,65.871C61.189,64.617 61.615,61.368 61.832,60.203C61.849,60.115 62.036,59.729 62.059,60.179C62.201,63.025 63.486,66.725 63.772,69.855C64.439,77.171 64.292,82.264 64.581,88.302C64.581,88.302 66.625,89.506 66.627,89.493C67.054,87.808 68.198,73.928 68.198,71.848C68.198,71.421 68.341,62.029 66.485,53.49L57.204,53.348Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M69.341,54.216C68.268,59.178 75.464,60.137 70.253,53.19L69.341,54.216Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M70.791,52.95C70.524,51.071 70.055,48.2 69.626,46.233C68.912,42.96 68.055,37.979 63.344,36.699C62.553,37.46 60.685,36.96 60.049,36.699C60.037,36.694 60.033,36.699 60.02,36.699C55.67,36.741 54.605,40.934 53.921,43.387C53.207,45.948 51.983,49.766 52.535,50.644C53.605,52.352 54.538,51.438 57.103,49.648C57.226,49.563 57.35,49.473 57.476,49.384C57.436,51.103 57.356,52.652 57.206,53.348C56.861,54.958 66.914,54.914 66.629,53.775C66.024,51.364 65.772,46.944 65.772,43.529C65.772,43.245 66.485,44.692 66.772,45.664C67.486,48.083 68.098,52.218 69.046,54.273C69.342,54.914 69.761,54.647 70.455,54.408C71.049,54.196 70.825,53.196 70.791,52.95ZM55.92,47.514C55.92,47.514 56.062,47.371 56.633,45.379C56.969,44.209 57.49,42.391 57.49,42.391C57.49,42.391 57.524,44.548 57.509,46.981C56.429,47.307 55.92,47.514 55.92,47.514Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M59.614,87.428L57.775,87.074C57.721,87.561 57.062,88.355 57.426,90.243C57.454,90.394 57.49,91.83 57.538,91.985C57.583,92.129 58.204,92.338 58.204,92.196C58.204,92.052 58.027,90.279 58.347,90.915C58.489,91.199 58.489,92.196 59.203,92.765C60.018,93.415 62.587,93.624 61.63,92.48C60.202,90.772 59.784,87.99 59.673,87.393"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M57.897,23.847C57.897,23.847 58.523,22.451 59.651,22.779C59.651,22.779 60.063,20.587 62.858,21.091C65.654,21.595 65.606,23.503 65.606,23.503C65.606,23.503 68.589,23.507 67.798,27.015C67.798,27.015 68.505,28.603 67.377,29.411C67.377,29.411 67.772,31.156 66.029,31.354C66.029,31.354 65.892,31.866 65.458,31.778C65.458,31.778 64.688,32.76 64.409,32.097C64.242,31.699 64.279,30.914 64.336,30.348C64.386,29.848 64.237,29.351 63.919,28.963C63.53,28.491 62.948,27.951 62.281,27.906C61.073,27.823 59.41,28.667 59.182,29.541C59.01,30.194 59.496,32.297 58.459,32.303C57.798,32.307 57.48,31.342 57.48,31.342C57.48,31.342 55.558,31.017 56.098,29.498C56.098,29.498 55.128,28.39 55.938,27.07C55.938,27.072 55.011,23.893 57.897,23.847Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M64.554,87.379C64.554,87.379 64.53,88.324 64.344,89.066C64.202,89.636 64.059,91.343 64.63,92.766H65.487C65.487,92.766 65.201,91.201 65.344,90.347C65.382,90.119 65.487,91.343 66.343,92.339C66.737,92.798 67.091,92.86 67.258,92.879C67.565,92.913 69.387,92.909 69.484,92.909C69.77,92.909 70.055,92.339 68.909,91.834C68.602,91.699 68.219,91.44 67.914,91.059C67.394,90.411 67.181,89.314 66.896,87.749L64.554,87.379Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M62.146,41.87L64.095,41.908C64.351,41.914 64.536,42.125 64.509,42.378L64.002,47.075C63.975,47.33 63.745,47.532 63.489,47.527L61.541,47.488C61.285,47.482 61.099,47.272 61.127,47.019L61.633,42.321C61.661,42.066 61.889,41.864 62.146,41.87Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M59.483,47.098L59.891,47.697C62.558,47.679 65.372,43.928 61.508,44.557C60.514,45.012 59.8,45.86 59.116,46.473"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M12.681,33.655L12.322,37.289L11.592,37.875L10.862,38.315L11.884,40.514L17.579,40.66L16.849,38.315L16.995,37.142L16.55,36.946C16.192,36.788 15.941,36.455 15.888,36.065L15.563,33.654H12.681V33.655Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M17.276,31.109C16.973,37.037 11.081,35.975 11.225,30.022C11.526,24.094 17.42,25.154 17.276,31.109Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M9.694,53.851C7.211,63.818 9.594,78.139 10.363,89.633L12.165,89.692C12.165,89.692 13.198,71 13.637,66.749C13.769,65.458 14.205,62.698 14.427,61.498C14.444,61.407 14.635,61.01 14.659,61.473C14.805,64.404 16.119,67.629 16.411,70.853C17.093,78.388 16.943,83.634 17.239,89.853C17.239,89.853 19.329,91.093 19.332,91.08C19.769,89.344 20.938,75.048 20.938,72.905C20.938,72.466 21.508,63.309 19.186,53.998L9.694,53.851Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M21.607,54.521C20.236,59.564 27.533,60.951 22.597,53.517L21.607,54.521Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M4.917,51.067C6.012,52.825 6.965,51.884 9.59,50.041C9.715,49.953 9.841,49.86 9.971,49.768C9.93,51.539 9.848,53.135 9.695,53.851C9.341,55.509 19.625,55.464 19.333,54.291C18.714,51.808 18.457,47.256 18.457,43.738C18.457,43.445 18.945,44.922 19.187,45.937C19.803,48.506 20.252,52.248 21.221,54.364C21.524,55.024 21.953,54.75 22.663,54.504C23.27,54.285 23.025,53.256 23.006,53C22.869,51.144 22.546,48.547 22.106,46.521C21.432,43.404 20.924,38.781 16.994,37.06C16.93,37.033 16.855,37.081 16.856,37.153C16.894,38.467 15.506,40.366 14.805,40.366C13.49,40.366 11.3,38.46 10.996,36.921C7.869,37.837 6.941,41.402 6.335,43.59C5.604,46.23 4.353,50.162 4.917,51.067ZM8.481,47.628C8.584,47.375 8.773,46.825 9.111,45.644L9.804,43.209C9.835,43.1 9.994,43.121 9.996,43.234C10.005,44.078 10.018,45.623 10.006,47.294C9.318,47.502 8.855,47.663 8.605,47.756C8.525,47.786 8.449,47.707 8.481,47.628Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M12.216,88.812L10.278,88.59C10.222,89.091 9.548,89.909 9.92,91.854C9.949,92.009 9.986,93.488 10.035,93.648C10.081,93.796 10.716,94.011 10.716,93.865C10.716,93.717 10.535,91.89 10.862,92.546C11.008,92.839 11.008,93.865 11.738,94.451C12.572,95.121 15.199,95.336 14.221,94.158C12.76,92.399 12.324,89.61 12.21,88.994"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M17.217,88.908C17.217,88.908 17.187,89.875 16.995,90.64C16.849,91.226 16.703,92.985 17.287,94.451H18.164C18.164,94.451 17.872,92.839 18.018,91.959C18.057,91.725 18.164,92.985 19.04,94.011C19.443,94.483 19.805,94.548 19.976,94.567C20.29,94.602 22.153,94.598 22.253,94.598C22.545,94.598 22.837,94.011 21.664,93.491C21.35,93.352 20.959,93.085 20.646,92.692C20.115,92.025 19.871,90.897 19.579,89.284L17.217,88.908Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M14.748,42.029L16.741,42.069C17.003,42.074 17.192,42.291 17.165,42.552L16.646,47.39C16.618,47.653 16.383,47.861 16.122,47.855L14.129,47.815C13.867,47.81 13.677,47.593 13.705,47.332L14.224,42.494C14.251,42.231 14.485,42.023 14.748,42.029Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M12.024,47.414L12.442,48.031C15.171,48.012 18.048,44.148 14.095,44.796C13.079,45.265 12.348,46.139 11.649,46.77"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M18.332,37.845C18.126,37.688 17.956,37.573 17.726,37.437C17.458,37.279 17.27,37.192 16.975,37.068C16.952,37.057 16.898,37.068 16.882,37.098C16.633,37.037 16.436,36.925 16.23,36.734C15.797,36.329 15.519,35.611 15.665,34.878C15.744,34.482 15.896,34.318 15.979,34.217C17.856,31.947 16.62,28.334 16.62,28.334C16.62,28.334 15.566,30.564 11.588,32.092C11.588,32.092 11.753,33.129 12.337,33.862C12.379,33.916 12.818,34.314 12.833,34.937C12.848,35.548 12.85,36.166 12.433,37.103C11.927,38.246 10.637,38.522 9.659,38.129C8.929,37.836 8.636,37.103 8.603,36.38C8.603,36.38 10.593,36.498 10.125,34.267C9.774,32.59 9.356,28.927 11.005,26.809C11.029,26.78 11.052,26.751 11.075,26.721C11.091,26.699 11.11,26.677 11.129,26.657C11.163,26.617 11.198,26.578 11.233,26.54C11.267,26.504 11.3,26.469 11.334,26.434C11.851,25.908 12.531,25.512 13.421,25.319C13.421,25.319 16.815,24.85 17.399,26.846C17.399,26.846 18.335,27.316 18.453,29.078C18.57,30.84 18.276,31.485 18.218,32.836C18.148,34.479 18.101,36.125 19.856,36.477C19.859,36.474 19.921,37.371 18.332,37.845Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M80.647,93.278C80.572,95.731 76.057,95.1 77.126,92.436C77.933,89.107 76.982,90.115 80.048,89.984C80.195,90.265 80.671,92.478 80.647,93.278Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M68.02,91.76C68.855,91.287 71.572,90.277 71.135,89.186L73.49,88.83C73.511,89.249 74.71,92.282 73.263,92.563C72.092,92.793 64.702,94.75 68.02,91.76Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M81.665,54.836C81.665,54.836 81.927,57.721 81.974,58.27C82.403,63.413 80.969,85.624 80.584,88.939C80.558,89.167 80.431,89.867 80.025,90.018C79.195,90.326 77.909,90.018 77.909,90.018C77.677,90.018 77.485,89.836 77.475,89.605C77.302,85.885 75.563,64.37 75.301,62.382C74.279,66.084 74.097,84.664 73.672,89.346C73.649,89.61 73.426,89.812 73.161,89.812C73.161,89.812 72.093,90.017 71.583,89.812C71.044,89.594 70.981,88.922 70.958,88.719C69.854,79.204 67.966,63.596 69.073,54.044L72.971,55.725L81.665,54.836Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M78.583,29.425C78.583,29.425 72.57,29.016 72.566,29.022L72.452,29.399C72.1,28.26 70.731,25.082 72.495,24.077C73.592,21.491 79.698,22.662 79.503,26.099C79.573,26.503 78.583,29.425 78.583,29.425Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M66.589,52.598L65.786,52.659C65.187,53.959 65.051,56.053 66.024,57.314C67.001,58.201 68.049,56.747 68.1,55.927C68.253,54.635 67.804,53.506 67.425,52.527L66.589,52.598Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M65.979,42.415C66.147,41.492 66.36,40.594 66.624,39.731C67.198,37.582 67.43,36.144 69.159,34.998C69.876,34.523 70.811,34.192 72.093,33.765C72.556,33.611 72.88,33.33 72.977,32.946C73.098,32.478 76.709,32.677 77.606,32.771C77.737,32.785 77.739,32.667 77.794,32.788C77.96,33.148 78.268,33.611 79.04,33.919C80.084,34.335 82.613,35.155 83.572,36.842C85.062,39.467 87.532,49.947 85.843,51.089C85.085,51.602 82.286,52.028 81.832,52.105C81.829,53.457 81.819,55.341 81.696,55.625C79.825,56.863 73.865,57.177 68.995,56.451C66.964,56.451 67.811,55.625 67.811,53.124C67.811,54.04 66.337,53.883 65.743,53.725C65.398,53.632 65.113,53.344 65.102,52.988C64.991,49.022 65.352,45.857 65.979,42.415ZM81.94,48.75C82.437,48.56 82.655,48.65 82.9,48.56C82.936,47.406 81.804,42.659 81.665,42.241C81.665,42.261 81.852,45.388 81.94,48.75Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M75.2,46.197H77.325C77.601,46.197 77.827,46.421 77.827,46.698V51.863C77.827,52.139 77.603,52.364 77.325,52.364H75.239C74.963,52.364 74.737,52.14 74.737,51.863V46.705C74.737,46.426 74.96,46.199 75.234,46.199"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M75.426,34.244C74.482,34.058 73.44,33.481 72.999,32.902C73.144,32.359 73.379,31.552 73.362,31.444C73.599,31.698 77.249,31.704 77.49,31.444C77.473,31.552 77.708,32.359 77.853,32.902C77.408,33.481 76.369,34.056 75.426,34.244Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M78.597,29.553V29.485C79.071,29.155 79.369,28.559 79.354,28.103C79.355,27.861 79.258,27.286 78.988,27.538C78.917,27.847 78.684,28.921 78.452,29.092C78.646,22.372 74.303,28.583 73.076,25.748C72.164,26.053 72.954,28.657 72.655,29.083C72.408,28.906 72.245,27.856 72.182,27.538C72.127,27.497 72.076,27.463 72.032,27.48C71.531,28.016 71.941,29.043 72.576,29.488C72.53,31.132 74.425,33.039 75.586,32.789C76.741,33.036 78.616,31.168 78.597,29.522"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M78.423,28.852C78.424,28.788 78.426,28.73 78.426,28.67C78.427,28.736 78.427,28.804 78.427,28.873C78.426,28.866 78.424,28.86 78.423,28.852Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M79.987,50.667L79.994,49.924C78.806,49.247 76.82,48.944 75.537,49.764C74.609,50.619 75.911,51.736 76.689,51.852C77.909,52.104 79.022,51.772 79.988,51.493"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M31.907,91.791C31.835,94.192 27.494,93.574 28.522,90.968C29.298,87.711 28.383,88.697 31.331,88.569C31.473,88.844 31.93,91.009 31.907,91.791Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M19.767,90.306C20.569,89.843 23.182,88.856 22.762,87.788L25.026,87.44C25.046,87.85 26.198,90.817 24.808,91.092C23.682,91.316 16.576,93.231 19.767,90.306Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M32.886,54.182C32.886,54.182 33.138,57.005 33.183,57.542C33.595,62.573 32.216,84.304 31.847,87.547C31.821,87.77 31.7,88.455 31.309,88.603C30.511,88.904 29.274,88.603 29.274,88.603C29.052,88.603 28.868,88.425 28.857,88.199C28.691,84.559 27.019,63.51 26.767,61.564C25.784,65.186 25.609,83.365 25.201,87.945C25.179,88.203 24.965,88.4 24.71,88.4C24.71,88.4 23.682,88.601 23.193,88.4C22.674,88.188 22.614,87.531 22.591,87.331C21.53,78.022 19.715,62.753 20.779,53.407L24.527,55.052L32.886,54.182Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M29.922,29.321C29.922,29.321 24.141,28.922 24.138,28.928L24.028,29.296C23.689,28.181 22.373,25.072 24.069,24.089C25.123,21.559 30.994,22.705 30.807,26.067C30.874,26.462 29.922,29.321 29.922,29.321Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M18.39,51.993L17.618,52.053C17.042,53.324 16.912,55.373 17.847,56.607C18.787,57.475 19.794,56.052 19.843,55.25C19.99,53.986 19.558,52.881 19.195,51.923L18.39,51.993Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M17.804,42.031C17.966,41.128 18.171,40.249 18.424,39.404C18.977,37.302 19.199,35.896 20.862,34.774C21.551,34.309 22.45,33.985 23.682,33.567C24.128,33.417 24.439,33.142 24.533,32.767C24.649,32.308 28.121,32.503 28.983,32.595C29.109,32.609 29.111,32.494 29.164,32.611C29.323,32.964 29.62,33.417 30.362,33.718C31.365,34.125 33.797,34.928 34.719,36.578C36.151,39.146 38.526,49.4 36.902,50.517C36.174,51.019 33.482,51.435 33.046,51.51C33.043,52.833 33.034,54.677 32.915,54.954C31.989,57.118 24.031,57.597 20.705,55.149C20.344,54.883 20.802,45.74 21.387,41.663C21.323,41.934 21.255,42.23 21.185,42.542C20.823,44.16 20.565,46.082 20.268,48.042C19.976,49.972 19.823,52.264 19.566,52.507C18.732,53.293 18.148,53.25 17.577,53.095C17.246,53.005 16.971,52.723 16.961,52.374C16.854,48.495 17.201,45.398 17.804,42.031ZM33.15,48.228C33.628,48.042 33.837,48.13 34.073,48.042C34.107,46.913 33.019,42.269 32.886,41.86C32.886,41.88 33.065,44.939 33.15,48.228Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M26.67,45.731H28.713C28.978,45.731 29.195,45.95 29.195,46.221V51.274C29.195,51.544 28.98,51.764 28.713,51.764H26.707C26.441,51.764 26.225,51.545 26.225,51.274V46.227C26.225,45.954 26.438,45.732 26.703,45.732"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M26.887,34.036C25.98,33.854 24.978,33.29 24.553,32.723C24.693,32.192 24.918,31.402 24.902,31.297C25.131,31.545 28.64,31.552 28.871,31.297C28.855,31.402 29.081,32.192 29.22,32.723C28.793,33.29 27.794,33.852 26.887,34.036Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M29.936,29.446V29.38C30.392,29.057 30.678,28.474 30.664,28.028C30.665,27.791 30.572,27.228 30.312,27.476C30.244,27.777 30.019,28.828 29.797,28.996C29.984,22.421 25.808,28.498 24.628,25.724C23.751,26.022 24.511,28.57 24.223,28.986C23.985,28.813 23.83,27.786 23.769,27.476C23.715,27.435 23.666,27.402 23.625,27.418C23.142,27.943 23.537,28.947 24.147,29.383C24.103,30.992 25.926,32.857 27.042,32.613C28.152,32.854 29.954,31.027 29.936,29.416"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M29.768,28.761C29.77,28.699 29.771,28.642 29.771,28.583C29.773,28.648 29.773,28.714 29.773,28.782C29.771,28.775 29.77,28.769 29.768,28.761Z"
+      android:fillColor="#E4B489"/>
+  <path
+      android:pathData="M31.272,50.104L31.279,49.377C30.136,48.715 28.227,48.418 26.994,49.22C26.101,50.057 27.353,51.15 28.101,51.263C29.274,51.51 30.344,51.185 31.273,50.912"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M34.084,133.107C34.229,137.727 42.715,136.535 40.71,131.509C39.199,125.233 40.971,127.122 35.217,126.889C34.956,127.441 34.055,131.596 34.084,133.107Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M57.855,130.259C56.286,129.358 51.172,127.47 51.985,125.407L47.568,124.739C47.539,125.523 45.272,131.247 48.004,131.77C50.183,132.206 64.103,135.896 57.855,130.259Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M32.166,60.643C32.166,60.643 31.672,66.077 31.585,67.123C30.771,76.827 33.474,118.695 34.2,124.942C34.258,125.378 34.491,126.686 35.246,126.976C36.816,127.557 39.228,126.976 39.228,126.976C39.664,126.976 40.012,126.628 40.041,126.192C40.39,119.189 43.674,78.629 44.168,74.88C46.086,81.854 46.435,116.894 47.219,125.727C47.277,126.221 47.684,126.598 48.178,126.598C48.178,126.598 50.183,126.976 51.142,126.598C52.159,126.192 52.276,124.913 52.305,124.536C54.397,106.609 57.942,77.176 55.85,59.162L48.527,62.329L32.166,60.643Z"
+      android:fillColor="#8C8C98"/>
+  <path
+      android:pathData="M37.978,12.731C37.978,12.731 49.312,11.947 49.312,11.976L49.515,12.673C50.183,10.523 52.741,4.538 49.428,2.649C47.364,-2.232 35.886,-0.024 36.234,6.456C36.118,7.24 37.978,12.731 37.978,12.731Z"
+      android:fillColor="#4A4A4A"/>
+  <path
+      android:pathData="M60.558,56.43L62.069,56.547C63.203,58.987 63.464,62.939 61.633,65.321C59.803,67.007 57.826,64.246 57.739,62.706C57.449,60.266 58.291,58.145 59.018,56.285L60.558,56.43Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M61.691,37.225C61.371,35.482 60.965,33.797 60.471,32.169C59.395,28.131 58.959,25.4 55.705,23.25C54.368,22.349 52.595,21.739 50.183,20.925C49.311,20.635 48.701,20.112 48.527,19.385C48.294,18.514 41.494,18.862 39.809,19.066C39.547,19.095 39.547,18.862 39.46,19.095C39.14,19.763 38.559,20.635 37.106,21.216C35.13,22 30.393,23.54 28.562,26.736C25.773,31.676 21.123,51.433 24.291,53.583C25.715,54.542 30.974,55.355 31.846,55.501C31.846,58.058 31.875,61.602 32.108,62.125C33.91,66.28 49.486,67.21 56.024,62.503C56.722,61.98 55.821,44.373 54.688,36.528C54.804,37.051 54.949,37.632 55.094,38.213C55.792,41.322 56.315,45.041 56.896,48.818C57.477,52.537 57.768,56.953 58.262,57.418C59.889,58.929 61.052,58.842 62.156,58.551C62.795,58.377 63.347,57.825 63.377,57.157C63.551,49.69 62.883,43.704 61.691,37.225ZM31.672,49.167C30.742,48.818 30.335,48.992 29.87,48.818C29.812,46.639 31.933,37.69 32.195,36.905C32.166,36.935 31.817,42.833 31.672,49.167Z"
+      android:fillColor="#C66A61"/>
+  <path
+      android:pathData="M43.936,21.825C45.708,21.477 47.684,20.402 48.498,19.298C48.237,18.281 47.772,16.741 47.801,16.537C47.365,17.031 40.478,17.031 40.042,16.537C40.071,16.741 39.635,18.252 39.344,19.298C40.187,20.373 42.134,21.477 43.936,21.825Z"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M37.95,12.964V12.848C37.049,12.238 36.496,11.104 36.526,10.233C36.526,9.768 36.7,8.693 37.223,9.158C37.368,9.739 37.804,11.773 38.24,12.092C37.862,-0.576 46.057,11.134 48.353,5.787C50.068,6.368 48.585,11.279 49.138,12.063C49.603,11.744 49.922,9.739 50.039,9.158C50.155,9.071 50.242,9.012 50.329,9.042C51.288,10.059 50.504,11.976 49.312,12.819C49.399,15.928 45.825,19.501 43.645,19.037C41.466,19.501 37.95,15.986 37.979,12.877"
+      android:fillColor="#F6B893"/>
+  <path
+      android:pathData="M57.325,28.512C55.357,30.293 48.211,35.087 41.847,35.82C41.065,35.899 40.487,36.842 40.487,37.968L40.834,71.577C40.892,76.737 42.772,81.531 45.839,84.203C50.786,88.525 57.064,93.11 58.337,94.053C58.511,94.184 58.713,94.184 58.887,94.053C60.131,93.083 64.615,88.421 69.476,84.02C72.484,81.295 74.278,76.502 74.22,71.315L73.873,37.706C73.873,36.58 73.266,35.663 72.484,35.584C66.091,34.956 60.565,30.267 58.569,28.512C58.366,28.354 58.164,28.25 57.932,28.25C57.73,28.25 57.527,28.328 57.325,28.512Z"
+      android:fillColor="#9BBACE"
+      android:fillType="evenOdd"/>
+  <path
+      android:pathData="M45.505,38.276C44.895,38.355 44.43,39.172 44.459,40.146L44.749,69.207C44.807,73.659 46.29,77.796 48.673,80.114C52.538,83.855 57.449,87.807 58.437,88.65C58.582,88.756 58.727,88.756 58.873,88.65C59.861,87.807 63.348,83.776 67.126,79.982C69.48,77.638 70.875,73.475 70.816,69.022L70.526,39.962C70.526,38.987 70.032,38.197 69.451,38.118C64.452,37.565 60.122,33.507 58.553,32.005C58.408,31.847 58.233,31.795 58.059,31.795C57.885,31.795 57.71,31.874 57.565,32.032C56.083,33.507 50.503,37.644 45.505,38.276Z"
+      android:fillColor="#ffffff"/>
+  <path
+      android:pathData="M58.531,90.228V30.603L42.84,37.386V70.591L46.863,83.087L58.531,90.228Z"
+      android:fillColor="#9BBACE"/>
+  <path
+      android:pathData="M35.334,52.77V51.375C37.571,50.097 41.32,49.515 43.732,51.084C45.476,52.682 43.035,54.803 41.553,55.007C39.257,55.472 37.164,54.861 35.334,54.339"
+      android:fillColor="#F6B893"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/drawable/ic_vaccine_dose.xml b/Corona-Warn-App/src/main/res/drawable/ic_vaccine_dose.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2ca8c13c6162331de39433e0f229a5ab4621e30e
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/drawable/ic_vaccine_dose.xml
@@ -0,0 +1,21 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="63dp"
+    android:height="135dp"
+    android:viewportWidth="63"
+    android:viewportHeight="135">
+  <path
+      android:pathData="M61.964,55.967H19.33H6.641H0.059C0.059,56.264 0,56.502 0,56.502V72.977V80.411V122.817C0,129.062 5.04,134.177 11.266,134.177H12.037C12.096,134.177 12.096,134.237 12.156,134.237H50.639C56.865,134.237 62.024,129.122 62.024,122.817V80.411V72.917V56.442C61.964,56.502 61.964,56.323 61.964,55.967Z"
+      android:fillColor="#E3E3E3"/>
+  <path
+      android:pathData="M57.339,46.391C53.188,42.823 47.318,36.34 46.429,32.89V16.534H23.659H15.832L15.654,18.319V31.998C15.654,35.031 9.132,42.466 4.625,46.272C0.889,49.424 0.178,54.301 0,55.907H6.582H19.271H61.905C61.786,54.42 61.075,49.543 57.339,46.391Z"
+      android:fillColor="#F4F4F4"/>
+  <path
+      android:pathData="M46.429,0H19.686H15.535C13.223,0 11.385,1.844 11.385,4.163V16.177C11.385,18.497 13.223,20.4 15.535,20.4H20.398H46.429C48.741,20.4 50.579,18.497 50.579,16.177V4.163C50.579,1.903 48.741,0 46.429,0Z"
+      android:fillColor="#8C8C98"/>
+  <path
+      android:pathData="M56.331,65.007V113.361H61.964V80.411V72.917V65.007H56.331Z"
+      android:fillColor="#9BBACE"/>
+  <path
+      android:pathData="M0,65.007V72.917V80.411V113.361H6.641H53.307V65.007H6.641H0Z"
+      android:fillColor="#9BBACE"/>
+</vector>
diff --git a/Corona-Warn-App/src/main/res/layout/home_statistics_cards_applied_vaccination_rates_layout.xml b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_applied_vaccination_rates_layout.xml
new file mode 100644
index 0000000000000000000000000000000000000000..cd0b39aca86df8d407bd925cf6ba84aa64e605c9
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_applied_vaccination_rates_layout.xml
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:ignore="MissingConstraints">
+
+    <androidx.constraintlayout.widget.ConstraintLayout
+        android:id="@+id/applied_vaccination_rates_container"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        tools:layout_height="wrap_content"
+        tools:layout_width="@dimen/statistics_card_width"
+        tools:showIn="@layout/home_statistics_cards_basecard_layout">
+
+        <TextView
+            android:id="@+id/title"
+            style="@style/headline5"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginStart="@dimen/spacing_normal"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:maxLines="2"
+            android:text="@string/statistics_applied_vaccination_dose_rates_card_title"
+            app:autoSizeTextType="uniform"
+            app:layout_constraintEnd_toStartOf="@id/info_statistics"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <TextView
+            android:id="@+id/nationwide_text"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="@dimen/spacing_small"
+            android:text="@string/statistics_vaccinated_nationwide_text"
+            android:textSize="@dimen/font_small"
+            app:layout_constraintStart_toStartOf="@id/title"
+            app:layout_constraintTop_toBottomOf="@id/title" />
+
+        <ImageButton
+            android:id="@+id/info_statistics"
+            style="@style/StatisticsCardInfoButton"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <ImageView
+            android:id="@+id/background_image"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_normal"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/nationwide_text"
+            app:srcCompat="@drawable/ic_vaccine_dose" />
+
+        <TextView
+            android:id="@+id/primary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_primary_value_yesterday"
+            app:layout_constraintStart_toStartOf="@id/nationwide_text"
+            app:layout_constraintTop_toTopOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/primary_value"
+            style="@style/StatisticsCardPrimaryValue"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_small"
+            android:focusable="true"
+            android:includeFontPadding="false"
+            android:maxLines="1"
+            app:autoSizeTextType="uniform"
+            app:layout_constraintEnd_toStartOf="@id/background_image"
+            app:layout_constraintStart_toStartOf="@id/primary_label"
+            app:layout_constraintTop_toBottomOf="@id/primary_label"
+            tools:text="1.092.765" />
+
+        <TextView
+            android:id="@+id/secondary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_card_infections_secondary_label"
+            app:layout_constraintBottom_toTopOf="@id/secondary_value"
+            app:layout_constraintStart_toStartOf="@id/primary_value" />
+
+        <TextView
+            android:id="@+id/secondary_value"
+            style="@style/StatisticsCardSecondaryValue"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="@dimen/spacing_tiny"
+            android:focusable="true"
+            android:includeFontPadding="false"
+            app:layout_constraintBottom_toBottomOf="@id/background_image"
+            app:layout_constraintStart_toStartOf="@id/secondary_label"
+            tools:text="1.092.765" />
+
+        <de.rki.coronawarnapp.statistics.ui.TrendArrowView
+            android:id="@+id/trend_arrow"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_marginStart="@dimen/spacing_tiny"
+            app:layout_constraintBottom_toBottomOf="@id/secondary_value"
+            app:layout_constraintStart_toEndOf="@id/secondary_value"
+            app:layout_constraintTop_toTopOf="@id/secondary_value" />
+
+
+        <TextView
+            android:id="@+id/tertiary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_card_infections_tertiary_label"
+            app:layout_constraintStart_toStartOf="@id/secondary_value"
+            app:layout_constraintTop_toBottomOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/tertiary_value"
+            style="@style/StatisticsCardSecondaryValue"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:focusable="true"
+            app:layout_constraintStart_toStartOf="@id/tertiary_label"
+            app:layout_constraintTop_toBottomOf="@id/tertiary_label"
+            tools:text="7.145.486" />
+
+    </androidx.constraintlayout.widget.ConstraintLayout>
+
+</layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_completely_layout.xml b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_completely_layout.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e662b19b18bf78363df01a0a9016dd882e36a32f
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_completely_layout.xml
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:ignore="MissingConstraints">
+
+    <androidx.constraintlayout.widget.ConstraintLayout
+        android:id="@+id/persons_vaccinated_completely_container"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        tools:layout_height="wrap_content"
+        tools:layout_width="@dimen/statistics_card_width"
+        tools:showIn="@layout/home_statistics_cards_basecard_layout">
+
+        <TextView
+            android:id="@+id/title"
+            style="@style/headline5"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginStart="@dimen/spacing_normal"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:maxLines="2"
+            android:text="@string/statistics_vaccinated_completely_card_title"
+            app:autoSizeTextType="uniform"
+            app:layout_constraintEnd_toStartOf="@id/info_statistics"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <TextView
+            android:id="@+id/nationwide_text"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="@dimen/spacing_small"
+            android:text="@string/statistics_vaccinated_nationwide_text"
+            android:textSize="@dimen/font_small"
+            app:layout_constraintStart_toStartOf="@id/title"
+            app:layout_constraintTop_toBottomOf="@id/title" />
+
+        <ImageButton
+            android:id="@+id/info_statistics"
+            style="@style/StatisticsCardInfoButton"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <ImageView
+            android:id="@+id/background_image"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_normal"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/nationwide_text"
+            app:srcCompat="@drawable/ic_vaccinated_completely" />
+
+        <TextView
+            android:id="@+id/primary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_primary_value_until_yesterday"
+            app:layout_constraintStart_toStartOf="@id/nationwide_text"
+            app:layout_constraintTop_toTopOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/primary_value"
+            style="@style/StatisticsCardPrimaryValue"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:focusable="true"
+            android:includeFontPadding="false"
+            app:layout_constraintStart_toStartOf="@id/primary_label"
+            app:layout_constraintTop_toBottomOf="@id/primary_label"
+            tools:text="8.6%" />
+
+        <TextView
+            android:id="@+id/primary_footnote"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_small"
+            android:text="@string/statistics_vaccination_primary_value_footnote"
+            app:layout_constraintEnd_toStartOf="@id/background_image"
+            app:layout_constraintStart_toStartOf="@id/primary_value"
+            app:layout_constraintTop_toBottomOf="@id/primary_value" />
+
+        <TextView
+            android:id="@+id/secondary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_card_infections_tertiary_label"
+            app:layout_constraintStart_toStartOf="@id/primary_footnote"
+            app:layout_constraintTop_toBottomOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/secondary_value"
+            style="@style/StatisticsCardSecondaryValue"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:focusable="true"
+            app:layout_constraintStart_toStartOf="@id/secondary_label"
+            app:layout_constraintTop_toBottomOf="@id/secondary_label"
+            tools:text="7.145.486" />
+
+    </androidx.constraintlayout.widget.ConstraintLayout>
+
+</layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_once_layout.xml b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_once_layout.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d622ce40892d9043d7ce86a02fd93961712f89d7
--- /dev/null
+++ b/Corona-Warn-App/src/main/res/layout/home_statistics_cards_vaccinated_once_layout.xml
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:ignore="MissingConstraints">
+
+    <androidx.constraintlayout.widget.ConstraintLayout
+        android:id="@+id/persons_vaccinated_once_container"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        tools:layout_height="wrap_content"
+        tools:layout_width="@dimen/statistics_card_width"
+        tools:showIn="@layout/home_statistics_cards_basecard_layout">
+
+        <TextView
+            android:id="@+id/title"
+            style="@style/headline5"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginStart="@dimen/spacing_normal"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:maxLines="2"
+            android:text="@string/statistics_vaccinated_once_card_title"
+            app:autoSizeTextType="uniform"
+            app:layout_constraintEnd_toStartOf="@id/info_statistics"
+            app:layout_constraintStart_toStartOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <TextView
+            android:id="@+id/nationwide_text"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="@dimen/spacing_small"
+            android:text="@string/statistics_vaccinated_nationwide_text"
+            android:textSize="@dimen/font_small"
+            app:layout_constraintStart_toStartOf="@id/title"
+            app:layout_constraintTop_toBottomOf="@id/title" />
+
+        <ImageButton
+            android:id="@+id/info_statistics"
+            style="@style/StatisticsCardInfoButton"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toTopOf="parent" />
+
+        <ImageView
+            android:id="@+id/background_image"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_marginTop="@dimen/spacing_normal"
+            android:layout_marginEnd="@dimen/spacing_normal"
+            android:importantForAccessibility="no"
+            app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintTop_toBottomOf="@id/nationwide_text"
+            app:srcCompat="@drawable/ic_vaccinated_once" />
+
+        <TextView
+            android:id="@+id/primary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_primary_value_until_yesterday"
+            app:layout_constraintStart_toStartOf="@id/nationwide_text"
+            app:layout_constraintTop_toTopOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/primary_value"
+            style="@style/StatisticsCardPrimaryValue"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:includeFontPadding="false"
+            app:layout_constraintStart_toStartOf="@id/primary_label"
+            app:layout_constraintTop_toBottomOf="@id/primary_label"
+            tools:text="30.6%" />
+
+        <TextView
+            android:id="@+id/primary_footnote"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:layout_marginEnd="@dimen/spacing_small"
+            android:text="@string/statistics_vaccination_primary_value_footnote"
+            app:layout_constraintEnd_toStartOf="@id/background_image"
+            app:layout_constraintStart_toStartOf="@id/primary_value"
+            app:layout_constraintTop_toBottomOf="@id/primary_value" />
+
+        <TextView
+            android:id="@+id/secondary_label"
+            style="@style/StatisticsCardValueLabel"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:text="@string/statistics_card_infections_tertiary_label"
+            app:layout_constraintStart_toStartOf="@id/primary_footnote"
+            app:layout_constraintTop_toBottomOf="@id/background_image" />
+
+        <TextView
+            android:id="@+id/secondary_value"
+            style="@style/StatisticsCardSecondaryValue"
+            android:layout_width="0dp"
+            android:layout_height="wrap_content"
+            android:focusable="true"
+            app:layout_constraintStart_toStartOf="@id/secondary_label"
+            app:layout_constraintTop_toBottomOf="@id/secondary_label"
+            tools:text="25.451.513" />
+
+    </androidx.constraintlayout.widget.ConstraintLayout>
+
+</layout>
\ No newline at end of file
diff --git a/Corona-Warn-App/src/main/res/values-de/strings.xml b/Corona-Warn-App/src/main/res/values-de/strings.xml
index 5c2a6fd7b080a4f9e325f54c9ab3489875fb66b7..90647303114310ab36d99fca79e67959de043b3b 100644
--- a/Corona-Warn-App/src/main/res/values-de/strings.xml
+++ b/Corona-Warn-App/src/main/res/values-de/strings.xml
@@ -1606,6 +1606,22 @@
     <!-- XTXT: Statistics Card Navigation Announcement -->
     <string name="accessibility_statistics_card_navigation_information">"Wische horizontal zwischen den Karten für weitere Statistiken"</string>
 
+    <!-- Persons Vaccinated Once Statistics Card -->
+    <!-- XHED: Title for vaccinated once statistics card -->
+    <string name="statistics_vaccinated_once_card_title">"Mindestens einmal geimpfte Personen"</string>
+    <!-- XTXT: Nationwide text -->
+    <string name="statistics_vaccinated_nationwide_text">"Bundesweit"</string>
+    <!-- XTXT: Vaccination primary value footnote text -->
+    <string name="statistics_vaccination_primary_value_footnote">"der Gesamtbevölkerung"</string>
+
+    <!-- Persons Vaccinated Completely Statistics Card -->
+    <!-- XHED: Title for vaccinated completely statistics card -->
+    <string name="statistics_vaccinated_completely_card_title">"Vollständig geimpfte Personen"</string>
+
+    <!-- Applied Vaccination Dose Rates Statistics Card -->
+    <!-- XHED: Title for applied vaccination dose rates -->
+    <string name="statistics_applied_vaccination_dose_rates_card_title">"Verabreichte Impfdosen"</string>
+
     <!-- ####################################
           Button Tooltips for Accessibility
     ###################################### -->
diff --git a/Corona-Warn-App/src/main/res/values/strings.xml b/Corona-Warn-App/src/main/res/values/strings.xml
index e58a781dac8d6cd8cd56b5711a12618c7feffe10..4e9ce9aeabce50b87ad4a6fbdb1c58889e1f57f1 100644
--- a/Corona-Warn-App/src/main/res/values/strings.xml
+++ b/Corona-Warn-App/src/main/res/values/strings.xml
@@ -1606,6 +1606,22 @@
     <!-- XTXT: Statistics Card Navigation Announcement -->
     <string name="accessibility_statistics_card_navigation_information">"Swipe horizontally between the tiles to display more statistics"</string>
 
+    <!-- Persons Vaccinated Once Statistics Card -->
+    <!-- XHED: Title for vaccinated once statistics card -->
+    <string name="statistics_vaccinated_once_card_title">"Mindestens einmal geimpfte Personen"</string>
+    <!-- XTXT: Nationwide text -->
+    <string name="statistics_vaccinated_nationwide_text">"Bundesweit"</string>
+    <!-- XTXT: Vaccination primary value footnote text -->
+    <string name="statistics_vaccination_primary_value_footnote">"der Gesamtbevölkerung"</string>
+
+    <!-- Persons Vaccinated Completely Statistics Card -->
+    <!-- XHED: Title for vaccinated completely statistics card -->
+    <string name="statistics_vaccinated_completely_card_title">"Vollständig geimpfte Personen"</string>
+
+    <!-- Applied Vaccination Dose Rates Statistics Card -->
+    <!-- XHED: Title for applied vaccination dose rates -->
+    <string name="statistics_applied_vaccination_dose_rates_card_title">"Verabreichte Impfdosen"</string>
+
     <!-- ####################################
           Button Tooltips for Accessibility
     ###################################### -->